Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

no image pls help


cronoszeu

Recommended Posts

hy there all, i am new on this oscommerce thing and i recently install.

 

all instalation was ok but after instal wen i go to the website i see no image only the backround and the righting.

 

i look on forum but nothing found or i miss somthing pls help me.

 

the website is www.unlockingcrew.com

 

 

 

ty and regards

Link to comment
Share on other sites

hy there all, i am new on this oscommerce thing and i recently install.

 

all instalation was ok but after instal wen i go to the website i see no image only the backround and the righting.

 

i look on forum but nothing found or i miss somthing pls help me.

 

the website is www.unlockingcrew.com

ty and regards

It is looking for the images at http:///images/m13.gif

so you need to check your includes/configure.php files

Link to comment
Share on other sites

It is looking for the images at http:///images/m13.gif

so you need to check your includes/configure.php files

 

 

this is my config:

 

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://www.unlockingcrew.com'); // 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', 'www.unlockingcrew.com');

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', '/home/cronosze/public_html/');

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

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

 

 

wath i need to modify ? :)

 

ty and regards

Link to comment
Share on other sites

this is my config:

 

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://www.unlockingcrew.com'); // 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', 'www.unlockingcrew.com');

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', '/home/cronosze/public_html/');

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

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

wath i need to modify ? :)

 

ty and regards

You could try

define('DIR_FS_CATALOG', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']));

instead of

define('DIR_FS_CATALOG', '/home/cronosze/public_html/');

Link to comment
Share on other sites

You could try

define('DIR_FS_CATALOG', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']));

instead of

define('DIR_FS_CATALOG', '/home/cronosze/public_html/');

 

 

 

same :(

 

but define('DIR_FS_CATALOG', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME'])); is dirname or i need to put a name ?

 

i am so noob :(

Link to comment
Share on other sites

same :(

 

but define('DIR_FS_CATALOG', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME'])); is dirname or i need to put a name ?

 

i am so noob :(

Just as posted. The rest looks ok

 

Try putting the rest (where it says to use absolute paths) of the absolute paths in your admin/includes/configure.php

 

You should secure your admin as well.

 

My webhost asked me to set pconnect to false to reduce the load on the database.

Link to comment
Share on other sites

Just as posted. The rest looks ok

 

Try putting the rest (where it says to use absolute paths) of the absolute paths in your admin/includes/configure.php

 

You should secure your admin as well.

 

My webhost asked me to set pconnect to false to reduce the load on the database.

 

 

is secure now :)

 

 

ty and regards

Link to comment
Share on other sites

this is my config:

 

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://www.unlockingcrew.com'); // 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', 'www.unlockingcrew.com');

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', '/home/cronosze/public_html/');

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

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

wath i need to modify ? :)

 

ty and regards

the path to image. do not use "/images/" use "images" no backslash

Link to comment
Share on other sites

:blink: after 24 hours stil same the website no image and the link for image is http:///images

 

i madeit in the config instad of image/ image but same ... but in fire fox is working greate only in IE is not working pls some help.

 

ty and regards

Can you repost your file?

Link to comment
Share on other sites

ty all for help ........... i resolve the problem this morning :P

 

 

it was easy but how i sayt i am a noob for now :)

 

 

 

the resolve is for me : i go to include/application_top.php and wen is say $request_type = (getenv('HTTPS') == 'on') i change the "on" to "off" and after all my pictures is working ok :)

 

 

 

ty and regards

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...