This is a discussion on php4 on WinXP vs. Linux -- memory problems within the PHP Language forums, part of the PHP Programming Forums category; Hi. I'm developing a php 4.3.10 script, extracting data from webpages. Using string functions (strpos, substr) alot, ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi.
I'm developing a php 4.3.10 script, extracting data from webpages. Using string functions (strpos, substr) alot, some arrays (both static & dynamic) also data is going to a MySQL 5 DB. Am using mysql_free_result() function to free memory, but I'm still having memory problems -- keep getting the memory exhausted error. I'm developing this on Windows XP, but the live site is on Linux. Would this problem be a glitch in my code, in php itself, or a server problem?? any thoughts/suggestions? Thanks in advance. Chris |
|
|||
|
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1 cmills28@yahoo.com wrote: > I'm developing a php 4.3.10 script, extracting data from webpages. > Using string functions (strpos, substr) alot, some arrays (both static > & dynamic) also data is going to a MySQL 5 DB. Am using > mysql_free_result() function to free memory, but I'm still having > memory problems -- keep getting the memory exhausted error. I'm > developing this on Windows XP, but the live site is on Linux. Would > this problem be a glitch in my code, in php itself, or a server > problem?? > > any thoughts/suggestions? How many rows are there (in comparison) in the development and production databaes? Are you loading all that data into memory anywhere in your code? Are you unset()ting the variables holding the result data? - -- - ---------------------------------- Iván Sánchez Ortega -i-punto-sanchez--arroba-mirame-punto-net "People demand freedom of speech to make up for the freedom of thought which they avoid." - Soren Aabye Kierkegaard (1813-1855) -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQFEqlmW3jcQ2mg3Pc8RAgjuAJ4vCk2KW/EWaRuG7GMy3lWXdeVBIQCeK4Qb hjHizik9aCytu4m9JDvwNsI= =xtsI -----END PGP SIGNATURE----- |
|
|||
|
Is this memory exhausted error from PHP or from the MySQL server.
cmills28@yahoo.com wrote: > Hi. > > I'm developing a php 4.3.10 script, extracting data from webpages. > Using string functions (strpos, substr) alot, some arrays (both static > & dynamic) also data is going to a MySQL 5 DB. Am using > mysql_free_result() function to free memory, but I'm still having > memory problems -- keep getting the memory exhausted error. I'm > developing this on Windows XP, but the live site is on Linux. Would > this problem be a glitch in my code, in php itself, or a server > problem?? > > any thoughts/suggestions? > > Thanks in advance. > Chris > |