php - Error 500 - Internal server error And Cart is not showing products with success message Magento -
i keep receiving error on magento pages in frontend , back-end.
error 500 - internal server error internal server error has occured! please try again later.
in front-end pages working fine when hit proceed checkout showing error , url /index.php/checkout/onepage/.
my cart not showing products in when add cart. shows empty cart message product has been added in cart , button proceed checkout or continue shopping. 
what causes? ho go this?
it's hard what's going on based solely on 500.
magento has behaviour of shielding real issue @ hand avoid exposing vulnerabilities end-users. in order find out what's going on you'd have real error report.
i can think of 4 ways find out what's going on:
- check magento logs, can find these in
magento_root/var/log - check error report has been generated error. i'm not 100% sure if magento versions generate these, might have enabled somewhere. if being made, appear in
magento_root/var/report - check web server error logs if have access those. found under
/var/logor directory under account if on shared hosing environment. - enable error logging in php configuration. run
<?php phpinfo(); ?>seephp.iniserver using, edit file, , setlog_errors = on, define log path (which requires write permissions account php runs under)error_log = /path/to/php.error.logdirective.
Comments
Post a Comment