This topic is locked

Issues with PHPR 5.1 Beta

3/3/2009 7:11:41 AM
PHPRunner General questions
hichem author

Menus work great and still trying to figure out a way to add menus to admin area
Existing Reports built with PHPR 5.0 do not work and show the below error:

Fatal error: Call to undefined function strlower() in C:\webserver\htdocs\report\include\CME_Activity_Audit_Report_reportlib.php on line 222

Here's the function it is having problems with strlower

[codebox] function getKey($data)

{

if($this->_recordBasedRequest)

{

if($this->_interval > 0)

{

if($this->_caseSensitive)

return substr($data[$this->_name], 0, $this->_interval);

else

return strtolower(substr($data[$this->_name], 0, $this->_interval));

}

else

{

if($this->_caseSensitive)

return $data[$this->_name];

else

return strlower($data[$this->_name]);

}

}

else

{

if($this->_caseSensitive)

return $data[$this->alias()];

else

return strtolower($data[$this->alias()]);

}

}

[/codebox]
My other report just shows the error message: Unknown type: `unknown`
I will post anything else I find <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=11083&image=1&table=forumtopics' class='bbc_emoticon' alt=':)' />
Thanks

J
Jane 3/3/2009

Hi,
thank you for pointing me to this bug.

We'll fix it in the next update.
Regarding the second error.

Please publish your project on Demo Account and open a ticket at http://support.xlinesoft.com sending a URL to your pages along with instructions on reproducing this error.