hylevy19
Forum Replies Created
-
Forum: Plugins
In reply to: WP ecommerce shopping cartI am so happy I fixed the “no items in your cart” problem.
Here is the fix:
You must enable sessions as WP uses session cookies and shopping cart temporarily stores the cart in a “session” file. If the PHP on your server does not have this set up, it will not have anywhere to put the items (only later does it store them in the database).
So, go to your hosting control center (or similar).
Find PHP and /or scripting language support.
There will be a section to update the php.ini file.
The item you are looking for is:
session.save_path = something.
Make sure column 1 is not a semi-colon (makes it a comment)
fill in your root path/phpsessions as the path name instead of something.
You will have to get the root path from your hosting support. It is not your domain name.
In my case it was something like:
/home/users/web/b2953/moo.{myuserid}/phpsessions.
Put this all in quotes.
The final directory name must be “phpsessions” as that is what WP will
look for.Then you have to create this directory in your WP root (public_html or
httpdocs or similar).Then it works fine.
Hy
Forum: Fixing WordPress
In reply to: White Screen After PostI had exactly same problem. Gave up on it about 5 times. Then found out in my case it was Google Sitemaps (common plugin I think) not having quite enough memory (or possibly time). It tries to update (if you have this option set this way) every time you change a post or a page.
So Go to “Settings” looking for the XML Sitemap link in the dropdown menu. This will take you to the options page for this plug in. Simply increase the memory limit (mine was set to 16M and when I got it to run it told me it used 18.8M, so it was “close but no cigar”.
Hope this helps. Minimally seems to mean that somewhere not enough memory or time is specified in maybe another plug in as well.