0

I am trying to open an excel file on my hard drive and getting.

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 1032 
bytes) in C:\WEB\Classes\PHPExcel\Cell.php on line 1228
codemania
  • 1,098
  • 1
  • 9
  • 26
jimneely
  • 39
  • 8

1 Answers1

0

PHP allows 128 MB memory to use.

try this

<?php ini_set('memory_limit', '-1'); ?>
Bender
  • 705
  • 11
  • 25