Hi Mike,
It seems the Excel reader you’re using is just quite old ??
I managed to fix it:
diff --git a/wp-content/plugins/rsvp/Excel/reader.php b/wp-content/plugins/rsvp/Excel/reader.php
index d0ec644..125463c 100644
--- a/wp-content/plugins/rsvp/Excel/reader.php
+++ b/wp-content/plugins/rsvp/Excel/reader.php
@@ -257,9 +257,9 @@ class Spreadsheet_Excel_Reader
*
* Some basic initialisation
*/
- function Spreadsheet_Excel_Reader()
+ function __construct()
{
- $this->_ole =& new OLERead();
+ $this->_ole = new OLERead();
$this->setUTFEncoder('iconv');
}
But you might want to update it entirely.
Thanks!
Arjo