Ophe Posted November 17, 2008 Share Posted November 17, 2008 Hello! I've installed osCommerce, and it works really well. However, there are two things I wonder about: Warning: session_save_path() [function.session-save-path]: SAFE MODE Restriction in effect. The script whose uid is 687599 is not allowed to access /tmp owned by uid 0 in /customers/ophe.se/ophe.se/httpd.www/webbutik/catalog/includes/functions/sessions.php on line 169 Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /customers/ophe.se/ophe.se/httpd.www/webbutik/catalog/includes/functions/sessions.php:169) in /customers/ophe.se/ophe.se/httpd.www/webbutik/catalog/includes/functions/sessions.php on line 102 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /customers/ophe.se/ophe.se/httpd.www/webbutik/catalog/includes/functions/sessions.php:169) in /customers/ophe.se/ophe.se/httpd.www/webbutik/catalog/includes/functions/sessions.php on line 102 What exactly does it mean, and how do I counter this error? It doesn't seem to actually result in anything not working, but I dislike errorsmessages!! And the second error: In catalog/includes/column_left.php this piece of code doesn't always work: if ((USE_CACHE == 'true') && empty($SID)) { echo tep_cache_categories_box(); } else { include(DIR_WS_BOXES . 'categories.php'); } When I say "not always" I mean that the category-box appears when the page is loaded, but then it disappears. If I replace the code with: include(DIR_WS_BOXES . 'categories.php'); It still doesn't work, but if I instead replace it with: require(DIR_WS_BOXES . 'categories.php'); It works. What I wonder is... what do the script actually do? Do I lose anything on not using the entire if-function? Thank you for your help! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.