-
re: [Release] MUCore 1.0.8 Nulled, English, 100% working
Quote:
Originally Posted by
ReaperMuAdmin
Install file blank.
I cannot make it work on xampp 1.7.1/1.7.7/1.8.1
I won't use this.
So. Which web do u use for ur mu ?
-
re: [Release] MUCore 1.0.8 Nulled, English, 100% working
Quote:
Originally Posted by
blackdovevn
So. Which web do u use for ur mu ?
Right now I'm not using any web
I'm making accounts manually. Older webs not compatible with MuEx700+Files...
it's less of a hassle when it comes to this. Looking for a compatible AND working web for such new files.. really hard.
-
re: [Release] MUCore 1.0.8 Nulled, English, 100% working
When I go to the page http://mu.mysite.com/admincp/ - are forwarded immediately and opens page http://bizarre-networks.net/ :(
How to fix it?
-
re: [Release] MUCore 1.0.8 Nulled, English, 100% working
check your website settings..
-
re: [Release] MUCore 1.0.8 Nulled, English, 100% working
My site can't display Guild Logo. How to fix it ?
-
re: [Release] MUCore 1.0.8 Nulled, English, 100% working
i hive IGCN FILE mucore no connected to SQL WTF?
-
re: [Release] MUCore 1.0.8 Nulled, English, 100% working
Installation doesn't working.. :) wth?
-
re: [Release] MUCore 1.0.8 Nulled, English, 100% working
Quote:
Originally Posted by
PrivateMU
Installation doesn't working.. :) wth?
Also not working
-
re: [Release] MUCore 1.0.8 Nulled, English, 100% working
Installation gets me to a Blank page ...
-
re: [Release] MUCore 1.0.8 Nulled, English, 100% working
Quote:
Originally Posted by
epocal
Installation gets me to a Blank page ...
Same here, on step 3. If I use diffrent Mu core also stops at step 3 but i get this error
Fatal error: Call to a member function Execute() on a non-object in /var/home/mydomain/public_html/install/step_3.php(1) : eval()'d code on line 36
Dose anyone know what to do?
-
re: [Release] MUCore 1.0.8 Nulled, English, 100% working
xampp 1.7.1 is the solution :)
-
re: [Release] MUCore 1.0.8 Nulled, English, 100% working
Quote:
Originally Posted by
ScriptKid
xampp 1.7.1 is the solution :)
Thankx ScriptKid, but I have separate host for web...CPanel and everything (I use it like this for email addresses and FTP) and the server is on a different PC.
I dont have xampp on web server is a linux host.
I installed xampp 1.7.1 on the game server, but now the install stops also on step 3 with:
Creating MUCore Tables
# Table Status
1 [dbo].[MUCore_Ban]
with this error and nothing more happens even tho i runned all the query's from db1 folder and created all those dbo.
-
re: [Release] MUCore 1.0.8 Nulled, English, 100% working
Quote:
Originally Posted by
paltinis
Thankx ScriptKid, but I have separate host for web...CPanel and everything (I use it like this for email addresses and FTP) and the server is on a different PC.
I dont have xampp on web server is a linux host.
I installed xampp 1.7.1 on the game server, but now the install stops also on step 3 with:
Creating MUCore Tables
# Table Status
1 [dbo].[MUCore_Ban]
with this error and nothing more happens even tho i runned all the query's from db1 folder and created all those dbo.
try with clean dbs.....if tables are installed, table-creating procedure may get bugged....
-
re: [Release] MUCore 1.0.8 Nulled, English, 100% working
Ok, I desintalled everything, SQL, XAMPP and restarted fresh. I tryed in 2 ways, one with xampp 1.7.1 on local PC (the PC with the SQL) and another way on my webserver, in cpanel.
I observed a strange thing.
If I config the config.php with
$core['connection_type'] = "MSSQL";
and
$core['db_host'] = "127.0.0.1";
$core['db_name'] = "MuOnline";
$core['db_user']= "sa";
$core['db_password'] = "mysqlpass";
I get error at step 2 View image: step 2
If i set instead of $core['connection_type'] = "MSSQL";
$core['connection_type'] = "mssql_conect";
Than it gets me pass step 2 but without saying "success" at SQL View image: mucore step 2 and fails at step 3.
I guess my problem is with the conextion with the SQL but I dont see nothing wrong in the config.php, i did it exactly like on video tutorials on youtube...
The only question remains..should I do something to SQL to accept connections?
-
re: [Release] MUCore 1.0.8 Nulled, English, 100% working
Quote:
Originally Posted by
paltinis
Ok, I desintalled everything, SQL, XAMPP and restarted fresh. I tryed in 2 ways, one with xampp 1.7.1 on local PC (the PC with the SQL) and another way on my webserver, in cpanel.
I observed a strange thing.
If I config the config.php with
$core['connection_type'] = "MSSQL";
and
$core['db_host'] = "127.0.0.1";
$core['db_name'] = "MuOnline";
$core['db_user']= "sa";
$core['db_password'] = "mysqlpass";
I get error at step 2
View image: step 2
If i set instead of $core['connection_type'] = "MSSQL";
$core['connection_type'] = "mssql_conect";
Than it gets me pass step 2 but without saying "success" at SQL
View image: mucore step 2 and fails at step 3.
I guess my problem is with the conextion with the SQL but I dont see nothing wrong in the config.php, i did it exactly like on video tutorials on youtube...
The only question remains..should I do something to SQL to accept connections?
Well, it depends basically on HOW you installed SQL server....and WHAT sql version you're using...
IF USING SQL 2000 (installed as DEFAULT INSTANCE):
should be:
$core['connection_type'] = "MSSQL"
$core['db_host'] = "localhost";
$core['db_name'] = "MuOnline";
$core['db_user']= "sa";
$core['db_password'] = "mysqlpass";
IF USING SQL 2000 (as named instance):
$core['connection_type'] = "MSSQL"
$core['db_host'] = "instancename";
$core['db_name'] = "MuOnline";
$core['db_user']= "sa";
$core['db_password'] = "mysqlpass";
IF USING SQL 2005/2008/2008R2/2012 (however it's installed, this config always worked for me.)
$core['connection_type'] = "MSSQL"
$core['db_host'] = "PC-NAME";
$core['db_name'] = "MuOnline";
$core['db_user']= "sa";
$core['db_password'] = "mysqlpass";
Otherwise, and if none of this working, send me more details and i may be able to help you further.
Edit: lol i just realized this was a really fast reply from me (just took a few minutes from your post xD)