PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Photopost Pro Installation & Upgrades (http://www.photopost.com/forum/photopost-pro-installation-upgrades/)
-   -   Fatal error: Allowed memory .....?? (http://www.photopost.com/forum/photopost-pro-installation-upgrades/113227-fatal-error-allowed-memory.html)

blifereal March 31st, 2005 07:04 PM

Fatal error: Allowed memory .....??
 
New install on PHP server with safemode "on", had to do a "run-around" ( php scripts as cgi )

Everything is working except the very last step im the image upload process, it goes to the "preparing to process image list" then it gets this error

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 7936 bytes) in /home/virtual/site433/fst/var/www/html/gallery/image-inc.php on line 84


I have set the gobal directory, but this keeps coming up, the gallery is functioning with no errors excpet this ..argg.. Im lost, Ive installed photopost on four other machine and this is the first time i had to do the "safemode (on)"

Can anyone help
Thanks

Chuck S March 31st, 2005 08:34 PM

Uploads do not work with safe mode therefore thats why it is a requirement that it is off.
You will be able to upload but not anyone else

As far as the memory error there are many threads here with a tweak you can do for that

in bulkupload.php find this

ini_set("max_execution_time", 0);

add this

ini_set("memory_limit", "24M");

blifereal March 31st, 2005 09:17 PM

geez, that worked perfect thanks, and doing that php as cgi works perfect too but I was told that it slows down performance a little by 100th of a second. not bad for a safemode server

THANKS for the advice


All times are GMT -5. The time now is 07:01 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97