You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 2, 2019. It is now read-only.
I know this version is deprecated, but corporately we don't have a choice but to be on PHP 5.4.16 at this time (am on CentOS 7 using Docker container - Linux {containerid} 4.9.93-linuxkit-aufs #1 SMP Wed Jun 6 16:55:56 UTC 2018 x86_64). I still need the functionality to be able to create xls with multiple tabs or I wouldn't bother with an add-on. This is the issue that I am having...
PHPExcel.php has the change to where the PHPExcel class files are and it does find the autoloader ok as well in this configuration --
if (!defined('PHPEXCEL_ROOT')) {
define('PHPEXCEL_ROOT', dirname(FILE) . '/PHPExcel/');
require(PHPEXCEL_ROOT . 'Autoloader.php');
}
Autoloader.php has been changed to this (I've tried using PHPEXCEL_ROOT and various combinations with only slightly different can't find errors). But at least with this, it can find the PHPExcel_Shared_String and does the preload correctly--
$pClassFilePath = "/var/www/html/DaysRpt/classes/" .
str_replace('_', DIRECTORY_SEPARATOR, $pClassName) .
'.php';
No matter how I alter the PHPEXCEL_ROOT or the paths in both of these files, it either doesn't find the files from the autoloader or it doesn't find the class file specificed in the PHPExcel.php....here's the error from the error_log when using this combination....
PHP Fatal error: Class 'PHPExcel_Calculation' not found in /var/www/html/DaysRpt/classes/PHPExcel.php on line 367, referer: http://localhost:9080/DaysRpt/index.php
Again, I know I should upgrade my PHP and use PHPspreadsheet instead and I wish I could, but in the meantime I am hoping someone out there can still assist with this configuration setup. Thanks.
The text was updated successfully, but these errors were encountered:
I know this version is deprecated, but corporately we don't have a choice but to be on PHP 5.4.16 at this time (am on CentOS 7 using Docker container - Linux {containerid} 4.9.93-linuxkit-aufs #1 SMP Wed Jun 6 16:55:56 UTC 2018 x86_64). I still need the functionality to be able to create xls with multiple tabs or I wouldn't bother with an add-on. This is the issue that I am having...
PHPEXCEL_ROOT="/var/www/html/DaysRpt/classes/PHPExcel/"
PHPExcel.php has the change to where the PHPExcel class files are and it does find the autoloader ok as well in this configuration --
if (!defined('PHPEXCEL_ROOT')) {
define('PHPEXCEL_ROOT', dirname(FILE) . '/PHPExcel/');
require(PHPEXCEL_ROOT . 'Autoloader.php');
}
Autoloader.php has been changed to this (I've tried using PHPEXCEL_ROOT and various combinations with only slightly different can't find errors). But at least with this, it can find the PHPExcel_Shared_String and does the preload correctly--
$pClassFilePath = "/var/www/html/DaysRpt/classes/" .
str_replace('_', DIRECTORY_SEPARATOR, $pClassName) .
'.php';
No matter how I alter the PHPEXCEL_ROOT or the paths in both of these files, it either doesn't find the files from the autoloader or it doesn't find the class file specificed in the PHPExcel.php....here's the error from the error_log when using this combination....
PHP Fatal error: Class 'PHPExcel_Calculation' not found in /var/www/html/DaysRpt/classes/PHPExcel.php on line 367, referer: http://localhost:9080/DaysRpt/index.php
Again, I know I should upgrade my PHP and use PHPspreadsheet instead and I wish I could, but in the meantime I am hoping someone out there can still assist with this configuration setup. Thanks.
The text was updated successfully, but these errors were encountered: