kimfro (User)

Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Karma: 0  
Menu
by kimfro 3 Months, 2 Weeks ago
I am trying to use colorfusion. Right now having 1. issue which i cant find solution for. Hope help is here.

I get "Notice: Trying to get property of non-object in C:\Inetpub\wwwroot\SEPI\templates\colorfusion\includes\tjmenu.php on line 44"

And the top menu ends up somewhere in the middle of the site..

Any suggestions ?

Regards
Kim
The administrator has disabled public write access. | Report to moderator    
skashi (Admin)

Admin
Posts: 20
graphgraph
User Online Now Click here to see the profile of this user
Karma: 0  
Re:Menu
by skashi 3 Months, 2 Weeks ago
One thing to be aware of is your server error reporting level: A notice is a minor warning intended for coders / developers - and/or useful during debugging. Your servers PHP error reporting is set too high. It is a setting in your php.ini file:

Changing in the php.ini:
Code:

error_reporting = E_ALL


to:
Code:

error_reporting = E_ALL & ~E_NOTICE



should remove this notice message, notice messages are only needed for debugging in development, and can safely be turned off on live sites.
The administrator has disabled public write access. | Report to moderator    
kimfro (User)

Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Karma: 0  
Re:Menu
by kimfro 3 Months, 2 Weeks ago
Thank u for the fast reply.. that did the trick..

Regards Kim
The administrator has disabled public write access. | Report to moderator    
Lumo (Admin)

Admin
Posts: 76
graph
User Online Now Click here to see the profile of this user
Karma: 3  
Re:Menu
by Lumo 3 Months, 2 Weeks ago
You can also put the following in your code (do this as a last resort):

Code:

<?php
error_reporting(0);
?>

Last Edit: 2008/08/19 03:16 By Lumo.
The administrator has disabled public write access. | Report to moderator    
       
© 2008-2020 Theme Joomla. 2Checkout.com, Inc. is an authorized retailer of Theme Joomla.