Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Emergency


duk

Recommended Posts

try adding a / to the end of your url in your config file

 

also for some reason your images are under the following url

 

slimsystem-org.million4sale.com/shop/images/ migh want to reflect this n your config file

Link to comment
Share on other sites

try adding a / to the end of your url in your config file

 

also for some reason your images are under the following url

 

slimsystem-org.million4sale.com/shop/images/ migh want to reflect this n your config file

Where can I find this config file?

And thank you for your reply

Link to comment
Share on other sites

catalog/includes/configure.php

 

It really help to return all pictures, but I got /

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/****/public_html/slimsystem-org/shop/includes/configure.php:45) in /home/****/public_html/slimsystem-org/shop/includes/functions/sessions.php on line 97

 

What should I do now?

Link to comment
Share on other sites

It really help to return all pictures, but I got /

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/****/public_html/slimsystem-org/shop/includes/configure.php:45) in /home/****/public_html/slimsystem-org/shop/includes/functions/sessions.php on line 97

 

What should I do now?

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/****/public_html/slimsystem-org/shop/includes/configure.php:45) in /home/****/public_html/slimsystem-org/shop/includes/functions/sessions.php on line 97

 

What should I do now?

Link to comment
Share on other sites

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/****/public_html/slimsystem-org/shop/includes/configure.php:45) in /home/****/public_html/slimsystem-org/shop/includes/functions/sessions.php on line 97

 

What should I do now?

 

I need in Additional help;

Link to comment
Share on other sites

Set sessions all to false in the admin under configuration.

 

Make sure you have "Use Search-Engine Safe URLs (still in development)" set to false.

 

All right, but the warning persist

Link to comment
Share on other sites

You have an empty line or white space after the trailing > in the configure.php file.

 

headers already sent (output started at /home/****/public_html/slimsystem-org/shop/includes/configure.php:45)

 

Tom

No, I have not it, it's another problem

Link to comment
Share on other sites

You seem to be moving your problem around.

 

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/hrihcvt/public_html/slimsystem-org/shop/includes/functions/sessions.php:169) in /home/hrihcvt/public_html/slimsystem-org/shop/includes/functions/sessions.php on line 97

 

You shoul not have cookies enabled!

 

 

Set sessions all to false in the admin under configuration.

Link to comment
Share on other sites

You seem to be moving your problem around.

 

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/hrihcvt/public_html/slimsystem-org/shop/includes/functions/sessions.php:169) in /home/hrihcvt/public_html/slimsystem-org/shop/includes/functions/sessions.php on line 97

 

You shoul not have cookies enabled!

Set sessions all to false in the admin under configuration.

 

Not believable, I cannot enter the admin panel now

I got:

1017 - Can't find file: './*****_osc1/sessions.frm' (errno: 13)

 

select value from sessions where sesskey = 'cc49706425afcfcf698db511c22af8f' and expiry > '1171233254'

 

[TEP STOP]

Link to comment
Share on other sites

clear your cookies from cache or switch to a different browser and try to access admin again. I am going to see what is in includes/functions/sessions.php on line 97 to track down you issues.

 

I beleive it is all sessions issues that you have set to true in admin.

Link to comment
Share on other sites

clear your cookies from cache or switch to a different browser and try to access admin again. I am going to see what is in includes/functions/sessions.php on line 97 to track down you issues.

 

I beleive it is all sessions issues that you have set to true in admin.

Thank you, I entered to admin panel. Everything you said on false. But the warning continued. Additional problem - when I try to "buy" I get

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/hrihcvt/public_html/slimsystem-org/shop/includes/functions/sessions.php:169) in /home/hrihcvt/public_html/slimsystem-org/shop/includes/functions/sessions.php on line 97

 

Warning: Cannot modify header information - headers already sent by (output started at /home/hrihcvt/public_html/slimsystem-org/shop/includes/functions/sessions.php:169) in /home/hrihcvt/public_html/slimsystem-org/shop/includes/functions/general.php on line 33

 

Do you have any idea?

Link to comment
Share on other sites

Post your configure.php file here but x out user name and passwords.

 

Once again........ when did you start having issues with these warnings?

 

I've added a / at the end of configure.php because I had a problems with pictures in the OSC. After this began the problem with warnings. As follows configure.php

<?php

/*

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2003 osCommerce

 

Released under the GNU General Public License

*/

 

// Define the webserver and path parameters

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

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

define('HTTP_SERVER', 'http://MYdOMAIN'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://MYdOMAIN'); // eg, https://localhost - should not be empty for productive servers

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', '/shop/');

define('DIR_WS_HTTPS_CATALOG', '/shop/');

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', '/home2/MYDATABASE/public_html/MYdOMAIN/shop');

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

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

 

// define our database connection

define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers

define('DB_SERVER_USERNAME', 'MYDATABASE_osc1');

define('DB_SERVER_PASSWORD', 'XXXXXXXXXX');

define('DB_DATABASE', 'MYDATABASE_osc1');

define('USE_PCONNECT', 'false'); // use persistent connections?

define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'

?>/

Link to comment
Share on other sites

I've added a / at the end of configure.php because I had a problems with pictures in the OSC. After this began the problem with warnings. As follows configure.php

<?php

/*

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2003 osCommerce

 

Released under the GNU General Public License

*/

 

// Define the webserver and path parameters

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

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

define('HTTP_SERVER', 'http://MYdOMAIN'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://MYdOMAIN'); // eg, https://localhost - should not be empty for productive servers

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', '/shop/');

define('DIR_WS_HTTPS_CATALOG', '/shop/');

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', '/home2/MYDATABASE/public_html/MYdOMAIN/shop');

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

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

 

// define our database connection

define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers

define('DB_SERVER_USERNAME', 'MYDATABASE_osc1');

define('DB_SERVER_PASSWORD', 'XXXXXXXXXX');

define('DB_DATABASE', 'MYDATABASE_osc1');

define('USE_PCONNECT', 'false'); // use persistent connections?

define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'

?>/

 

After 'adding to cart' you can see the same problem...

Link to comment
Share on other sites

ditto take that / off. What were you thinking?

 

Also you have a messed up url.

https://slimsystem.org/shop/

 

And

http://slimsystem-org.million4sale.com/shop/

 

I think you have 2 catalogs trying to share the same database.

 

Choose the correct catalog and delete the incorrect one.

 

 

 

take that / off at the end here ?>/
Link to comment
Share on other sites

ditto take that / off. What were you thinking?

 

Also you have a messed up url.

https://slimsystem.org/shop/

 

And

http://slimsystem-org.million4sale.com/shop/

 

I think you have 2 catalogs trying to share the same database.

 

Choose the correct catalog and delete the incorrect one.

yeah umm your site is at http://slimsystem-org.million4sale.com/shop/

but its looking for your images at https://slimsystem.org/shop/images/lovseen.jpg

What? Yeah, I can do that.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...