66.gif

Search (advanced search)
Use this Search form before posting, asking or make a new thread.
Tips: Use Quotation mark to search words (eg. "How To Make Money Online")

03-01-2017, 02:50 AM
Post: #1
[Get] argouquiz Nametests clone script [needs fix]
zip has usual pw

i got from another place no instructions came with it

i got the script installed you need too manually import the database and change database details in database.php and base url in config.php

the isue is you cant log on to the admin panel i have changed log in details in db but it says "Robot verification failed, please try again" i asume i have to change google captcha details in code somewhere but i haven't worked out how to so any help would be appreciated! other than that i believe script is nulled
login url your.com/index.php/logadmin
salespage
Code:
argouquiz.com

GET
Code:
https://mega.nz/#!JQ0jySxR!n-sxl_s-l1w_FcZWmbtOJL6QupJC2jPcKvQcqgtGyRE
03-01-2017, 03:52 PM
Post: #2
RE: [Get] argouquiz Nametests clone script [needs fix]
How can this script be installed?
03-01-2017, 05:55 PM
Post: #3
RE: [Get] argouquiz Nametests clone script [needs fix]
Are there credentials for login?
03-01-2017, 06:24 PM
Post: #4
RE: [Get] argouquiz Nametests clone script [needs fix]
Yes they are in the database and I have also added my own at database but still can't log in as I said before I think an alteration has to be made to the login script which is why I asked for help
03-01-2017, 07:55 PM
Post: #5
RE: [Get] argouquiz Nametests clone script [needs fix]
download link dosen't work , can u gys please reupload it ? and i'll search for asolution with u
19.gif
03-01-2017, 08:14 PM
Post: #6
RE: [Get] argouquiz Nametests clone script [needs fix]
Link still working my end will mirror when I get to my laptop
03-01-2017, 09:33 PM
Post: #7
RE: [Get] argouquiz Nametests clone script [needs fix]
the script has salted hash or some password protection this is in application controlers logadmin.php someone needs to change this section
$password = $pos->password;

$cryptKey = 'qJB0rGtIn5UB452jkhk65KMV61xG03efyCp';

$Decoded = rtrim( mcrypt_decrypt( MCRYPT_RIJNDAEL_256, md5( $cryptKey ), base64_decode( $password ), MCRYPT_MODE_CBC, md5( md5( $cryptKey ) ) ), "\0");
$hash = password_hash($pass, PASSWORD_DEFAULT);
03-02-2017, 06:52 PM
Post: #8
RE: [Get] argouquiz Nametests clone script [needs fix]
a oki dose any one here have the skill set to do it ?
03-03-2017, 12:52 AM
Post: #9
RE: [Get] argouquiz Nametests clone script [needs fix]
Seems like something that was coded years ago. I wouldn't recommend using this for a production site.
03-03-2017, 03:50 AM
Post: #10
RE: [Get] argouquiz Nametests clone script [needs fix]
Hi, solution for reset pass to "password":
Paste file named as pass.php in to www folder with this content:
PHP Code:
<?php
$pass 
'password';
        
$cryptKey  'qJB0rGtIn5UB452jkhk65KMV61xG03efyCp';
    
$qEncoded      base64_encodemcrypt_encryptMCRYPT_RIJNDAEL_256md5$cryptKey ), $passMCRYPT_MODE_CBCmd5md5$cryptKey ) ) ) );
    
    echo 
$qEncoded  
Run once
copy/paste result in to db (phpMyadmin e.t.c) table name is "utilisateur".
Gl
21.gif




34.gif