the excel file is really just an html table, excel opens it no problem.
per content of the attached file observed the following error. >
<b>Fatal error</b>: Call to undefined function dateformat() in <b>/opt/Inprotect/html/search.php</b> on line <b>479</b><br />
per line 479 ( we call dateformat( a php function ) depending on the version of php running this may not be included and need additional php rpm's insttalled not sure offhand. Would like to hear what OS / PHP version you are running.
I have been running my instances on Zend Server 5.3 CE. There are a few hacks to get the pear modules installed but, it is great for delelopment.
In this case you are missing part of php, A work around is to edit the file and
excel file from inprotext
FYI,
the excel file is really just an html table, excel opens it no problem.
per content of the attached file observed the following error. >
<b>Fatal error</b>: Call to undefined function dateformat() in <b>/opt/Inprotect/html/search.php</b> on line <b>479</b><br />
per line 479 ( we call dateformat( a php function ) depending on the version of php running this may not be included and need additional php rpm's insttalled not sure offhand. Would like to hear what OS / PHP version you are running.
I have been running my instances on Zend Server 5.3 CE. There are a few hacks to get the pear modules installed but, it is great for delelopment.
In this case you are missing part of php, A work around is to edit the file and
replace
478 if($var == "end_date" || $var == "start_date") {
479 echo dateformat($$var);
480 } else {
481 echo $$var;
482 }
with
478 echo $$var;
I will tell you date format is use through-out the program.