允许的内存大小 php.ini

Allowed memory size php.ini

我有一个 Symfony 4 应用程序,我在其中上传文件时有 2MB 的限制,此限制有效,在开发环境中一切正常,图像上传良好,但在产品中,我总是收到相同的消息:

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 32768 bytes) in /var/www/html/asso.issoire-web.fr/vendor/symfony/debug/Exception/OutOfMemoryException.php on line 1
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 36864 bytes) in /var/www/html/asso.issoire-web.fr/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php on line 108

这一行就是问题所在

$file->move($this->getParameter($path), $name);

它移动了我资产中的图像,以便我在视图中恢复它,我修改了 php.ini 中的 memory_limit = -1,并且 upload_max_filesize = 200M post_max_size = 200M

但是还是一样的问题,图片上传不了,请问有解决办法吗?

我指定所有这些都在 VPS

更新:

这是生产中有问题的代码

 if($form->isSubmitted() && $form->isValid()) {

        $path = 'upload_directory';

        // Récupère les valeurs sous formes d'objet profil
        $profil = $form->getData();


        // Récupère l'image
        $image = $profil->getImage();

        // Récupère le fichier soumis
        $file =  $image->getFile();

        // Crée un nom unique pour chaque image
        $name = md5(uniqid()).'.'.$file->guessExtension();

        // Déplace le fichier
       $file->move($this->getParameter($path), $name);


        // Donne le nom à l'image
        $image->setName($name);
        $user->setImage($name);
        $profil->setUser($connectedUser);

        $manager->persist($profil);
        $manager->flush();

    }

尝试打印 phpinfo 并检查这些变量是否实际更新。也可能是你的路径问题或代码错误。也尝试检查文件夹的权限。它似乎总是不是内存问题。您可以在此处检查是您的编码风格、您的查询还是导致此问题的任何其他情况 Fatal Error: Allowed Memory Size of 134217728 Bytes Exhausted (CodeIgniter + XML-RPC)