html - Can't add items to Magento cart -


when ever add item cart 500 server error http://www.supremerattanfurniture.co.uk/

first solution

if you're getting blank page seems php error. steps debug be: 1. make sure error reporting turned on, write temporarily:

error_reporting(e_all); ini_set('display_errors', 1); 

at beginning of of index.php file.
2. change theme different one. i'd suspect error in
app/design/[package]/[theme]/template/checkout/cart.phtml
3. disable local , community modules.

second solution

this php memory limit issues. happens me. if 256 mb not work go 500m

go magento root , .htaccess , change current value per , flush cache , check shopping cart , work.

## adjust memory limit php_value memory_limit 500m php_value max_execution_time 18000 

Comments

Popular posts from this blog

Capture and play voice with Asterisk ARI -

visual studio - Installing Packages through Nuget - "Central Directory corrupt" -

java - Why database contraints in HSQLDB are only checked during a commit when using transactions in Hibernate? -