Instalation problem. - 2008/01/09 14:41
I am trying to test taskhopper and after installing the component and all modules I try to go to "Components" -> "Task hopper" in the administration.
I only get this error: Parse error: syntax error, unexpected '}' in /usr/local/apache2/htdocs/joomla/administrator/components/com_thopper/admin.thopper.php on line 158
System info attached:
and in clear text: PHP built On: Linux dbhisx 2.4.18-64GB-SMP #1 SMP Wed Mar 27 13:58:12 UTC 2002 i686 Database Version: 4.1.22 PHP Version: 5.2.5 Web Server: Apache/2.2.6 (Unix) PHP/5.2.5 WebServer to PHP interface: apache2handler Joomla! Version: Joomla! 1.0.13 Stable [ Sunglow ] 21 July 2007 16:00 UTC User Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11 Relevant PHP Settings: Joomla! Register Globals Emulation: OFF Register Globals: OFF Magic Quotes: ON Safe Mode: OFF File Uploads: ON Session auto start: OFF Session save path: /tmp Short Open Tags: OFF Output Buffering: OFF Open basedir: none Display Errors: ON XML enabled: Yes Zlib enabled: Yes Disabled Functions: none
In front end I also get strange errors: Notice: Constant _ADMIN_EMAIL already defined in /usr/local/apache2/htdocs/joomla/components/com_thopper/language/english.php on line 71
Notice: Constant _DI_STATUS already defined in /usr/local/apache2/htdocs/joomla/components/com_thopper/language/english.php on line 178
Notice: Constant _MAIN_ALL_ITEMS already defined in /usr/local/apache2/htdocs/joomla/components/com_thopper/language/english.php on line 324
Notice: Constant _BACK already defined in /usr/local/apache2/htdocs/joomla/components/com_thopper/language/english.php on line 525 You are Admin Notice: Undefined offset: 1 in /usr/local/apache2/htdocs/joomla/modules/mod_thopper.php on line 33
Notice: Undefined offset: 2 in /usr/local/apache2/htdocs/joomla/modules/mod_thopper.php on line 34
Notice: Undefined offset: 3 in /usr/local/apache2/htdocs/joomla/modules/mod_thopper.php on line 35
Notice: Undefined offset: 4 in /usr/local/apache2/htdocs/joomla/modules/mod_thopper.php on line 36
Notice: Undefined offset: 5 in /usr/local/apache2/htdocs/joomla/modules/mod_thopper.php on line 37
Notice: Undefined offset: 6 in /usr/local/apache2/htdocs/joomla/modules/mod_thopper.php on line 38
Any help would be appreciated.
Cristian
The administrator has disabled public write access.
kase
Admin
Re:Instalation problem. - 2008/01/14 16:32
we have had some tell us TH runs fine on php5, others send us large scary emails with monster length error messages. i am trying an install today on php5 and will document what happens.
we are working with great haste on Th 1.2 AND Th 2.0... which is our only excuse for not doing a better job of responding to posts here.
The administrator has disabled public write access.
cpenco
Fresh Boarder
Re:Instalation problem. - 2008/01/16 09:59
Any news...?
The administrator has disabled public write access.
rcordner
Fresh Boarder
Re:Instalation problem. - 2008/03/04 09:14
I am having a similar problem and have not found a work around yet.
My system Information is pasted below as an image:
My installation gives me the following text overflow above the TH Task menu 9any suggestions as to how to resolve this?:
Notice: Constant _ADMIN_EMAIL already defined in /var/www/html/tracker/components/com_thopper/language/english.php on line 71
Notice: Constant _DI_STATUS already defined in /var/www/html/tracker/components/com_thopper/language/english.php on line 178
Notice: Constant _MAIN_ALL_ITEMS already defined in /var/www/html/tracker/components/com_thopper/language/english.php on line 324
Notice: Constant _BACK already defined in /var/www/html/tracker/components/com_thopper/language/english.php on line 525 You are Admin Notice: Undefined offset: 1 in /var/www/html/tracker/modules/mod_thopper.php on line 33
Notice: Undefined offset: 2 in /var/www/html/tracker/modules/mod_thopper.php on line 34
Notice: Undefined offset: 3 in /var/www/html/tracker/modules/mod_thopper.php on line 35
Notice: Undefined offset: 4 in /var/www/html/tracker/modules/mod_thopper.php on line 36
Notice: Undefined offset: 5 in /var/www/html/tracker/modules/mod_thopper.php on line 37
Notice: Undefined offset: 6 in /var/www/html/tracker/modules/mod_thopper.php on line 38
The administrator has disabled public write access.
Cameron
Fresh Boarder
Re:Instalation problem. - 2008/06/27 04:54
I had the same issue, with loads of NOTICE: messages - but they are just that, notices. Task Hopper is still working Ok. The way to make them go away is by including the lines
Code:
// added to mask notices
error_reporting(E_ERROR | E_WARNING | E_PARSE);
to admin.config.inc.php and com_thopper/language/english.php
That won't fix the problems that are being noticed in the NOTICE messages, but since they aren't important it'll let you run the system without seeing them.
You can also turn off PHP error reporting in the php.ini for your server if you have access. See PHP Error reporting for what the bit of code above does.
The administrator has disabled public write access.