skip to Main Content

I have a fatal error:
Class ZendStdlibParameters contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (ArrayAccess::offsetUnset) in
E:xampphtdocsmage221vendorzendframeworkzend-stdlibsrcParameters.php on line 14

How to fix this error? Thanks

4

Answers


  1. Chosen as BEST ANSWER

    I take some step and it solved.

    1. reset your server like xampp, wamp. give command to magento.
    2. php bin/Magento setup:upgrade
    3. php bin/Magento setup:static-content:deploy
    4. php bin/Magento cache:clean
    5. php bin/Magento cache:flush

    thanks.


  2. I use this command and solved.
    composer install && composer update -vv &&
    find var vendor pub/static pub/media app/etc -type f -exec chmod u+w {} ;

    Login or Signup to reply.
  3. Just Restart xampp/wammp OR sudo service apache2 restart

    Login or Signup to reply.
  4. @Pratik Kamani what if site in production and so many users on site if you do apche2 retart? Wan’t they logged out?

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search