some Minor Update have to be done to get this thing to php7:
reader.php
L31:
old: require_once 'Spreadsheet/Excel/Reader/OLERead.php';
new: require_once 'oleread.inc';
L259:
old: function Spreadsheet_Excel_Reader()
new: function __construct()
L261:
old: $this->_ole =& new OLERead();
new: $this->_ole = new OLERead();
;)
Hi. I have a tool using this code and the host updated PHP to version 7.2, from 5.6. The tool is no longer working, of course. I've modified following the comment above but I get an error on Line 31 saying this:
Fatal error: require_once(): Failed opening required 'oleread.inc' (include_path='.:/usr/lib/php7.2') in /homepages/41/d487880956/htdocs/slotcarcorner/php2/reader.php on line 31
I have no experience with code and I no longer have access to the guy who put this together for me. Can someone help me? Thank you.