Thread: Email confirm
View Single Post
  #1  
Old 14th November 2019, 13:11
Napon Napon is offline
Banned
 
Join Date: Feb 2016
P2P
Posts: 522
Thumbs down Email confirm
ive just coder a core to to PHP7 7.0.33 for testing this what im getting on Email confirm &00


we have users on the site me and bot so its 2

so it should show on email &3secret so on for every user 4secret 5secret 6secret 7secret 8secret 9secret so user id. that calls on ok.php


this part in bittorrent that works and let me in



Code:
    $id = isset($_COOKIE['uid']) ? intval($_COOKIE['uid']) : 0;

    if (!$id || strlen($_COOKIE['pass']) != 32)

this part in confirm


Code:
$id  = isset($_GET['id']) ? intval($_GET['id']) : 0;
$md5 = isset($_GET['secret']) ? $_GET['secret'] : '';

this in ok.php


Code:
$type = isset($_GET['type']) ? $_GET['type'] : '';

and still callong on 0 id ERROR PAGE SAYING sorry pal not found
https://xxxxxxxxx/confirm.php?id=0&s...f58855d635f1cb

Bump: fixed

Bump: fixed

Last edited by Napon; 14th November 2019 at 15:12.
Reply With Quote