MUCore 1.0.8 Premium Full
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:- Enable/replace MD5 on joinserverCode:-- ------------------------------------------------------------------------------ -- /****** 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 Xampp v1.7.3+
-> If NOT use SQL2000 -> Install Xampp v1.8.2+ 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:Recheck again! If not resolved, then ReInstall MuCore!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: MUCore 1.0.8 Premium (ZIP MD5: 8F9EB26911BB8CBEC7C4BB3F0590D194 )
MuCore_v1.0.8_8F9EB26911BB8CBEC7C4BB3F0590D194.zip 27.8 MBCode: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:
Have a lot of fun !
XAMPP_v1.7.1+_3283305F837C3C808BA084186C145C59.7z 52.8 MBXAMPP_v1.7.3+_82F4AC48EA3D4FAD54A96557F1C1F20B.7z 60.4 MBCode:https://mega.nz/#!355VVZBb!EHbNuybZtobcD1A_lRhWgZl_lvPzyASnJsUV6Enfu-8kCode:https://mega.nz/#!GhQQVBgS!hHI--3HVzX4_Vcq4v-U6BDE8YziFlvOoq34GEGk6GVY
========================*======================
With all errors and questions
Please make sure you has download the latest version HERE!
###############################################
Press
Widget is loading comments...
Popular Posts
-
Bueno esto es un vídeo tutorial de como crear el launcher AutoUpdate de MuKorea. Si ven que se pierden en la guía avisen! Utilidades a u...
-
Hello everyone, It's been a while since i have made an update to Zen Launcher (Beast Launcher) and this one was compiled last year an...
-
About Zythe Launcher is just a simple Game launcher that you can use with your game client, I been using this launcher in my server la...
-
Hello guys! So i really wanted to see the new item sets and weapon (Blood Angel set and Dark Angel set) and add it into my server files (M...
-
Hola amigos aqui les dejo los files MuEMU season6 episodio3 + SCFBots + Nuevo HP Bar todo completo en un 1 solo repack, la verdad muy buen...
-
MUCore 1.0.8 Premium Full CHANGE LOGS: - 100% working/deobfuscated/deCode PHP5 - Include Webzen template by default! - Include Magic...
-
Vengo a traer este pequeño aporte, se que algunos user suelen solicitar este reseteo para poder cambiar sus combinaciones, Y a veces, es co...
-
Files 99b MC v3, esta es la ultima version de estas files, el cual son muy conocidos ya que la mayoria de todos los servidores 99b que p...
-
FIXES BUGS & CRASH'S Spoiler for Hiden : MultiGSRun SoketError StandbyDS DestroyGIocp WebZenName CheckSum 65k MaxStat PKB...
-
This is the 1.04d GMO main with characteristics: support up to 256 items / category, glow on/off, have 9 custom jewels (14 200 -> 14 2...
Etiquetas
About me
Blog Archive
-
▼
2017
(107)
-
▼
julio
(87)
- Como Cambiar Logo de Carga Season 6 Epi 3
- Edicion de Puntos, Level, Reset , Lugar de nacimie...
- Como RESETEAR el Master Skill Tree ( Arbol de Pode...
- Guia de Personajes
- Pasar cuentas "Datos" a otra base de datos
- [VIDEOGUIA] Crear Subserver vip/comun pvp/nopvp en...
- Crear spots de todas las formas posibles
- Cuales son, Como usar, y para que sirve cada coman...
- Como editar Imagen del MHPClient.dll (MuEmu)
- Vídeo Guía Configurar y Usar /Store /OffStore /Att...
- Agregar Jewells Custom en files MuEmu S6 Ep3
- Hacer usuarios VIP MuEmu
- Agregar Color Item Custom MuEmu
- VideoGuia configurar Castle siegue MuEmu
- [Video] Instalacion de WebEngine 1.0.9 + Xampp 7.1...
- Crea Server Emuemu S4 sin Errores + herramientas+w...
- MuEmu 99B + soporte de 512 items + cashshop
- Files 99b MC v3 + Parche items Season2 + Guia de i...
- Files 99B - DarksTeam + Custom comands + Security ...
- MuServer 97D+99I Evolution Team Fix 99% BugLess
- Files 97d+99i - DarksTeam Update 37.3 [Ultimate] +...
- Files 97 Giovanni
- SYAK Files - S6 EPI 3 FULL (TT)
- Files Season6 Episodio3 - TitanTech 11.70.52 (+Nue...
- Files Season6 Episodio3 - zTeam +Smoke Effect +Pre...
- Season 6 Episodio X [TT]
- Files Season6 Episodio3 - MuEMU + Customs + SCFBot...
- Season 6 Episodio 3 TitansTech 12.00.01++ by ExTeam
- Repack MUEMU Season 8 by louis
- Files Season8 Episodio 3 - MuEmu (X-Team).
- Files Season 9 (Xteam) MOD Team
- Files Season9 Ex901 - RageZone Project + Source.
- Repack Files IGCN Season 9.5
- Files Season 11 [ Nuevo PJ - Grow Lancer ]
- Template Midgard - Adatado a MuCore
- Template antiguo ARG MuCore 1.0.8
- Quebec + PSD mu core 1.08
- Template para Mu Core 1.08
- MuMaker 1.13 with Tier Sets in .mdb (item database)
- [MUCore] Modules
- WebShop For 97d+99i [09.12.2016]
- Main 97D Hp bar (source)
- rConnect Server
- Main GMO 104D with custom items and 3d camera
- Mu-Resolution-Changer
- Files 0.99.60T CHS Premium - FireTeam + PDB + source
- MuCore 1.8 Adapted WebZen Web
- zTeam Season 8 Repack + Video Guide
- Files Season 3 episode 1 by Pinkof.
- Blood Angel Set and Dark Angel Set Normal Exe-Sock...
- [MUCore] Immortal Template
- MuServer 1.00.16 Mx FNR CzF +Client 1.03x Season 2...
- 97d Server Stable & Full Tutorial
- PS 1.7 R2 Anti Hack System
- Anti DDoS Guardian 3.4 Cracked
- Engine Main 0.99B+ by Nemesis
- Repack Files 99b MC v3 + Fixs + Utilities
- [Module] Account Information [MuCore 1.0.6 & 1.0.8]
- Simply MuOnline Launcher + AntiCheat
- Library Add Effect for Items
- Ex Season 5 Episode 3, DangeR Developerv
- MuEmu S8 Complete CashSHop
- zTeam eX802 Repack with fixes
- ST MU Launcher Auto Update [Tools + WebFiles]
- Market System V1.0.0 For MuCore 0.8
- [WEB] DMN Webshop Full Premium + Market + install ...
- MuOnline Launcher ZEN (New Updated Version) Free M...
- MUCore 1.0.8 Premium Full 100% deCode
- Evolution Team Season 2 Premium Files+Source+Clien...
- [ExTeam] Season 4 Episode 6,Old Developmen/Custom
- MuServer Season 10.3 basados en src igcn x9
- ExMuOnline Theme for mvCore + crew module
- OGC-Files Season 2 + Source
- MuEMU Antihack + Video Guide
- Zteam Season X epi 2 Source
- LTPTeam Old Development Server Files
- MuServer SS6EP3 :: Post Item, RankTitle 3 Layers +
- [REPACK] IA Julia 1.1.0.298 Season 4.6 ENG + Impro...
- MuServer MuEmu 1.05d Downgraded season 2 with cash...
- Zyth3 Launcher - Professional Mu Launcher + Update...
- [MuCore 1.0.8] MuOnlineWebs Template MG
- PyroMu Season 6 Full Server, Client + Custom
- OpenMu Web Clone [Update 0.7]
- Exillum S3 (Reedlan + Cutoms)
- Template Armus Premium
- SeasonXI-Ep2 (Server+Full Client) Final Update (20...
- PERFECT SERVER FILES SEASON 4.6 (ESTABLE)
-
▼
julio
(87)
Welcome To Basil