Jump to content

Narcis

Membru
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • Sex
    Masculin
  • In-game Name
    Narcis
  • Level of knowledge
    Experimentat

Recent Profile Visitors

366 profile views

Narcis's Achievements

Rookie

Rookie (2/14)

  • Dedicated Rare
  • First Post
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. Salut am testat gm , are bug la dealership si comanda /v , prima masina cand o cumperi e ok , dar cand cumperi a 2 a masina , a 3a masina .. etc nu le mai spawneaza , le arata la /v dar nu si unde se pune CP
  2. https://www.mediafire.com/file/q528guxj7t1b75m/seny.gm.rar/file Poftim.
  3. unde gasesc un panel compatibil cu Rpg Thug V1.9 ??
  4. Am rezolvat multumesc la toti .. panel acela avea sters ceva din login.p.php si nu are rost
  5. Panel e in regula merge tot pe el , doar login nu merge ramane blocat , daca scriu user si pass gresit imi apare "Invalid username or password.Please try again."
  6. Salut am o problema la panel mai exact la login scriu user si pass si nu ma logheaza pe panel. am adaugat niste poze din panel cu problema site www.rzc.ro/panel cum as putea sa rezolv problema? asta este codul de la login.p.php <?php if(!defined('rpg')) die('Nope.'); ?> <title>Login - Blumix</title> <body class="login_wrapper"> <div class="form-box login_box" id="login-box"> <div class="header bg-red" style="font-size: 1.3em;">Welcome to Blumix! <br> Please type your account below.</div> <form action="" method="post"> <fieldset> <div class="body bg-gray"> <?php $count[0] = 0; $count[1] = 0; if(isset($_SESSION['user'])) header('Location: ' . $_PAGE_URL . 'profile/'.$_SESSION['user'].''); if(isset($_POST['submit'])) { if(!$_POST['username_'] || !$_POST['password_']) { echo '<div class="alert alert-danger alert-dissmisible" style="margin-left: 0px">Invalid username or password.<br>Please try again.</div>'; } else { $q = Config::$g_con->prepare('SELECT * FROM `users` WHERE `name` = ? AND `password` = ?'); $q->execute(array($_POST['username_'],hash( 'md5', $_POST['password_']))); $count = 0; if($q->rowCount()) { $row = $q->fetch(PDO::FETCH_OBJ); $d = Config::$g_con->prepare('SELECT * FROM `suspended` WHERE `user` = ?'); $d->execute(array($row->id)); while($rowd = $d->fetch(PDO::FETCH_OBJ)) { if((strtotime($rowd->stime) - strtotime(date('Y-m-d'))) > 0) { $count++; echo '<div class="alert alert-danger alert-dissmisible" style="margin-left: 0px">This account is suspended until <b>'.$rowd->stime.'</b> by reason: <b>'.$rowd->reason.'</b>.</div>'; } } if(!$q->rowCount() || $count == 0) { $_SESSION['user'] = $row->id; echo '<div class="alert alert-success" style="margin-left: 0px">You have successfully logged in. You will be redirected in <b>3</b> seconds.</div>'; echo '<meta http-equiv="refresh" content=" 3;' . Config::$_PAGE_URL . 'profile/'.$_SESSION['user'].'">'; } } else echo '<div class="alert alert-danger alert-dissmisible" style="margin-left: 0px">Invalid username or password.<br>Please try again.</div>'; } } ?> <div class="form-group"> <input name="username_" type="text" class="form-control" placeholder="Username"> </div> <div class="form-group"> <input name="password_" type="password" class="form-control" placeholder="Password"> </div> </div> <div class="footer"> <button type="submit" name="submit" class="btn bg-red btn-block">Log in</button> </div> </fieldset> </form> </div> </body>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.