Jump to content

Your PHP memory limit is set to 32 MB but should be set to 128M or more.


Recommended Posts

Trying to migrate my site from shared hosting to a dedicated VPS.

I've changed the php.ini file so that the memory_limit = 256M, however the installation says it's still set to 32M.

The php.ini file is sitting in public_html

 

/phpinfo.php show that the memory_limit is set to 32M local value, but master value is 128M.

     
Link to comment
Share on other sites

15 minutes ago, Randy Calvert said:

A couple of notes… are you editing the right php.ini?  Check your phpinfo output for what is actually being processed by scripts. 

Do you have any other INI file being loaded setting memory limits? (such as inside a conf.d folder)

The phpinfo file is saying that the Loaded Configuration File and file path is loading old info from my older address that i'm migrating from, along with it being PHP Version 7.3.11 instead of PHP 8 which i'm running on the VPS. I'm not sure how that's happening.

Edited by Electric_Sheep8787
Link to comment
Share on other sites

1 minute ago, Electric_Sheep8787 said:

The phpinfo file is saying that the Loaded Configuration File and file path is loading old info from my older address that i'm migrating from, along with it being PHP Version 7.3.11 instead of PHP 8 which i'm running on the VPS. I'm not sure how that's happening.

The phpinfo should say something like:

Could contain: Text, Face

In this case, you should be editing /etc/php.ini

In addition to that file, there are additional files that are processed inside of the /etc/php.d folder.  I'm not sure how your PHP setup would be loading something domain specific for it's master config file, but that's something that would need to be fixed by your host or by your server admin.  

Link to comment
Share on other sites

5 minutes ago, Electric_Sheep8787 said:

The phpinfo file is saying that the Loaded Configuration File and file path is loading old info from my older address that i'm migrating from, along with it being PHP Version 7.3.11 instead of PHP 8 which i'm running on the VPS. I'm not sure how that's happening.

Do you have access to the command line?

Link to comment
Share on other sites

While I would highly recommend getting to the bottom of your PHP setup, there is another option to change the memory limit POTENTIALLY.  

If your server config allows it, you can try adding the following entry to your .htaccess file:

php_value memory_limit 256M

If your server allows overrides, this might work.

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...