View Single Post
  #3  
Old 6th November 2019, 02:38
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default
1. Go to your /var/www/html/
2. Open takelogin.php with notepad++
3. Line 31 - 33
4. Replace header("Location: my.php");

Now override with the following code as discussed:
PHP Code:
$redirect true;
if(
$redirect === true){

echo 
"<div style='background-color: #353939;border: 1px solid #666;color:green;'><text>Successful Message</text></div>
<div style='padding: 0.1em;'></div>
<text>Thank You!, Accessing Account 
</text>
<script>
setTimeout(function () { window.location.href= 'my.php'; // the redirect goes here
},5000); // 5 seconds
</script>"
;

There You Go M8
Soz for late response!
Reply With Quote