- Posts: 38
- Thank you received: 2
OSC Error: Catalog images directory does not exist
13 years 11 months ago #20
by Sandra
OSC Error: Catalog images directory does not exist was created by Sandra
I just moved a OsCommerce to another site, and the catalogue end works perfectly....all images are there!!
But the admin side, is having tons of problems, it keeps telling me:
IMAGE DOES NOT EXIST
But the admin side, is having tons of problems, it keeps telling me:
IMAGE DOES NOT EXIST
Please Log in or Create an account to join the conversation.
- Support Team
- Offline
- Moderator
Less
More
- Posts: 106
- Thank you received: 10
13 years 11 months ago #21
by Support Team
Replied by Support Team on topic Re: OSC Error: Catalog images directory does not exist
admin/categories
change arround 1988:
to
change arround 1988:
Code:
$contents[] = array('text' => '<br>' . tep_info_image($cInfo->categories_image, $cInfo->categories_name, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT) . '<br>' . $cInfo->categories_image);
to
Code:
$contents[] = array('align' => 'center','text' => '<br>' . tep_image(DIR_EXT_HTTP . $cInfo->categories_image, $cInfo->categories_name, 120, 120, (ADDIMAGES_RESTRICT_IMAGE_SIZE == 'true'?SMALL_IMAGE_WIDTH:''), (ADDIMAGES_RESTRICT_IMAGE_SIZE == 'true'?SMALL_IMAGE_HEIGHT:'')) . '<br>' . $cInfo->categories_image);
Please Log in or Create an account to join the conversation.