I installed Joomla 1.7 on XAMPP 1.7.4, but it's not working. It's showing me a bunch of messages like:

Strict Standards: Static function JDatabase::test() should not be abstract in C:\xampp\htdocs\joomla\libraries\joomla\… on line 350

Strict Standards: Accessing static property JCache::$_handler as non static in C:\xampp\htdocs\joomla\libraries\joomla\… on line 394

What can I do to remove those messages?

link|improve this question
Uninstall and install again. Read the messages during install. – mailq Aug 8 '11 at 11:01
feedback

1 Answer

up vote 0 down vote accepted

Put this right after define( '_JEXEC', 1 ); on index.php:

error_reporting( E_ERROR | E_PARSE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING );

You may need to do that on your administrator folder too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.