Still getting strict errors with Tree module

Phoca Download - download manager
codered
Phoca Newbie
Phoca Newbie
Posts: 1
Joined: 06 Nov 2013, 17:25

Still getting strict errors with Tree module

Post by codered »

I've been using Phoca Download for a few months on a new site and it's great. However, when I installed the Tree Module I get a load of strict errors:

Strict Standards: Only variables should be assigned by reference in /homepages/33/d485874095/htdocs/site/modules/mod_phocadownload_tree/mod_phocadownload_tree.php on line 26

etc etc

Whatever I try doesn't work - I've turned error reporting off in Joomla, that makes no difference at all. I've tried changing php.ini - no change. I've tried changing .htaccess, that breaks the whole site.

Has anyone else had this problem?
gray
Phoca Member
Phoca Member
Posts: 39
Joined: 03 Jul 2008, 13:30

Re: Still getting strict errors with Tree module

Post by gray »

I've had similar problems. Try setting in php.ini

Code: Select all

error_reporting = E_ALL & ~E_STRICT
or

Code: Select all

error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
If it doesn't help, search in your site's php files for "error_reporting" string. In my case it appeared that error reporting level was hardcoded in template's index.php and any options I was trying with php.ini didn't help until i found and removed error_reporting statement from index.php.
Post Reply