You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At frist, thank you very much for your script. I was looking for something like that.
I received the following error message on and on:
PHP Fatal error: Allowed memory size of 209715200 bytes exhausted (tried to allocate 12565851 bytes) in /volume1/web/podio-backup-master/podio-php/lib/Podio.php on line 439
Fatal error: Allowed memory size of 209715200 bytes exhausted (tried to allocate 12565851 bytes) in /volume1/web/podio-backup-master/podio-php/lib/Podio.php on line 439
I've tried everything for hours. I changed all the php.ini files i could find, installed different versions of php, restarted the server many times but nothing seemed to work.
The solution was editing your code, as you set the memory to 200M manually and therefore the value in the php.ini was overwritten. After changing line 31 to ini_set("memory_limit", "1024M"); everything worked.
The text was updated successfully, but these errors were encountered:
At frist, thank you very much for your script. I was looking for something like that.
I received the following error message on and on:
I've tried everything for hours. I changed all the php.ini files i could find, installed different versions of php, restarted the server many times but nothing seemed to work.
The solution was editing your code, as you set the memory to 200M manually and therefore the value in the php.ini was overwritten. After changing line 31 to
ini_set("memory_limit", "1024M");
everything worked.The text was updated successfully, but these errors were encountered: