• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[Release] WebEngine 1.0.5 PL1

Skilled Illusionist
Joined
Jul 13, 2012
Messages
334
Reaction score
7
mine is working but now news :/
 
Skilled Illusionist
Joined
Jul 13, 2012
Messages
334
Reaction score
7
i follow the step

Quote Originally Posted by 4FUNer View Post
1. Download latest xampp if you are windows user.

2. Enable ODBC ($config['SQL_PDO_DRIVER'] = 3;)

3. Enable extension=php_pdo_odbc.dll by removing ";" at php/php.ini

4. Restart WebServer.

5. Configure config.php (if you use MSSSQL Express use for host NAME\SQLEXPRESS ex ROOTHOME\SQLEXPRESS)
else you can use host ip
 
Experienced Elementalist
Joined
Jun 1, 2012
Messages
205
Reaction score
34
i follow the step

Quote Originally Posted by 4FUNer View Post
1. Download latest xampp if you are windows user.

2. Enable ODBC ($config['SQL_PDO_DRIVER'] = 3;)

3. Enable extension=php_pdo_odbc.dll by removing ";" at php/php.ini

4. Restart WebServer.

5. Configure config.php (if you use MSSSQL Express use for host NAME\SQLEXPRESS ex ROOTHOME\SQLEXPRESS)
else you can use host ip

As you can see above i said there that i was followed the instruction here, you download new xampp with other version?
 
Custom Title Activated
Loyal Member
Joined
Dec 5, 2009
Messages
2,657
Reaction score
1,178
pleas help admincp show that page not found (((

Includes/config.php

Add your account there & save
PHP:
// USERS WITH ADMINCP ACCESS
$config['admincp_users_access'] = array(
	'Your_Account_Name',
);

Login your account & you should see
hkyRBWv - [Release] WebEngine 1.0.5 PL1 - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Sep 2, 2014
Messages
23
Reaction score
0
nothing he say that username or password incorrect :(



[SQL 42S22] [odbc 207] > [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name 'confirmed'. (SQLExecute[207] at ext\pdo_odbc\odbc_stmt.c:254)
 
Custom Title Activated
Loyal Member
Joined
Dec 5, 2009
Messages
2,657
Reaction score
1,178
add confirmed column at memb_info table :)


Use this query

alter Table MEMB_INFO add confirmed int NULL
 
Custom Title Activated
Loyal Member
Joined
Dec 5, 2009
Messages
2,657
Reaction score
1,178
Yes this website support MD5.

If you sure that you use md5 ... then...

nothing :/

Are you using localhost to test this website? if so there is possiblity that ip check doesn't let you in

You can remove or recode check for ip (but for server usage don't use it xD)

Go to includes/classes/class.login.php

Make backup

Find
Code:
if($this->canLogin($_SERVER['REMOTE_ADDR'])) {

[B][COLOR="#FFA500"]&& un-comment[/COLOR][/B]

[B][COLOR="#FFA500"]//[/COLOR][/B] if($this->canLogin($_SERVER['REMOTE_ADDR'])) {

also

Code:
} else {
	// user is timed out
	message('error', lang('error_3',true));
}


[B][COLOR="#FFA500"]&& un-comment[/COLOR][/B]


[B][COLOR="#FFA500"]//[/COLOR][/B]	} else {
[B][COLOR="#FFA500"]//[/COLOR][/B]		// user is timed out
[B][COLOR="#FFA500"]//[/COLOR][/B]		message('error', lang('error_3',true));
[B][COLOR="#FFA500"]//[/COLOR][/B]	}


Try login now.
 
Newbie Spellweaver
Joined
Sep 2, 2014
Messages
23
Reaction score
0
Could not find stored procedure 'master.dbo.XP_MD5_EncodeKeyVal'



no no no I dont you md5, i creating account with maker after trying to log in but with fail :/
 
Custom Title Activated
Loyal Member
Joined
Dec 5, 2009
Messages
2,657
Reaction score
1,178
Could not find stored procedure 'master.dbo.XP_MD5_EncodeKeyVal'

You have to use MD5, probably your memb__pwd is varchar type, so u'll have drop & recreate that column with varbinary type
if you want register using md5....

Download


Copy WZ_MD5_MOD.dll to microsoft sql server\'INSTANCE_NAME'\tools\binn

Then execute query at sql

exec sp_addextendedproc 'XP_MD5_EncodeKeyVal', 'WZ_MD5_MOD.dll'
 
Custom Title Activated
Loyal Member
Joined
Dec 5, 2009
Messages
2,657
Reaction score
1,178
but with out this md5, i can you this web?

Let me see...

Open includes/classes/class.common.php

Find
Code:
$query = "SELECT * FROM "._TBL_MI_." WHERE "._CLMN_USERNM_." = '$username' AND "._CLMN_PASSWD_." = [dbo].[fn_md5]('$password','$username')";


Replace with

Code:
$query = "SELECT * FROM "._TBL_MI_." WHERE "._CLMN_USERNM_." = '$username' AND "._CLMN_PASSWD_." = '$password'";

Now you can login w/o MD5
 
Newbie Spellweaver
Joined
Sep 2, 2014
Messages
23
Reaction score
0
I have delet every where
[dbo].[fn_md5] like you do it

Thats what happend

String or binary data would be truncated.
 
-( . ) ( . )-
Loyal Member
Joined
Mar 28, 2012
Messages
1,356
Reaction score
68
any one have a mirror of this cause i can't see the DL link it says the file was deleted
 
Back
Top