View Single Post
  #4  
Old 23rd January 2008, 23:59
Fynnon's Avatar
Fynnon Fynnon is offline
xxx
 
Join Date: Nov 2007
P2P
Posts: 984
Default Re: Torrentstrike Fullymodded v1.0
Quote:
Originally Posted by Kukaracha View Post
i have problem in takeupload.php

Code:
Fatal error: Allowed memory size of 26214400 bytes exhausted (tried to allocate 100000001 bytes) in /drones2/alcoves/ssg/public_html/include/benc.php on line 181

1. You can increase the memory allowed per process by editing this line in your php.ini file and restarting Apache:

memory_limit = 16M (add the line if it is missing)

2. If you do not have access to php.ini but your webspace is able to handle ".htaccess" files then you should be able to set it by adding the following line to .htaccess file

php_value memory_limit 16M

3. Put the following code in your php page for increasing the memory size without making any change in php.ini

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

4. One alternative is to contact your service provider and ask them to change that setting. Maybe they are kind enough to help.
Reply With Quote