What is the URL to your zc_install folder?
I want to look at the system-inspection details etc.
What is the URL to your zc_install folder?
I want to look at the system-inspection details etc.
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
This is likely your problem:
WARNING: "PHP session.use_trans_sid = ON"
How to resolve it?
You can try the following, and/or work with your hosting company for the best way to do it on "their" servers.
PHP Session.use_trans_sid should be disabled.
The session.use_trans_sid setting in your server's PHP.INI file is set to ON.
This could potentially cause you some problems with session handling and possibly even security concerns.
You can sometimes work around this by setting an .htaccess parameter such as described here: http://www.olate.com/articles/252, or you could disable it in your PHP.INI if you have access to it.
For more information on the security risks it imposes, see: http://shh.thathost.com/secadv/2003-05-11-php.txt.
(You may have to create the .htaccess file if you don't already have one.)
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
OK, I did as you recommended and turned it off, but I am still getting the lines at the top of the page.
Do I need to uninstall it and re-install before it will take effect?
Also, when I attempt to enter the admin area, I receive the flowing errors as follows and then nothing at all below it:
Everything seems to center around this line 108 in the sessions.php file?Warning: session_start() [function.session-start]: Cannot find save handler files in /home/ibskinc/public_html/store/includes/functions/sessions.php on line 108
Warning: Cannot modify header information - headers already sent by (output started at /home/ibskinc/public_html/store/includes/functions/sessions.php:108) in /home/ibskinc/public_html/store/admin/includes/init_includes/init_templates.php on line 36
Warning: Cannot modify header information - headers already sent by (output started at /home/ibskinc/public_html/store/includes/functions/sessions.php:108) in /home/ibskinc/public_html/store/admin/includes/functions/general.php on line 34
That is correct.
That line is part of the driver that tells PHP to activate a "session". A session is used to track everything that happens in your shopping "session" (or admin login "session"). Without a "session", you won't stay logged in, your cart contents will not be remembered from screen to screen, you won't be able to checkout, etc.
It seems your server has something wrong with its PHP configuration as it relates to sessions ... even the custom session manager overrides.
What happens if you change your configure.php files to use this:
(ie: blank instead of 'db')Code:define('STORE_SESSIONS', '');
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
No difference, I am sorry to say...![]()
Well, I'm sorry to say ... two things ... first, I've not seen this before -- even with thousands of Zen Cart installs on hundreds of different servers/hosting-companies. Second, I'm going to blame your server's configuration, as I eluded to in my previous post. I'm not sure if it's their PHP configuration or their filesystem permissions configuration, or something else ... or a combination of several things.
I can say with strong certainty that if you were to take this to another host (running a more traditional configuration) you're likely to see it work fine right away. For a list of recommended hosts, click the "hosting" link at the top of this page.
Sorry you're having trouble! Hopefully you'll give Zen Cart a try on another server so that you can enjoy all the benefits it offers you to get your ecommerce business going!
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
Zend, the authors of PHP, have this on their forum:
http://www.zend.com/support/knowledg...44&view_only=1
... it suggests that either the session.save_handler setting in your php.ini file is set to something invalid (make sure there are no spaces inside the quotation marks), or else the session.save_path folder isn't writable.
Zen Cart attempts to override both of these, thus the suggestions I made earlier about alternate methods.
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
Thanks for the additional information, but guess what? The 'session.save_handler' is already set to 'files'...![]()