View Single Post
  #19  
Old 11th February 2017, 17:45
jh0ng jh0ng is offline
Senior Member
 
Join Date: Jun 2012
Canada
Posts: 28
Thumbs up Perfect Job Bro....
Quote:
Originally Posted by firefly007 View Post
Hey there,

Here is an Alternative login page for tsse 5.6 and should work on most, with a little bit modifications.

Click the image to open in full size.

<!---Notes

1) Download login.php and global.php

2) Open your index.php found in your root and replace this

PHP Code:
  define ('THIS_SCRIPT''index.php');
  require_once 
'global.php';
  
define ('TS_BLOG_VERSION''1.4.1');
  
define ('IN_PLUGIN_SYSTEM'true);
  
gzip ();
  
dbconn (true);
  
maxsysop ();
  include_once 
INC_PATH '/functions_security.php';
  if (
$ref == 'yes')
  { 
With

PHP Code:
  define ('THIS_SCRIPT''index.php');
  require_once 
'global.php';
  
define ('TS_BLOG_VERSION''1.4.1');
  
define ('IN_PLUGIN_SYSTEM'true);
  
gzip ();
  
dbconn (true);
  
maxsysop ();
  if (
$MEMBERSONLY == 'yes')
{
    
loggedinorreturn();
    
parked();
}
  include_once 
INC_PATH '/functions_security.php';
  if (
$ref == 'yes')
  { 
This will return the person to login.php if not logged in.

3) Backup your global.php and login.php in your root and replace with the one's supplied here below.

Please come and support our site http://scene.speedseeker.co.za
Well done bro firefly007. I try this its perfect..
my source is TSSE6.5 by lateam
Reply With Quote