Magento - Checkout - Cart page is empty

I am looking for a solution for my help page in Magento. When I put items in the basket, then the basket page becomes blank. !!

I tried several options and still shows a blank. I turned on cookies, etc., but still no luck. I use the Firefox browser and attached a screenshot of the cookie settings.

Page URL - index.php / checkout / cart / add / uenc / aHR0cDovLzE5Mi4xNjguMS4xMTQ6ODEvZXNzZW50aWFsbHkvaW5kZXgucGhwL2NsZWFuc2UuaHRtbD9fX19TSUQ9V

Please can anyone help me with this problem?

http://www.itsthe1.com/cookies.jpg

Thanks in advance.

+4
source share
8 answers

PHP. . 256 , 500

magento Root .htaccess , , .

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

: .

!!!

+7

cookie. . index.php - - ini_set('display_errors', 1); Mage::setIsDeveloperMode(true);, .

php.

+1

.

, , - . .

+1

. ini_set('display_errors', 1); index.php, , .

Cannot instantiate interface Magento\Vault\Api\Data\PaymentTokenInterfaceFactory in developer.php line 73

. PaymentTokenInterfaceFactory magento 2.1.x, vendor/magento/module-vault/etc/di.xml 10-15:

<preference for="Magento\Vault\Api\Data\PaymentTokenInterfaceFactory" type="Magento\Vault\Model\AccountPaymentTokenFactory"/>

, . .

+1

. , - ?

0

This problem is almost always associated with a memory problem. Try to increase the memory limit, also enable the cache in the administrator configuration.

This usually happens on the cart and control, if the system does not have enough bars allocated.

Depending on your setup, you can change this inside the htaccess file or inside php.ini

0
source

Check if php mcrypt module is installed and activated

0
source

I recommend that you check your version of PHP.

0
source

All Articles