Top list problem

Our support will answer all your general questions here.

Moderator: Rock

Post Reply
dehash
Posts: 8
Joined: Mon May 26, 2014 9:52 pm

Top list problem

Post by dehash »

Hi there. I have 3 te3 scripts. Two located on one server display top list the way it should be. Third te3 located on different server and for some reason wouldn't do what it supposed to do. All 3 top list are look a like.
Here is what I am saving for this 3rd te3 on another server

Code: Select all

<table width="1100" cellspacing="1" cellpadding="1">
  <tr>
    <td><a href="/te3/out.php?id=##domain:1##" class="style1">1.##name:1##</a></td>
    <td><a href="/te3/out.php?id=##domain:11##" class="style1">11.##name:11##</a></td>
    <td><a href="/te3/out.php?id=##domain:21##" class="style1">21.##name:21##</a></td>
    <td><a href="/te3/out.php?id=##domain:31##" class="style1">31.##name:31##</a></td>
  </tr>
</table>
Here is how it get saved in toplist.html

Code: Select all

<table width=\"1100\" cellspacing=\"1\" cellpadding=\"1\">
  <tr>
    <td><a href=\"/te3/out.php?id=##domain:1##\" class=\"style1\">1.##name:1##</a></td>
    <td><a href=\"/te3/out.php?id=##domain:11##\" class=\"style1\">11.##name:11##</a></td>
    <td><a href=\"/te3/out.php?id=##domain:21##\" class=\"style1\">21.##name:21##</a></td>
    <td><a href=\"/te3/out.php?id=##domain:31##\" class=\"style1\">31.##name:31##</a></td>
  </tr>


</table>
All this \\\\\\\\
Server settings? Something needs to be turned on?

Thank you.
texpert
Site Admin
Posts: 719
Joined: Sat Mar 14, 2009 5:54 pm

Re: Top list problem

Post by texpert »

Hello, you need to disable gpc magic quotes, try to add this line to te3/.htaccess
php_flag magic_quotes_gpc off

and try to generate the toplist.


Best regards,
Alex
dehash
Posts: 8
Joined: Mon May 26, 2014 9:52 pm

Re: Top list problem

Post by dehash »

It didn't work.
texpert
Site Admin
Posts: 719
Joined: Sat Mar 14, 2009 5:54 pm

Re: Top list problem

Post by texpert »

Can you ask your host to disable it?


best regards,
Alex
Post Reply