The error message states that function tnts() exists in default/settings.php and includes/database.inc
Check
- If the two tnts() are identical, delete one of them
- If the two tnts() functions are identical and needed in both scripts then put tnts() in its own file - tnts.inc.php and use either require_once 'tnts.inc.php' or include_once 'tnts.inc.php' in both settings.php and database.inc
- IF the two tnts() are NOT identical then rename one of them.





by: effxPosted on 2009-10-13 at 01:26:18ID: 25557913
You cannot declare functions twice, you need to only declare the one you want.