Kết quả 1 đến 10 của 28
-
15-02-16, 10:23 AM #1
- Ngày tham gia
- Sep 2014
- Đang ở
- vndev.games
- Bài viết
- 430
- Thanks
- 91
- Thanked 425 Times in 128 Posts
MUCore 1.0.8 Premium Full 100% deCode
MUCore 1.0.8 Premium Full
[Only registered and activated users can see links. ]
[Only registered and activated users can see links. ]
[Only registered and activated users can see links. ]
[Only registered and activated users can see links. ]
CHANGE LOGS:
- 100% working/deobfuscated/deCode PHP5
- Include Webzen template by default!
- Include MagicHand MU Editor 2.1 support CashShop /editor
- Add z-team Characters
- [Fixed] [Fixed] [Lost Password] Image Verification show if reCAPTCHA™ was set.
- [Website] "Go back" cache, now you can press go back button without to lose any filled up form data
- [Admin CP] Number of hours have been increased on Cron Jobs side.
- [Webserver] CPU and RAM usage reduced by 40%
- [Login System] Lag free improved. No more SQL queries need.
- [Castle Siege Module]
- [Install Process] when you first visit the website using your exlorer by typing http://localhost or http://127.0.0.1 the first
time run will redirect you to the installation process.
- [Class Compatibility] added compatibility with Rage Fighter and Fist Master, you can edit without any restriction in your
admin panel and its displayed in rankings.
- [Event Log] We created 2 new small modules called admin logger and user logger which allows you to keep a registry of the
actions performed on our website (user side) and in admin panel it keeps a record of who access that area and what actions they
perform and from which IP it comes, this is a security measure implemented in order to check if admins abuse their powers. All
logs get stored under a protected folder.
- [Integration] Webshop added to the installation part. Once it's done, you will be able to see the store immediately without an
issue. Also, the Webshop database has been fixed so new items will not present a problem.
- [Organization] rearranged the navigation bar for a better use of the modules.
INSTALL GUIDE:
1. Edit PHP config in php.ini:
+ Require extension enabled:
- MSSQL Drivers (php_mssql.dll PHP 5.2, php_dblib.dll, php_sqlsrv.dll, php_pdo_sqlsrv.dll) if use Connection Type MSSQL
- GD Image Library (php_gd2.dll)
- OpenSSL (php_openssl.dll) if use SMTP Secure Connection (SSL or TSL).
- magic_quotes_gpc must be disabled - Off
- short_open_tag must be enabled – On
2. Enable MOD REWRITE if custom page URL
- Go to apache\conf\httpd.conf , open it, find #LoadModule rewrite_module modules/mod_rewrite.so, delete # from the front save
and restart webserver
3. Install MSSQL Server! Recommended SQL Server 2008 R2 Standard/Pro/Ultimate, Express version does not
have SQL Agent to run job.
-> Restore DB or Attach DB skipp if have DB.
4. IF USE MD5: Add MD5 to Database!
- Copy the 'WZ_MD5_MOD.dll'(included on Install folder) to C:\Program Files\Microsoft SQL Server\MSSQL\Binn\
- Execute SQL QUERY:
Code:-- ------------------------------------------------------------------------------ -- /****** Register MD5 * Dao Van Trong - Trong.CF ******/ USE [master] GO SET QUOTED_IDENTIFIER OFF GO SET ANSI_NULLS OFF GO -- /****** DROP Object: ExtendedStoredProcedure [dbo].[XP_MD5_EncodeKeyVal] * Dao Van Trong - Trong.CF ******/ IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[dbo].[XP_MD5_EncodeKeyVal]') AND OBJECTPROPERTY(id, N'IsExtendedProc') = 1) EXEC sp_dropextendedproc N'[dbo].[XP_MD5_EncodeKeyVal]' GO -- /****** DROP Object: ExtendedStoredProcedure [dbo].[XP_MD5_EncodeString] * Dao Van Trong - Trong.CF ******/ IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[dbo].[XP_MD5_EncodeString]') AND OBJECTPROPERTY(id, N'IsExtendedProc') = 1) EXEC sp_dropextendedproc N'[dbo].[XP_MD5_EncodeString]' GO -- /****** DROP Object: ExtendedStoredProcedure [dbo].[XP_MD5_CheckValue] * Dao Van Trong - Trong.CF ******/ IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[dbo].[XP_MD5_CheckValue]') AND OBJECTPROPERTY(id, N'IsExtendedProc') = 1) EXEC sp_dropextendedproc N'[dbo].[XP_MD5_CheckValue]' GO -- /****** ADD Object: ExtendedStoredProcedure [dbo].[XP_MD5_EncodeString] * Dao Van Trong - Trong.CF ******/ EXEC sp_addextendedproc N'XP_MD5_EncodeString', N'WZ_MD5_MOD.dll' GO -- /****** ADD Object: ExtendedStoredProcedure [dbo].[XP_MD5_CheckValue] * Dao Van Trong - Trong.CF ******/ EXEC sp_addextendedproc N'XP_MD5_CheckValue', N'WZ_MD5_MOD.dll' GO -- /****** ADD Object: ExtendedStoredProcedure [dbo].[XP_MD5_EncodeKeyVal] * Dao Van Trong - Trong.CF ******/ EXEC sp_addextendedproc N'XP_MD5_EncodeKeyVal', N'WZ_MD5_MOD.dll' GO -- USE [Me_MuOnline] USE [MuOnline] GO -- /****** DROP Object: UserDefinedFunction [dbo].[fn_md5] * Dao Van Trong - Trong.CF ******/ IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[fn_md5]') AND type IN (N'FN', N'IF', N'TF', N'FS', N'FT')) DROP FUNCTION [dbo].[fn_md5] GO -- /****** CREATE Object: UserDefinedFunction [dbo].[fn_md5] * Dao Van Trong - Trong.CF ******/ CREATE FUNCTION [dbo].[fn_md5] (@data varchar(10), @data2 varchar(10)) RETURNS binary(16) AS BEGIN DECLARE @hash binary(16) EXEC master.dbo.XP_MD5_EncodeKeyVal @data, @data2, @hash OUT RETURN @hash END GO -- /****** CREATE Object: UserDefinedFunction [dbo].[UFN_MD5_CHECKVALUE] * Dao Van Trong - Trong.CF ******/ IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[dbo].[UFN_MD5_CHECKVALUE]') AND xtype IN (N'FN', N'IF', N'TF')) DROP FUNCTION [dbo].[UFN_MD5_CHECKVALUE] GO CREATE FUNCTION UFN_MD5_CHECKVALUE (@btInStr VARCHAR(10), @btInStrIndex VARCHAR(10), @btInVal BINARY(16)) RETURNS TINYINT AS BEGIN DECLARE @iOutResult TINYINT EXEC master..XP_MD5_CheckValue @btInStr, @btInVal, @btInStrIndex, @iOutResult OUT RETURN @iOutResult END GO -- /****** CREATE Object: UserDefinedFunction [dbo].[UFN_MD5_ENCODEVALUE] * Dao Van Trong - Trong.CF ******/ IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[dbo].[UFN_MD5_ENCODEVALUE]') AND xtype IN (N'FN', N'IF', N'TF')) DROP FUNCTION [dbo].[UFN_MD5_ENCODEVALUE] GO CREATE FUNCTION UFN_MD5_ENCODEVALUE (@btInStr VARCHAR(10), @btInStrIndex VARCHAR(10)) RETURNS BINARY(16) AS BEGIN DECLARE @btOutVal BINARY(16) EXEC master..XP_MD5_EncodeKeyVal @btInStr, @btInStrIndex, @btOutVal OUT RETURN @btOutVal END GO -- /****** CREATE Object: UserDefinedFunction [dbo].[SP_MD5_ENCODE_VALUE] * Dao Van Trong - Trong.CF ******/ IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[dbo].[SP_MD5_ENCODE_VALUE]') AND OBJECTPROPERTY(id, N'IsProcedure') = 1) DROP PROCEDURE [dbo].[SP_MD5_ENCODE_VALUE] GO CREATE PROCEDURE SP_MD5_ENCODE_VALUE @btInStr VARCHAR(10), @btInStrIndex VARCHAR(10) AS BEGIN DECLARE @btOutVal BINARY(16) EXEC master..XP_MD5_EncodeKeyVal @btInStr, @btInStrIndex, @btOutVal OUT UPDATE MEMB_INFO SET memb__pwd = @btOutVal WHERE memb___id = @btInStrIndex RETURN @btOutVal END GO -- /****** CREATE Object: UserDefinedFunction [dbo].[Encript] * Dao Van Trong - Trong.CF ******/ IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[dbo].[Encript]') AND OBJECTPROPERTY(id, N'IsProcedure') = 1) DROP PROCEDURE [dbo].[Encript] GO CREATE PROCEDURE Encript @btInStr VARCHAR(10), @btInStrIndex VARCHAR(10) AS BEGIN DECLARE @btOutVal BINARY(16) EXEC master..XP_MD5_EncodeKeyVal @btInStr, @btInStrIndex, @btOutVal OUT UPDATE MEMB_INFO SET memb__pwd = @btOutVal WHERE memb___id = @btInStrIndex END GO -- /****** CREATE Object: UserDefinedFunction [dbo].[Encripta] * Dao Van Trong - Trong.CF ******/ IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[dbo].[Encripta]') AND OBJECTPROPERTY(id, N'IsProcedure') = 1) DROP PROCEDURE [dbo].[Encripta] GO CREATE PROCEDURE Encripta @btInStr VARCHAR(10), @btInStrIndex VARCHAR(10) AS BEGIN DECLARE @btOutVal BINARY(16) EXEC master..XP_MD5_EncodeKeyVal @btInStr, @btInStrIndex, @btOutVal OUT UPDATE MEMB_INFO SET memb__pwd = @btOutVal WHERE memb___id = @btInStrIndex END GO -- /****** CREATE Object: UserDefinedFunction [dbo].[DencriptPW] * Dao Van Trong - Trong.CF ******/ IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[dbo].[DencriptPW]') AND OBJECTPROPERTY(id, N'IsProcedure') = 1) DROP PROCEDURE [dbo].[DencriptPW] GO CREATE PROCEDURE DencriptPW @btInStr VARCHAR(10), @btInStrIndex VARCHAR(10) AS BEGIN DECLARE @btOutVal BINARY(16) EXEC master..XP_MD5_EncodeKeyVal @btInStr, @btInStrIndex, @btOutVal OUT SELECT memb__pwd FROM MEMB_INFO WHERE memb__pwd = @btOutVal AND memb___id = @btInStrIndex END GO -- /****** CREATE Object: UserDefinedFunction [dbo].[Cassandra_MD5] * Dao Van Trong - Trong.CF ******/ IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[dbo].[Cassandra_MD5]') AND OBJECTPROPERTY(id, N'IsProcedure') = 1) DROP PROCEDURE [dbo].[Cassandra_MD5] GO CREATE PROCEDURE Cassandra_MD5 @btInStr VARCHAR(10), @btInStrIndex VARCHAR(10) AS BEGIN DECLARE @btOutVal BINARY(16) EXEC master..XP_MD5_EncodeKeyVal @btInStr, @btInStrIndex, @btOutVal OUT SELECT @btOutVal END GO -- ------------------------------------------------------------------------------ -- /****** Use MD5 * Dao Van Trong - Trong.CF ******/ ALTER TABLE [dbo].[MEMB_INFO] ADD memb__pwd2 varbinary(16) GO -- UPDATE [dbo].[MEMB_INFO] SET memb__pwd2 = CAST(memb__pwd as VARBINARY) UPDATE [dbo].[MEMB_INFO] SET memb__pwd2 = CONVERT(varbinary(16),memb__pwd) GO ALTER TABLE [dbo].[MEMB_INFO] DROP COLUMN memb__pwd GO EXEC sp_RENAME 'MEMB_INFO.[memb__pwd2]' , 'memb__pwd', 'COLUMN' GO -- --------------------------------------------------------------------------------------- /* -- >=SQL2005 No DLL - Remove xp_md5 extended procedure first USE [master] GO CREATE FUNCTION [dbo].[fn_md5] (@data varchar(255)) RETURNS CHAR(32) AS BEGIN RETURN SUBSTRING(master.dbo.fn_varbintohexstr(HashBytes('MD5', @data)), 3, 32) END GO GRANT EXECUTE ON [dbo].[fn_md5] TO [public] GO */ -- --------------------------------------------------------------------------------------- -- ------------------------------------------------------------------------------ -- /****** Not Use MD5 * Dao Van Trong - Trong.CF ******/ /* ALTER TABLE [dbo].[MEMB_INFO] ALTER COLUMN memb__pwd varchar(16) NOT NULL GO */ -- ------------------------------------------------------------------------------ SET QUOTED_IDENTIFIER ON GO SET ANSI_NULLS ON GO -- Get Source SQL -- -- USE master; -- GO -- EXEC sp_helptext 'fn_varbintohexstr'; -- GO --
5. Edit Web Config in config.php:
+ Select Connection Type:
- MSSQL: $core['connection_type'] = "MSSQL";
Need enabled MSSQL Drivers & Enable Protocol: TCP/IP, Named Pipes
- ODBC : $core['connection_type'] = "ODBC";
Need Merge file ODBC.reg
+ If use only 'MuOnline' database change $core['server_use_2_db'] to '0'.
+ If use 2 databases like 'MuOnline' and 'Me_MuOnline change' $core['server_use_2_db'] to
'1'.
+ Change Connection Settings:
- $core['db_host*'] = "127.0.0.1"; Database host IP address or PcName\SqlInstanceName
- $core['db_name*'] = "MuOnline"; Database name
- $core['db_user*']= "sa"; SQL Authentication user
- $core['db_password*'] = "YourSQLPassword"; SQL Authentication password
+ Change Admin Login Info:
- $core['admin_username'] = 'Admin'; Administrator user
- $core['admin_password'] = '12345'; Administrator password
6. First visit http://localhost will automatically redirect to http://localhost/install/install.php
If not automatically redirect please visit http://localhost/install/install.php
* Step 1 - Required Apache Mods
* Step 2 - Connecting To Databases
* Step 3 - Checking,Altering Tables
* Step 4 - Adding New Rows To Tables
* Step 5 - Importing Cron Jobs
* Step 6 - Set Website Settings
* Step 7 - Install Finished.
7. Fix Error:
+ Image Verification not show:
- Enabled extension GD Image Library (php_gd2.dll)
- Check site url
+ Connection error:
- Connection with MuOnline Database Failed
- Unable to connect to server
- Connection error to server
-> Check info on config.php: Make sure the information entered is correct.
- db_host : Database host IP address or PcName\SqlInstanceName
- MSSQL extension is not available anymore on Windows with PHP 5.3 or later: use ODBC OR reInstall/reConfig
WebServer
-> If use SQL2000/2005 -> Install [Only registered and activated users can see links. ]
-> If NOT use SQL2000 -> Install [Only registered and activated users can see links. ] Added MSSQL Drivers (php_dblib.dll, php_sqlsrv.dll, php_pdo_sqlsrv.dll)
+ Registration Error / Login Error / Password Incorrect / Your Account is Invalid:
- Unable to register, reason: system error, please contact administrator.
- Implicit conversion from data type varchar to varbinary is not allowed. Use the CONVERT function to run this query
-> This Problem is change DB or use MD5 but not config:
- If NOT use MD5 then disabled MD5 on website (Admin Control Panel).
-> Execute SQL QUERY:
Code:-- ------------------------------------------------------------------------------ -- /****** Not Use MD5 * Dao Van Trong - Trong.CF ******/ ALTER TABLE [dbo].[MEMB_INFO] ALTER COLUMN memb__pwd varchar(16) NOT NULL GO -- ------------------------------------------------------------------------------
- If user MD5 check MD5 setting then enable MD5 on website (Admin Control Panel). Recheck again! If not
resolved, then ReInstall MuCore!
Recheck again! If not resolved, then check STEPS 4 !
+ Sorry, this feature is temporarily unavailable at the moment:
Active/Enable/Turn ON module/Pages in Admin Control Panel
Download MUCORE: [Only registered and activated users can see links. ] (ZIP MD5: 8F9EB26911BB8CBEC7C4BB3F0590D194 )
MuCore_v1.0.8_8F9EB26911BB8CBEC7C4BB3F0590D194.zip 27.8 MB
Code:https://mega.nz/#!G1AViDrR!qkZ0TXubJcIqpnOSfTOgf0qor5T65J3-Rz3HiTGB7sk
Credits:
=Master= -> MuCore Founder and Creator
Isumeru -> Share and fixes database.
MaryJo, Trong -> Decrypt, edit modules and fixes.
* Download XAMPP:
[Only registered and activated users can see links. ] 52.8 MB
Code:https://mega.nz/#!355VVZBb!EHbNuybZtobcD1A_lRhWgZl_lvPzyASnJsUV6Enfu-8k
Code:https://mega.nz/#!GhQQVBgS!hHI--3HVzX4_Vcq4v-U6BDE8YziFlvOoq34GEGk6GVY
Code:https://mega.nz/#!6h4whLAY!varD9BJgz9a_bavuXoVAbXaPMzNYAznCA1CuKBM23pY
Code:https://mega.nz/#!fpRQFbLK!ScWJJM8J-sab8pKiv7wveBDGnRDmr0fJmVLMgkqTcsk
Code:https://mega.nz/#!6pxlFCSZ!5FAqVBhYGWB6lPg3XTepY2PgVvmFZFECbmKDPIIZeEM
Code:https://mega.nz/#!nlJEUSAD!wjBGhxwU0o6gPYPIai5zTaRCX9m1cyfo7z_OtS_NIcs
XAMPP with Nginx 1.9 and Memcached:
[Only registered and activated users can see links. ]
[Only registered and activated users can see links. ] 96.4 MB
Code:https://mega.nz/#!nxgmTAoB!eRABPFGFCKIx_AV2JwDvAQUKWCBMvagYw-q4oilI9zo
Lần sửa cuối bởi Trong, ngày 22-03-16 lúc 07:51 AM. Lý do: Update Link
Khách viếng thăm hãy cùng Trong xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!
-
-
15-02-16, 10:55 AM #2
Ðề: MUCore 1.0.8 Premium Full 100% deCode
Mình chưa cài cái này bao giờ nên không biết cài như thế nào?
Bạn có thể hướng dẫn mình cài 1 chút được không?Khách viếng thăm hãy cùng nampinn xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!
-
15-02-16, 11:11 AM #3
- Ngày tham gia
- Sep 2014
- Đang ở
- vndev.games
- Bài viết
- 430
- Thanks
- 91
- Thanked 425 Times in 128 Posts
Ðề: MUCore 1.0.8 Premium Full 100% deCode
Tải về giải nén vào htdocs hoặc www (trong xampp webserver)
Mở file config.php sửa thông tin tài khoản MSSQL và tài khoản admincp
Sau đó vào web theo đường dẫn bạn giải nén vào thư mục con hoặc thư mục gốc.
Lần đầu truy cập Nó sẽ tự chuyển hướng đến trang install nếu ko tự chuyển bạn vào yourURL/install để bắt đầu cài đặt.
Nhấn Continue Íntall, các bước tiếp theo cứ nhấn Next Step và cuối cùng điền thông tin và nhấn SAVE sau đó thì nhấn vào Admin Control Panel
Bạn tham khảo video nhé:
[Only registered and activated users can see links. ]
[Only registered and activated users can see links. ]
[Only registered and activated users can see links. ]Khách viếng thăm hãy cùng Trong xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!
-
Các thành viên gởi lời cảm ơn đến Trong vì bài viết này !
nampinn (15-02-16)
-
15-02-16, 12:06 PM #4
Ðề: MUCore 1.0.8 Premium Full 100% deCode
mà hàng này việt nam mình ít ai sài
Khách viếng thăm hãy cùng vancanh1991 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!
-
15-02-16, 12:20 PM #5
- Ngày tham gia
- Sep 2014
- Đang ở
- vndev.games
- Bài viết
- 430
- Thanks
- 91
- Thanked 425 Times in 128 Posts
Ðề: MUCore 1.0.8 Premium Full 100% deCode
Khách viếng thăm hãy cùng Trong xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!
-
15-02-16, 04:45 PM #6
- Ngày tham gia
- Nov 2012
- Đang ở
- Usa
- Bài viết
- 344
- Thanks
- 118
- Thanked 55 Times in 34 Posts
Ðề: MUCore 1.0.8 Premium Full 100% deCode
Khách viếng thăm hãy cùngavinhdtxây dựng diễn đàn CLBGAMESVN vững mạnh nhé!
-
15-02-16, 05:41 PM #7
- Ngày tham gia
- Sep 2014
- Đang ở
- vndev.games
- Bài viết
- 430
- Thanks
- 91
- Thanked 425 Times in 128 Posts
Ðề: MUCore 1.0.8 Premium Full 100% deCode
Khách viếng thăm hãy cùng Trong xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!
-
15-02-16, 05:47 PM #8
- Ngày tham gia
- Nov 2012
- Đang ở
- Usa
- Bài viết
- 344
- Thanks
- 118
- Thanked 55 Times in 34 Posts
Ðề: MUCore 1.0.8 Premium Full 100% deCode
Khách viếng thăm hãy cùngavinhdtxây dựng diễn đàn CLBGAMESVN vững mạnh nhé!
-
Các thành viên gởi lời cảm ơn đến avinhdt vì bài viết này !
kuden10 (16-03-16)
-
15-02-16, 05:58 PM #9
- Ngày tham gia
- Sep 2014
- Đang ở
- vndev.games
- Bài viết
- 430
- Thanks
- 91
- Thanked 425 Times in 128 Posts
Ðề: MUCore 1.0.8 Premium Full 100% deCode
Khách viếng thăm hãy cùng Trong xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!
-
16-03-16, 09:54 PM #10
- Ngày tham gia
- May 2011
- Bài viết
- 226
- Thanks
- 6
- Thanked 106 Times in 22 Posts
Ðề: MUCore 1.0.8 Premium Full 100% deCode
web này phần admcp rất hay có thể thêm mắ muối tùy ý @@ , có thêm phần giới hạn reset chung không phân chia theo kiểu như nbb ^^ .. web này mang về code thêm là good
--- Chế độ gộp bài viết ---
hướng dẫn úp lên hóting đi đại ca trần trọngKhách viếng thăm hãy cùng kuden10 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!
Các Chủ đề tương tự
-
[TLBB] Bác nào decode đc txt client thì giúp mình với
Bởi Dark.Hades trong diễn đàn Hỏi Đáp/ Yêu CầuTrả lời: 4Bài viết cuối: 09-10-14, 08:00 AM -
[MU] [MUCore] WebZen Template
Bởi Newbie2012 trong diễn đàn SQL Server & WebsiteTrả lời: 0Bài viết cuối: 01-04-14, 06:28 PM -
[MU] MUCore Template - SynergyX FREE
Bởi divine9966 trong diễn đàn SQL Server & WebsiteTrả lời: 18Bài viết cuối: 18-03-14, 06:37 PM -
[Share] Txt decode tool (TLBB)
Bởi huuduyen_05 trong diễn đàn ReleasesTrả lời: 8Bài viết cuối: 04-04-12, 05:53 PM