|
You might run into a limit to where PHP can read large files if you use fopen() and fread().
I originally couldn't import a MySQL file that was over 16MB.
Splitting the files fixed that, until PHP wasn't able to split a file over 70MB, because it wasn't capable in opening it. It was exceeding the memory limit.
So I've had to forgo the at_bats file since using OOTP, as it can grow to that size very fast.
If you have a different solution, let me know.
|