Possible Duplicate:
PHP change the maximum upload file size
I use a free Web hosting service (Apache/2.2.17) on UNIX, I think . I use a php script to append data to some file in my home dir, with such code:
$my_handle = fopen($my_file_name, 'ab');
$bytes = fwrite($my_handle, $my_data);
fclose($my_handle);
When the file size reaches 128 MB, the script terminates, but no error is produced. So, I have to save data in 128 MB parts. Is there any way that I can change this "128 MB file size limit"?
Thanks!