View Single Post
  #25  
Old 13th May 2008, 20:14
GaBoNtZ's Avatar
GaBoNtZ GaBoNtZ is offline
Senior Member
 
Join Date: Mar 2008
P2P
Posts: 113
Default Re: TS SE v4.3 Nulled
Quote:
Originally Posted by UzAkLArDaN
Quote:
Originally Posted by gabontz
weird..... it work's perfect on windows...
maybe some permission problem, but i followed the fresh install tutorial.
i'l check back tomorow on linux server.
To install this script your server, host etc. should support ioncube loader, GD2, Mcrypt & CuRL

To check if they are installed on your website download this file and upload them to your website like this:

Code:
http://www.yoursite.com/check.php
http://www.yoursite.com/check2.php
By the way try to disable your antivirus software before installing ts special edition v4.3
That could be the reason.

[attachment=0:5zukjcvo]Host_Check.rar[/attachment:5zukjcvo]
ok, curl was not installed. now i installed curl, is ok but i get same error

Code:
Script Error! (SE-I). TS SE is not installed correctly.
i also follwed this: http://www.bvlist.com/viewtopic.php?f=6 ... t=10#p1460

[hr:5zukjcvo]
Later Edit:

Solved, lol, that trick did not work for me, but the following solved the problem ;)

Code:
    function check_ts_install ()
  {
    global $rootpath;
    global $usergroups;
    if (is_mod ($usergroups))
    {
      $ts_key = @file_get_contents ($rootpath . 'cache/systemcache.dat');
      $CU = (!empty ($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : (!empty ($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : ''));
      $CU = str_replace (array ('http://www.', 'http://', 'www.'), '', $CU);
      $orj_key = md5 ('' . 'ts_install|' . $CU . '|done_!4_3!_');
      //if ((empty ($ts_key) OR $ts_key != $orj_key))
      //{
       // define ('errorid', 8);
       // include_once $rootpath . 'ts_error.php';
       // exit ();
      //}
    }

  }
practically i disabled the if function
Reply With Quote
The Following User Says Thank You to GaBoNtZ For This Useful Post:
kusanagi (2nd July 2009)