Did you get the error from your PHP/Excel library?
Warning: require_once(Spreadsheet/Excel/Reader/OLERead.php): failed to open stream: No such file or directory in ...??
Looks like you have downloaded the opensource phpexcelreader library and didn't edit the reader.php file. Just follow the below two steps, and it will get out from the error.
1) Open the reader.php file from the Excel folder. Remove the below code from the top of the line.
require_once 'Spreadsheet/Excel/Reader/OLERead.php';
2) And add the below code after remove that.
require_once 'Excel/oleread.inc';
Now try to run your code. It will work now.
Warning: require_once(Spreadsheet/Excel/Reader/OLERead.php): failed to open stream: No such file or directory in ...??
Looks like you have downloaded the opensource phpexcelreader library and didn't edit the reader.php file. Just follow the below two steps, and it will get out from the error.
1) Open the reader.php file from the Excel folder. Remove the below code from the top of the line.
require_once 'Spreadsheet/Excel/Reader/OLERead.php';
2) And add the below code after remove that.
require_once 'Excel/oleread.inc';
Now try to run your code. It will work now.
Comments
Thanks a lot !
http://www.freelancerin.com/
FreelancerIn.com
Fatal error: Allowed memory size of 2147483648 bytes exhausted (tried to allocate 32 bytes)
error, when script is executing on server.