KaoriAMS

Join Discord

Kaori

LOMCN MiR3 Queen!
VIP
Jun 3, 2004
3,584
38
285
Canada
are you able to get a basic site working with apache2 + php4 with some php files working?

then... all of my script doesn't work? or just some? which ones?

if just some then... you can enable error displaying by changing the 0 in error_reporting(0); to error_reporting(E_ALL); that should give you any error
 

TritoN

LOMCN Veteran
Veteran
Aug 21, 2003
474
1
114
its working now after removing all comments in the config script files (somehow they must have got wrong or i made a mistake while editing the scripts with my settings)
ty anyways and keep up the good work :)
 

serverman

Dedicated Member
Dedicated Member
Sep 11, 2004
77
0
53
wizard u have a mir3 or job server with 100 ppl ? thats what it says
 

dazman

Dedicated Member
Dedicated Member
Jan 11, 2004
116
0
63
aldershot
i don't have a clue how the iss or what every it is called works can someone tell me where to put the files plz
 

Kaori

LOMCN MiR3 Queen!
VIP
Jun 3, 2004
3,584
38
285
Canada
IIS comes with windows 2000/xp pro cd or any server cd.
you can pm me for msn if you need help setting my files for your server.
 

Tasha

LOMCN Veteran
Veteran
Loyal Member
May 13, 2003
498
0
113
Kaori said:
account stuff wouldnt connect to the sql till i realized the backend address was wrong.
what should go in there? cas i get char stats ect but if i click register to make account nothing happens
 

Tasha

LOMCN Veteran
Veteran
Loyal Member
May 13, 2003
498
0
113
Tasha said:
what should go in there? cas i get char stats ect but if i click register to make account nothing happens
must be faulty and unworking then or no one knows. nm
 

Kaori

LOMCN MiR3 Queen!
VIP
Jun 3, 2004
3,584
38
285
Canada
I haven't tested this with the latest king/cruel. But it wouldn't be hard to fix the stats page yourself.
 

vera

Dedicated Member
Dedicated Member
Jan 25, 2005
13
0
47
Oh but i need it too...
can post here where to edit for cruel server file to register account?

:p
thx for reply again
 

Kaori

LOMCN MiR3 Queen!
VIP
Jun 3, 2004
3,584
38
285
Canada
account database should be the same? if you know php/mssql, you can try turning on the debug and see where's the problem...

on top of each php... you will find error_reporting(0);
change it to
error_reporting(E_ALL);

you can also turn on sql debug... by adding a line after sql connect

if (!@$conn->PConnect($accountDSN, "", "", "")) {
print "Failed";
exit(0);
}
$conn->debug=true;