473,549 Members | 2,784 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Allowed memory size of 8388608 bytes exhausted

Hi,

I'm using TikiWiki and was using its file upload feature, trying to
upload a 2MB file. I get this error:

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to
allocate 1677706 bytes) in
/var/html/www/tiki/lib/filegals/filegallib.php on line 30

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to
allocate 40 bytes) in Unknown on line 0

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to
allocate 134 bytes) in Unknown on line 0

My settings are:

PHP Version 4.2.2
Apache/2.0.40 (Red Hat Linux)
memory_limit 8M
post_max_size 8M
upload_max_file size 5M
upload_tmp_dir no value
(the machine has 512 MB RAM)

No one else is using this server, and that was the only thing I was
trying to do (i.e. upload a 2MB file).
Jul 16 '05 #1
3 12347

"Paul" <Pa******@telus .com> wrote in message
news:87******** *************** ***@posting.goo gle.com...
Hi,

I'm using TikiWiki and was using its file upload feature, trying to
upload a 2MB file. I get this error:

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to
allocate 1677706 bytes) in
/var/html/www/tiki/lib/filegals/filegallib.php on line 30

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to
allocate 40 bytes) in Unknown on line 0

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to
allocate 134 bytes) in Unknown on line 0

My settings are:

PHP Version 4.2.2
Apache/2.0.40 (Red Hat Linux)
memory_limit 8M
post_max_size 8M
upload_max_file size 5M
upload_tmp_dir no value
(the machine has 512 MB RAM)

No one else is using this server, and that was the only thing I was
trying to do (i.e. upload a 2MB file).


I don't know if I can help - but someone might if you supply some code
around line 30 in your script
/var/html/www/tiki/lib/filegals/filegallib.php on line 30

Perhaps your script is caught in some loop and is eating resources...
Jul 16 '05 #2
In article <6L************ ***********@new s2.calgary.shaw .ca>,
Randell D. <yo************ **************@ yahoo.com> wrote:

"Paul" <Pa******@telus .com> wrote in message
news:87******* *************** ****@posting.go ogle.com...
Hi,

I'm using TikiWiki and was using its file upload feature, trying to
upload a 2MB file. I get this error:

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to
allocate 1677706 bytes) in
/var/html/www/tiki/lib/filegals/filegallib.php on line 30
I don't know if I can help - but someone might if you supply some code
around line 30 in your script
/var/html/www/tiki/lib/filegals/filegallib.php on line 30

Perhaps your script is caught in some loop and is eating resources...


I was getting this error recently (yesterday) when attempting to write an
empty string to a file using fwrite. The loop the write was in would
not terminate and the file being written to would keep growing.

Billy
Jul 16 '05 #3
Yes!! Changing the call to use md5_file seemed to do the trick.

Thanks very much!

Paul
-----
MeerKat <li************ ****@blueyonder .co.uk> wrote in message news:<UN******* **********@news-binary.blueyond er.co.uk>...
Paul wrote:
As suggested, here's some code snippet:

25 function insert_file($ga lleryId,$name,$ description,$fi lename, $data,
$size,$type ,$user,$path)
26 {
27 global $fgal_use_db, $fgal_use_dir;
28 $name = addslashes(stri p_tags($name));
29 if ($fgal_use_db == 'n') {
30 $checksum = md5(implode('', file($fgal_use_ dir.$path)));
31 } else {
32 $checksum = md5($data);
33 }

Line 30 seems harmless enough ... just 2 calls to standard PHP
functions...


on line 30, would:
$checksum = md5_file($fgal_ use_dir.$path);
do a better job? And similar for 32:
$checksum = md5_file($data) ;

Just a thought...
Ideas anyone?

Paul
--------
Bi**********@th rillseeker.net wrote in message news:<7t******* ****@kudzu.thri llseeker.net>.. .
In article <6L************ ***********@new s2.calgary.shaw .ca>,
Randell D. <yo************ **************@ yahoo.com> wrote:

"Paul" <Pa******@telus .com> wrote in message
news:87***** *************** ******@posting. google.com...

>Hi,
>
>I'm using TikiWiki and was using its file upload feature, trying to
>upload a 2MB file. I get this error:
>
>Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to
>allocate 1677706 bytes) in
>/var/html/www/tiki/lib/filegals/filegallib.php on line 30

I don't know if I can help - but someone might if you supply some code
around line 30 in your script
/var/html/www/tiki/lib/filegals/filegallib.php on line 30

Perhaps your script is caught in some loop and is eating resources...

I was getting this error recently (yesterday) when attempting to write an
empty string to a file using fwrite. The loop the write was in would
not terminate and the file being written to would keep growing.

Billy

Jul 17 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
4677
by: Phil Powell | last post by:
Actually the client is saying it sometimes happens and sometimes doesn't happen, and when they refresh their screen it clears itself (I assume the memory clears). Here is line 1135: $result = mysql_query($this->query, $this->dbcnx) or die(@include("$DOCUMENT_ROOT${devpath}errors/query_error.php")); It is found here in this class method:
0
711
by: Joe | last post by:
Hi, Now I am using Red Hat Linux 8.0 + squirrelmail as mail server. One day, I got the following warning: Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 35 bytes) in /usr/share/squirrelmail/functions/imap_messages.php on line 325
22
3450
by: xixi | last post by:
hi, we are using db2 udb v8.1 for windows, i have changed the buffer pool size to accommadate better performance, say size 200000, if i have multiple connection to the same database from application server, will each connection take the memory 800M (200000 x 4k = 800 M), so the memory took will be 800M times number of connections, or the...
3
6697
by: f.amann | last post by:
hi there! i save images in a mysql db and i wrote a script called getimage.php to display them. in my getimage.php i want to resize my images to display them as thumbnails but there always occurs the following error: <b>Fatal error</b>: Allowed memory size of 188743680 bytes exhausted (tried to allocate 240 bytes) in...
0
2284
by: prabhjeet | last post by:
I have DB2 v9 trial version installed on Windows 2003 Server with 1GB RAM. I am able to connect remotely through an ODBC data source to the database, but when I try to connect to that data source using my application, I get the following error in db2diag.log: 2007-02-20-10.41.37.812000+330 E1562H677 LEVEL: Warning (OS) PID : 3720 TID : 2000...
1
2962
by: Kimmo Laine | last post by:
Hi! We've encountered a strange problem concerning memory usage. In the previous install the maximum memory amount per page was limited to 8 MB and it was never reached. Now, after upgrading both hardware and software, running the same scripts that used to be fine with 8 MB hit the roof all the time. The maximum memory allocation was set to...
3
3008
by: spereira | last post by:
I am running XAMPP for Mac OS X 0.6.1 ! And since it did not have PDF libarires I downloaded ezpdf from the url:http://sourceforge.net/project/showfiles.php?group_id=45168&package_id=37830&release_id=147645 unzipped into a folder pdf_test And tried to run from the local http://localhost/pdf_test/readme.php gets the error Fatal error:...
7
26611
by: Jim Carlock | last post by:
I'm filling a really large array. Is there a way to get by this error message without editing the php.ini? The array needs to get built once, then looped through to fill a data- base, and it will get alot bigger than 1.5MB, I'm going to guess maybe at least 100MB. <snip> PHP Fatal error: Allowed memory size of 16777216 bytes exhausted...
5
24624
by: kumarmdb2 | last post by:
Hi guys, For last few days we are getting out of private memory error. We have a development environment. We tried to figure out the problem but we believe that it might be related to the OS (I am new to Windows so not sure). We are currently bouncing the instance to overcome this error. This generally happen at the end of business day...
0
7446
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
1
7469
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7808
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
1
5368
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5087
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3498
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
1935
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1057
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
757
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.