View Single Post
  #10  
Old 12-07-2012, 04:16 PM
powerchaos's Avatar
powerchaos powerchaos is offline
WebMaster
 
Join Date: May 2008
Posts: 130
Gender: Male
Credits: 10,122
powerchaos
Send a message via AIM to powerchaos Send a message via MSN to powerchaos
Default

if it is a fresh install , can you try somehting for me to debug it a bit more

can you install version 1.3.1 complete and see if the tabs give that problem

if yes , can i take then a look at your php info file to see if some settings are enabled that should be disabled ( like magic quotes )

if that solves the error , then we know it is a bug in the version 1.3.2 script and probaly not even in tabs.php but a possibility that it is in the js script file

php only returns the error code it founds in the php script , it says line 20 and that is the end of the script (unexpted end ... sounds normal that it is on end of the script )

that part also means that there is a closing tag missing , so it loops true all code and never close the final code and provide that error

also you say it is only on the profile page
so it is also possible that the profile page is generating that error and not the tabs.php , but the tabs.php does not get closed
it depends when the tabs.php get called ( start or end of the website )

if it get called after the profile script get called , then it means that the profile script does not close a tag

anyway , before we start to search we need to be sure if it is only on 1.3.2 or that it is also before and not related to php that open/close tags with there rewrite rules/safety rules ( like magic_quotes and stuff )

to make a php info file use the folllowing information

PHP Code:
<?php
phpinfo
();
?>
also remove that file after we are done , as it can be a security risk to leave those information public (it says what mods are installed and not and hackers use that to see what security bugs are left :P )

Greetings From PowerChaos
Reply With Quote