Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. keesvanbreukelen

    mysql_query() memory problem

    I have found that the difference here was the result of the memory_get_usage() function. On the server where it reported a high usage I managed to clock up about 400Mb before the script timed out. The maximum memory on this server is 64Mb. I have tried using memory_get_usage(true) which makes it...
  2. keesvanbreukelen

    mysql_query() memory problem

    When I run multiple mysql_query() commands over quite large tables, the memory usage goes up dramatically. The mysql_free_result() command does not seem to have any impact. I test using echo memory_get_usage() . '<br />'; $rs = mysql_query($sql1); echo memory_get_usage() . '<br />'...
  3. keesvanbreukelen

    php mysqldump problem

    Hi I use mysqldump from php to backup my mysql database. The code to do the backup is: exec('c:\wamp\bin\mysql\mysql5.1.33\bin/mysqldump -hlocalhost -uroot wbs_ezitime > c:\temp\test.sql'); When I run my php file, the backup file is produced correctly, but the script then hangs and never...
  4. keesvanbreukelen

    Javascript firstChild problem in Firefox

    Thank you both for these solutions, particularly for helping me understand why it goes wrong! I have used the first solution as it fitted into my actual code (not the sample above) with minimal change. Kees
  5. keesvanbreukelen

    Javascript firstChild problem in Firefox

    I have great difficulty with firstChild method and the childNodes collection in Firefox, the following sample code works well in IE but not at all in Firefox, when I check the Javascript bible it looks like it is perfectly standard DOM handling. Sample: <html> <head> </head> <body> <center>...
  6. keesvanbreukelen

    Export button doesn't work on Citrix Server

    I have now learned that under citrix the windows directory and the windows system directory for each network user are redirected to personal folders under the documents and settings folder on the server. It appears that the export dll's have to be in a folder called Crystal which has to be a...
  7. keesvanbreukelen

    Export button doesn't work

    The following files should be in the Crystal Folder which should be a subfolder in you windows folder (winnt) and there should be registry entries for them. CRXLAT32.DLL, U2DDISK.DLL, U2DMAPI.DLL, U2FCR.DLL, U2FDIF.DLL, U2FHTML.DLL, U2FREC.DLL, U2FRTF.DLL, U2FSEPV.DLL, U2FTEXT.DLL, U2FWKS.DLL...
  8. keesvanbreukelen

    Export button doesn't work on Citrix Server

    Hi, I hope by now you have resolved your problem with Export button. I have the same problem and found that it was caused by some redirection of folders done by Citrix. Our resident experts have 'temporarily' removed this redirection for me so the users can export again. I have been told however...

Part and Inventory Search

Back
Top