Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Images will not upload


Rowdy Roy

Recommended Posts

Directories and files on my hard drive are identical to those on my store front server. Have changed all directory chmod to 777. I am using the item description page in the admin panel and selecting image location through the browser button. Below is the error message I get. I did FTP all images to my image directory. I have not had this problem before. Can someone please give me assistance with this. Thank you.

 

Error Error: Destination does not exist.

Error Error: Catalog images directory does not exist: /2010aw957t_rr/images/

Don Harbour

Rowdy Roy Seasoning

Maumelle, AR USA

Link to comment
Share on other sites

Directories and files on my hard drive are identical to those on my store front server. Have changed all directory chmod to 777. I am using the item description page in the admin panel and selecting image location through the browser button. Below is the error message I get. I did FTP all images to my image directory. I have not had this problem before. Can someone please give me assistance with this. Thank you.

 

Error Error: Destination does not exist.

Error Error: Catalog images directory does not exist: /2010aw957t_rr/images/

 

 

What is you web site address?

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Link to comment
Share on other sites

It could be your Image settings are wrong in your Admin area

 

look in your Admin>Configuration>Images

 

Make sure that these are set right:

 

Catculate Image size should be set to: True

 

Image Require: True

 

give that a try

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Link to comment
Share on other sites

Now can you post your configure.php the first part of it.

 

it should be located at (catalog)/includes/configure.php so I can take a look at it

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Link to comment
Share on other sites

It could be your Image settings are wrong in your Admin area

 

look in your Admin>Configuration>Images

 

Make sure that these are set right:

 

Catculate Image size should be set to: True

 

Image Require: True

 

give that a try

 

Wade, I had the settings previously as you have suggested. I changed them to your message params and tried again to no avail. This is really perplexing.

Don Harbour

Rowdy Roy Seasoning

Maumelle, AR USA

Link to comment
Share on other sites

Wade, I had the settings previously as you have suggested. I changed them to your message params and tried again to no avail. This is really perplexing.

 

Donald I need to see your configure.php settings.

 

without the Database information.

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Link to comment
Share on other sites

Donald I need to see your configure.php settings.

 

without the Database information.

 

 

define('HTTP_SERVER', 'http://www.rowdyroy.com/');

define('HTTPS_SERVER', 'https://www.rowdyroy.com');

define('ENABLE_SSL', false); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', '2010aw957t_rr');

define('HTTPS_COOKIE_DOMAIN', '2010aw957t_rr');

define('HTTP_COOKIE_PATH', '2010aw957t_rr/');

define('HTTPS_COOKIE_PATH', '2010aw957t_rr/');

define('DIR_WS_HTTP_CATALOG', '2010aw957t_rr/');

define('DIR_WS_HTTPS_CATALOG', '2010aw957t_rr/');

define('DIR_WS_IMAGES', 'images/');

define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

define('DIR_WS_INCLUDES', 'includes/');

define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');

define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');

define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');

define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');

define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

 

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');

define('DIR_FS_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');

define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

Don Harbour

Rowdy Roy Seasoning

Maumelle, AR USA

Link to comment
Share on other sites

Change this:

 

define('HTTP_SERVER', 'http://www.rowdyroy.com/'); 
define('HTTPS_SERVER', 'https://www.rowdyroy.com');
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', '2010aw957t_rr');
define('HTTPS_COOKIE_DOMAIN', '2010aw957t_rr');
define('HTTP_COOKIE_PATH', '2010aw957t_rr/');
define('HTTPS_COOKIE_PATH', '2010aw957t_rr/');
define('DIR_WS_HTTP_CATALOG', '2010aw957t_rr/');
define('DIR_WS_HTTPS_CATALOG', '2010aw957t_rr/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

to this:

 

define('HTTP_SERVER', 'http://www.rowdyroy.com/2010aw957t_rr/'); 
define('HTTPS_SERVER', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', '2010aw957t_rr');
define('HTTPS_COOKIE_DOMAIN', '2010aw957t_rr');
define('HTTP_COOKIE_PATH', '2010aw957t_rr/');
define('HTTPS_COOKIE_PATH', '2010aw957t_rr/');
define('DIR_WS_HTTP_CATALOG', '2010aw957t_rr/');
define('DIR_WS_HTTPS_CATALOG', '2010aw957t_rr/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

I don't know that will do it but give it a try

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Link to comment
Share on other sites

Change this:

 

define('HTTP_SERVER', 'http://www.rowdyroy.com/'); 
define('HTTPS_SERVER', 'https://www.rowdyroy.com');
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', '2010aw957t_rr');
define('HTTPS_COOKIE_DOMAIN', '2010aw957t_rr');
define('HTTP_COOKIE_PATH', '2010aw957t_rr/');
define('HTTPS_COOKIE_PATH', '2010aw957t_rr/');
define('DIR_WS_HTTP_CATALOG', '2010aw957t_rr/');
define('DIR_WS_HTTPS_CATALOG', '2010aw957t_rr/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

to this:

 

define('HTTP_SERVER', 'http://www.rowdyroy.com/2010aw957t_rr/'); 
define('HTTPS_SERVER', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', '2010aw957t_rr');
define('HTTPS_COOKIE_DOMAIN', '2010aw957t_rr');
define('HTTP_COOKIE_PATH', '2010aw957t_rr/');
define('HTTPS_COOKIE_PATH', '2010aw957t_rr/');
define('DIR_WS_HTTP_CATALOG', '2010aw957t_rr/');
define('DIR_WS_HTTPS_CATALOG', '2010aw957t_rr/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

I don't know that will do it but give it a try

 

I am still getting the same error message. Is it necessary to go through the admin panel once the images have been loaded to directory?

Don Harbour

Rowdy Roy Seasoning

Maumelle, AR USA

Link to comment
Share on other sites

Copy and past this: I am watching your web site as you are changing it.

 

define('HTTP_SERVER', 'http://www.rowdyroy.com/2010aw957t_rr/'); 
define('HTTPS_SERVER', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'http://www.rowdyroy.com/2010aw957t_rr');
define('HTTPS_COOKIE_DOMAIN', 'https://www.rowdyroy.com2/010aw957t_rr');
define('HTTP_COOKIE_PATH', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('HTTPS_COOKIE_PATH', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_WS_HTTP_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_WS_HTTPS_CATALOG', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Link to comment
Share on other sites

Ok I have found your problem do this:

 

define('HTTP_SERVER', 'http://www.rowdyroy.com/2010aw957t_rr/'); 
define('HTTPS_SERVER', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', '');
define('HTTPS_COOKIE_DOMAIN', '');
define('HTTP_COOKIE_PATH', '');
define('HTTPS_COOKIE_PATH', '');
define('DIR_WS_HTTP_CATALOG', '');
define('DIR_WS_HTTPS_CATALOG', '');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Link to comment
Share on other sites

Copy and past this: I am watching your web site as you are changing it.

 

define('HTTP_SERVER', 'http://www.rowdyroy.com/2010aw957t_rr/'); 
define('HTTPS_SERVER', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'http://www.rowdyroy.com/2010aw957t_rr');
define('HTTPS_COOKIE_DOMAIN', 'https://www.rowdyroy.com2/010aw957t_rr');
define('HTTP_COOKIE_PATH', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('HTTPS_COOKIE_PATH', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_WS_HTTP_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_WS_HTTPS_CATALOG', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

Tried the above. Lost paths. Changed back to previous code.

Don Harbour

Rowdy Roy Seasoning

Maumelle, AR USA

Link to comment
Share on other sites

Tried the above. Lost paths. Changed back to previous code.

 

 

Try this:

 

define('HTTP_SERVER', 'http://www.rowdyroy.com/2010aw957t_rr/'); 
define('HTTPS_SERVER', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', '');
define('HTTPS_COOKIE_DOMAIN', '');
define('HTTP_COOKIE_PATH', '');
define('HTTPS_COOKIE_PATH', '');
define('DIR_WS_HTTP_CATALOG', '');
define('DIR_WS_HTTPS_CATALOG', '');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Link to comment
Share on other sites

Try this:

 

define('HTTP_SERVER', 'http://www.rowdyroy.com/2010aw957t_rr/'); 
define('HTTPS_SERVER', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', '');
define('HTTPS_COOKIE_DOMAIN', '');
define('HTTP_COOKIE_PATH', '');
define('HTTPS_COOKIE_PATH', '');
define('DIR_WS_HTTP_CATALOG', '');
define('DIR_WS_HTTPS_CATALOG', '');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

Nope! Reinstalled original code. I looked at your site. You have a lot of pictures. How do you have your site configure code installed?

Don Harbour

Rowdy Roy Seasoning

Maumelle, AR USA

Link to comment
Share on other sites

Nope! Reinstalled original code. I looked at your site. You have a lot of pictures. How do you have your site configure code installed?

 

Ok give me a second I have a demo store that the same setting you do.

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Link to comment
Share on other sites

Now give this a try:

 

define('HTTP_SERVER', 'http://www.rowdyroy.com/2010aw957t_rr'); // eg, http://localhost - should not be empty for productive servers
 define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers
 define('ENABLE_SSL', false); // secure webserver for checkout procedure?
 define('HTTP_COOKIE_DOMAIN', 'rowdyroy.com/2010aw957t_rr');
 define('HTTPS_COOKIE_DOMAIN', '');
 define('HTTP_COOKIE_PATH', '/2010aw957t_rr/');
 define('HTTPS_COOKIE_PATH', '');
 define('DIR_WS_HTTP_CATALOG', '/2010aw957t_rro/');
 define('DIR_WS_HTTPS_CATALOG', '');
 define('DIR_WS_IMAGES', 'images/');
 define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
 define('DIR_WS_INCLUDES', 'includes/');
 define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
 define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
 define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
 define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
 define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Link to comment
Share on other sites

Ok I have found your problem do this:

 

define('HTTP_SERVER', 'http://www.rowdyroy.com/2010aw957t_rr/'); 
define('HTTPS_SERVER', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', '');
define('HTTPS_COOKIE_DOMAIN', '');
define('HTTP_COOKIE_PATH', '');
define('HTTPS_COOKIE_PATH', '');
define('DIR_WS_HTTP_CATALOG', '');
define('DIR_WS_HTTPS_CATALOG', '');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

Above code installed. Tried to upload image through the admin panel. Received the same error message. I did install the latest upgrade from osc. I may have to go back to the previous version however the latest supposedly has all the bugs out of it. lol

Don Harbour

Rowdy Roy Seasoning

Maumelle, AR USA

Link to comment
Share on other sites

Now give this a try:

 

define('HTTP_SERVER', 'http://www.rowdyroy.com/2010aw957t_rr'); // eg, http://localhost - should not be empty for productive servers
 define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers
 define('ENABLE_SSL', false); // secure webserver for checkout procedure?
 define('HTTP_COOKIE_DOMAIN', 'rowdyroy.com/2010aw957t_rr');
 define('HTTPS_COOKIE_DOMAIN', '');
 define('HTTP_COOKIE_PATH', '/2010aw957t_rr/');
 define('HTTPS_COOKIE_PATH', '');
 define('DIR_WS_HTTP_CATALOG', '/2010aw957t_rro/');
 define('DIR_WS_HTTPS_CATALOG', '');
 define('DIR_WS_IMAGES', 'images/');
 define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
 define('DIR_WS_INCLUDES', 'includes/');
 define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
 define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
 define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
 define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
 define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

it show that you don't the images uploaded to your folder that is why its not pulling the product images

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Link to comment
Share on other sites

it show that you don't the images uploaded to your folder that is why its not pulling the product images

 

I left this code in config. Tried to upload through admin, no go.

Don Harbour

Rowdy Roy Seasoning

Maumelle, AR USA

Link to comment
Share on other sites

I left this code in config. Tried to upload through admin, no go.

ok put this code back in

and one question to ask you do you have a SSL Cert. on your server?

 

define('HTTP_SERVER', 'http://www.rowdyroy.com/2010aw957t_rr/'); 
define('HTTPS_SERVER', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'http://www.rowdyroy.com/2010aw957t_rr');
define('HTTPS_COOKIE_DOMAIN', 'https://www.rowdyroy.com2/010aw957t_rr');
define('HTTP_COOKIE_PATH', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('HTTPS_COOKIE_PATH', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_WS_HTTP_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_WS_HTTPS_CATALOG', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

and go from there agian

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Link to comment
Share on other sites

ok put this code back in

and one question to ask you do you have a SSL Cert. on your server?

 

define('HTTP_SERVER', 'http://www.rowdyroy.com/2010aw957t_rr/'); 
define('HTTPS_SERVER', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'http://www.rowdyroy.com/2010aw957t_rr');
define('HTTPS_COOKIE_DOMAIN', 'https://www.rowdyroy.com2/010aw957t_rr');
define('HTTP_COOKIE_PATH', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('HTTPS_COOKIE_PATH', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_WS_HTTP_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_WS_HTTPS_CATALOG', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

and go from there agian

 

Wade, I appreciate you helping me with this. I do not want to take up all your time. It appears the above code also drops the paths. I suppose you are still viewing the site as I change it?

Don Harbour

Rowdy Roy Seasoning

Maumelle, AR USA

Link to comment
Share on other sites

ok put this code back in

and one question to ask you do you have a SSL Cert. on your server?

 

define('HTTP_SERVER', 'http://www.rowdyroy.com/2010aw957t_rr/'); 
define('HTTPS_SERVER', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'http://www.rowdyroy.com/2010aw957t_rr');
define('HTTPS_COOKIE_DOMAIN', 'https://www.rowdyroy.com2/010aw957t_rr');
define('HTTP_COOKIE_PATH', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('HTTPS_COOKIE_PATH', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_WS_HTTP_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_WS_HTTPS_CATALOG', 'https://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', 'http://www.rowdyroy.com/2010aw957t_rr/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

and go from there agian

 

Over looked you question. I do not have SSL on as yet. I have applied for SSL Cert. I have not been informed that it is set up. I use iPower for host. I need to call them and check for sure.

Don Harbour

Rowdy Roy Seasoning

Maumelle, AR USA

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...