LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   PHP Notice: Trying to get property of non-object in /var/www/localhost/htdocs/intrane (https://www.linuxquestions.org/questions/linux-software-2/php-notice-trying-to-get-property-of-non-object-in-var-www-localhost-htdocs-intrane-917519/)

prayag_pjs 12-07-2011 02:10 AM

PHP Notice: Trying to get property of non-object in /var/www/localhost/htdocs/intrane
 
On Gentoo I have installed Owl Knowledgebase- owl-1.01 stable version. Followed all the instructions properly as mentioned in README and installation pdf guide.

After installation not getting loging page and i get this error :

[error] [client 141.14.40.46] PHP Notice: Trying to get property of non-object in /var/www/localhost/htdocs/intranet/index.php on line 365

And line no 365 is :

343 function bcheckLibExists ($filename, $sSubMessage = "")
344 {
345 global $default, $owl_lang;
346 if (file_exists("$filename"))
347 {
348 if (is_readable("$filename"))
349 {
350 return true;
351 }
352 else
353 {
354 if (empty($sSubMessage))
355 {
356 $sSubMessage = $owl_lang->debug_webserver_no_access;
357 }
358 die("<br /><font size=\"4\"><center>$sSubMessage</center></font>");
359 }
360 }
361 else
362 {
363 if (empty($sSubMessage))
364 {
365 $sSubMessage = $owl_lang->debug_file_not_exist;
366 }
367 die("<br /><font size=\"4\"><center>$sSubMessage</center></font>");
368 }
369 }
Follwed this link for installtion :
http://downloads.sourceforge.net/pro...e_mirror=space
Can some one please let me know where can be the problem?


All times are GMT -5. The time now is 04:49 PM.