Brian Dunning's Error Code Reference

Lasso Error -9995

Out of memory

 

Comments

Matt   Matt
May 11, 2009
I just threw this error when a user tried to upload a 2GB as part of an array of files in file_uploads.

I first read the file out of /var/tmp:
var: 'file_content' = (file_read: ($file->get: loopcount)->find: 'path');

Then I use the variable $file_content to write to the permanent location:
File_Write: $expt_upload_dir+$expt+'/'+$file_dbname, $file_content, -FileOverwrite;

Looks like I'll be doing some optimization to get around this.
 
Christo   Christo, c3
Aug 28, 2006
I have encounterd this error trying to work through 65000+ records. It can not be Server Memory as I have 4 GIG ram memory in th machine. The records are stored in a MySQL DB.