Помилка після видалення всього кешу в Magento 2


10

При видаленні всього кешу як

rm -rf var/cache/* var/page_cache/* var/view_preprocessed/* var/generation/*

Я потрапив нижче помилки

Warning: ltrim() expects parameter 1 to be string, object given in vendor\magento\framework\Code\Generator\EntityAbstract.php on line 152

Notice: Uninitialized string offset: 0 in vendor\magento\framework\Autoload\ClassLoaderWrapper.php on line 81

Notice: Uninitialized string offset: 0 in vendor\composer\ClassLoader.php on line 317

Notice: Uninitialized string offset: 0 in vendor\composer\ClassLoader.php on line 349
exception 'RuntimeException' with message 'Source class "" for   "Magento\Framework\App\Response\Http\Interceptor" generation does not exist.'
in vendor\magento\framework\Code\Generator.php:185 Stack trace:     #0  
vendor\magento\framework\Code\Generator.php(112): Magento\Framework\Code\Generator->tryToLoadSourceClass('Magento\\Framewo...', Object(Magento\Framework\Interception\Code\Generator\Interceptor)) #1 
vendor\magento\framework\Code\Generator\Autoloader.php(35): Magento\Framework\Code\Generator->generateClass('Magento\\Framewo...') #2 [internal function]: Magento\Framework\Code\Generator\Autoloader->load('Magento\\Framewo...') #3 
vendor\magento\framework\ObjectManager\Factory\AbstractFactory.php(93): spl_autoload_call('Magento\\Framewo...') #4 
vendor\magento\framework\ObjectManager\Factory\Compiled.php(88): Magento\Framework\ObjectManager\Factory\AbstractFactory->createObject('Magento\\Framewo...', Array) #5 
vendor\magento\framework\ObjectManager\Factory\Compiled.php(130): Magento\Framework\ObjectManager\Factory\Compiled->create('Magento\\Framewo...') #6 
vendor\magento\framework\ObjectManager\Factory\Compiled.php(67): Magento\Framework\ObjectManager\Factory\Compiled->get('Magento\\Framewo...') #7     
vendor\magento\framework\ObjectManager\ObjectManager.php(57): Magento\Framework\ObjectManager\Factory\Compiled->create('Magento\\Framewo...', Array) #8 
vendor\magento\framework\App\Bootstrap.php(233): Magento\Framework\ObjectManager\ObjectManager->create('Magento\\Framewo...', Array) #9 
index.php(38): Magento\Framework\App\Bootstrap->createApplication('Magento\\Framewo...') #10 {main}

Які причини цього питання?

Чи можете ви запропонувати мені можливі варіанти вирішення цього питання?

Відповіді:


19

Спочатку потрібно видалити var папку.

Запустити команду, php bin/magento setup:di:compile

Після видалення папки var надайте дозвіл на папку var,

chmod -R 775 var/generation/ var/cache/ var/full_page/

Перевірте ще раз.


4
Помилка, вирішена для мене при складанні модулів за допомогою установки php bin / magento: di: compile
sagar sapkota

У мене така ж проблема , і моя проблема також вирішена з допомогою PHP бен / установка Magento: ді: compil COMAND
Pandurang

6

Якщо у вас все ще виникають проблеми після компіляції, видалення папки & вмісту var / di зазвичай робить для мене хитрість. Не маю уявлення, що насправді викликає це, хоча я часто натрапляю на це і дуже хотів би знати.


1
Вам вдалося з’ясувати, чому це відбувається?
Стіві Г

1

У мене була така ж проблема, я її виправив, надавши дозволу var 777 у дозволах

cd magento root folder
sudo chmod 777 -R var/

тепер Magento може створити ді-папку.


0

Я також нижче проблема працювала для мене

cd <your Magento install dir> 
find var generated vendor pub/static pub/media app/etc -type f -exec chmod g+w {} +
find var generated vendor pub/static pub/media app/etc -type d -exec chmod g+ws {} +
chown -R :www-data .   // I used LEMP/LAMP
chmod u+x bin/magento

php bin/magento setup:di:compile   // you can skip if know compile status
php bin/magento setup:static-content:deploy -f en_CA // if need your language code
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.