-
2 Attachment(s)
[Tut] Make your GunZWeb+Panel
Hi,
This time teach them how to create your web page style MPOG GunZ
Hey here's the download link several of the web with several bugs fixed.
Proved necessary requirements:
"Having installed Microsoft SQL Server Management Studio Express
"Having the database (GunzDB) already created.
"To have or install AppServer 2.6.0
Started.
Installation.
Unzip the file ".Rar" called "tables". As summer there are several files ".Sql" called account.sql,
indexcontent.sql, Login.sql and SessionHash.sql ...
Then listen double click the file starting account.sql.
How to open SQL summer, log on, and change master to "GunzDB" and press Run http://img13.imageshack.us/img13/945/imagen2nu.png.
http://img192.imageshack.us/img192/6980/imagen1ms.png
And so on with the rest of the files.
Then, unpack the file. ".rar" call "IndexContent" and execute it.
NOTE: If for any reason, SQL tells you that the file will be replaced, you will give "if any"
Finished all, delete all files and used.
Now we proceed to install the "AppServer" We pressed next, until it looks like this:
http://img691.imageshack.us/img691/6246/imagen3r.png
As truly said "Server Name" "Email".
In "Server Name" I will put what you want with no spaces and "Administrator's Email Address" will put your email
In "Apache HTTP Port" by default "80", or change it to "8080"
In the "MySQL Server Configuration" asks for password ... You can put the one you want,
We now proceed to install the AppServer.
At the end NO PRESSURE "Finish", go to Start - Run - and type "php.ini"
http://img51.imageshack.us/img51/3410/imagen4j.png
We look for the word "mssql" and delete ";" from "mssql.dll" and "ming.dll"
http://img51.imageshack.us/img51/7986/imagen5b.png
Default:
Code:
;extension=php_ming.dll
;extension=php_mssql.dll
Change:
Code:
extension=php_ming.dll
extension=php_mssql.dll
We close and save changes.
After going to My Computer - Local Disk C:\AppServ - and delete the folder "www" found there.
Unzip it. "Rar" called "www" in that place.
When there will decompress a file. "Dll" called "Ntwdblib.dll", copy this file and paste in the following folders:
php6, Apache 2.2, bin (found in the "Apache 2.2").
Installing returned to the AppServer, and it ends.
Settings.
Come to the folder "www" by default is in "C:\AppServ\www" and began to configure the web!
We headed to the file "config.php"
Code:
<?php
mssql_connect(Your user\SQLEXPRESS","sa","password");
mssql_select_db("GunzDB");
$opened = 1;
if($opened == 0){
$pagetitle = "Server in maintenance";
}
?>
In closing, save your changes.
We headed to the file "hash.php"
Code:
<?php
//This file has been edited by Wizkid. All rights reserved.
mssql_connect("Your user\SQLEXPRESS","sa","password");
mssql_select_db("GunzDB");
//Anti SQL injection by Wizkid. Updated a bit to prevent all sorts of injections.
function antisql($sql)
{
// Remove words that contain SQL syntax
$sql = preg_replace(sql_regcase("/(from|update|set|select|insert|delete|where|drop table|show tables|#|\*|--|\\\\)/"),"",$sql); //Replaces some parts of a SQL query with absolutely nothing.
$sql = trim($sql); //antisqls up spaces
$sql = strip_tags($sql);//Php and html tags strip
$sql = addslashes($sql);//Adds backslashes to one string
return $sql;
}
//==========================================================
$hashid = antisql($_GET['hashid']);
$res = mssql_query("SELECT * FROM SessionHash WHERE HashString = '$hashid' AND Used = '0'");
if(mssql_num_rows($res) >= 1){
$data = mssql_fetch_assoc($res);
mssql_query("UPDATE Login SET Allowed = '1' WHERE UserID = '".$data['User']."'");
mssql_query("UPDATE SessionHash SET Used = '1' WHERE HashString = '$hashid'");
echo "YES";
}else{
echo "NO";
}
?>
In closing, we save the changes.
We headed to the file "registrer.php"
Code:
<body bgcolor="#999999">
<div align="center">
<p><strong><font color="#FFFFFF">Returns "Your GunZ"<a href="/index.php">Aqui</a>«</font></strong></p>
<p>
<?php
/*
This script was written by Wizkid.
All rights reserved. Any support can be requested via RageZone.
You're allowed to edit this script and modify the template.
However, you are NOT allowed to remove and/or edit my copyright.
Removing this copyright will be your death.
*/
//Edit to fit YOUR requirements.
$servername = "You own GunZ";
$accounttable = "Account";
$logintable = "Login";
//Edit these variables. If not, no regpage for you. (Or you're fuxpro with the same logins as me.)
$host = "Your user\SQLEXPRESS";
$user = "sa";
$pass = "password";
$dbname = "GunzDB";
$connect = odbc_connect("Driver={SQL Server};Server={$host}; Database={$dbname}", $user, $pass) or die("Can't connect the MSSQL server.");
//The well-known antisql injection. Bad enough, it's needed.
function antisql($sql) {
$sql = preg_replace(sql_regcase("/(from|select|insert|delete|where|drop table|show tables|#|--|\\\\)/"),"",$sql);
$sql = trim($sql);
$sql = strip_tags($sql);
$sql = addslashes($sql);
return $sql;
}
//My favorite function. Get The Fuck Off. (Nothing personally :].)
function gtfo($wut) {
echo "<center><table width='500' cellpadding='5' cellspacing='0' border='0' style='border: 1px ;'>
<tr>
<td align=center width='100%' style='border-bottom: 1px solid black;'><b>Error</b></td>
</tr>
<tr>
<td width='100%'><center>$wut</center></td>
</tr>
</table>";
die();
}
//Check email function. This to prevent fake emails. (Remember the time YOU doing that?)
function checkemail($address) {
list($local, $host) = explode("@", $address);
$pattern_local = "^([0-9a-z]*([-|_]?[0-9a-z]+)*)(([-|_]?)\.([-|_]?)[0-9a-z]*([-|_]?[0-9a-z]+)+)*([-|_]?)$";
$pattern_host = "^([0-9a-z]+([-]?[0-9a-z]+)*)(([-]?)\.([-]?)[0-9a-z]*([-]?[0-9a-z]+)+)*\.[a-z]{2,4}$";
$match_local = eregi($pattern_local, $local);
$match_host = eregi($pattern_host, $host);
if($match_local && $match_host) {
return 1;
}
else {
return 0;
}
}
//The num_rows() function for ODBC since the default one always returns -1.
function num_rows(&$rid) {
//We can try it at least, right?
$num= odbc_num_rows($rid);
if ($num >= 0) {
return $num;
}
if (!odbc_fetch_row($rid, 1)) {
odbc_fetch_row($rid, 0);
return 0;
}
if (!odbc_fetch_row($rid, 2)) {
odbc_fetch_row($rid, 0);
return 1;
}
$lo= 2;
$hi= 8192000;
while ($lo < ($hi - 1)) {
$mid= (int)(($hi + $lo) / 2);
if (odbc_fetch_row($rid, $mid)) {
$lo= $mid;
} else {
$hi= $mid;
}
}
$num= $lo;
odbc_fetch_row($rid, 0);
return $num;
}
?>
<html>
<head>
</p>
</div>
<title><?=$servername?> Registration</title>
</head>
<body>
<center>
<?php
//Oh well. Let's create the variable $ip to start with.
$ip = antisql($_SERVER['REMOTE_ADDR']);
/*
An extra feature. This is NOT enabled before you remove this + the comment thingy's.
To ban 1 IP it will be:
if ($ip == "xxxxxx")
{
gtfo("Your IP is blacklisted.");
}
For multiple IP's, use this way:
if ($ip == "xxxxxx" OR $ip == "xxxxxx")
{
gtfo("Your IP is blacklisted.");
}
*/
//Get the AID out of the Login table (defined at the top of this file) where LastIP is the visitors IP.
$query1 = odbc_exec($connect,"SELECT AID FROM $logintable WHERE LastIP = '$ip'");
//Understable for the real people. Editing this without knowledge will be the death of your regpage.
$i=1;
while (odbc_fetch_row($query1, $i)){
$aid = odbc_result($query1, 'AID');
$query2 = odbc_exec($connect,"SELECT UGradeID FROM $accounttable WHERE AID = '$aid'");
odbc_fetch_row($query2);
$ugradeid = odbc_result($query2, 1);
if ($ugradeid == "253")
{
//Get the fuck off.
gtfo("You have one or more accounts banned here. You're not welcome anymore.");
}
$i++;
}
//The doreg part.
if (isset($_GET['act']) AND $_GET['act'] == "doreg")
{
//Check for any shit.
if (!is_numeric($_POST['age']) OR !checkemail($_POST['email']) OR empty($_POST['username']) OR empty($_POST['password']) OR empty($_POST['email']) OR empty($_POST['name']) OR empty($_POST['age']))
{
gtfo("You're not funny.");
}
//Check if the username exists already.
$query1 = odbc_exec($connect, "SELECT AID FROM $accounttable WHERE UserID = '" . antisql($_POST['username']) . "'");
$count1 = num_rows($query1);
if ($count1 >= 1)
{
gtfo("Username in use.");
}
//Check if the Email is in use.
$query2 = odbc_exec($connect, "SELECT AID FROM $accounttable WHERE Email = '" . antisql($_POST['email']) . "'");
$count2 = num_rows($query2);
if ($count2 >= 1)
{
gtfo("Email address in use.");
}
//Regdate
//Time for the real work. Editing this will be the end of your regpage.
$query3 = odbc_exec($connect, "INSERT INTO $accounttable (UserID, UGradeID, PGradeID, RegDate, Email, Age, Name) VALUES ('".antisql($_POST['username'])."', '0', '0', '11.03.2207 0:00:00', '".antisql($_POST['email'])."', '".antisql($_POST['age'])."', '".antisql($_POST['name'])."')");
$query4 = odbc_exec($connect, "SELECT AID FROM $accounttable WHERE UserID = '" . antisql($_POST['username']) . "'");
odbc_fetch_row($query4);
$aid = odbc_result($query4, 1);
//If no results comes back. (Registration failed.)
if (!$aid)
{
gtfo("Shit happened. Please report this bug at our forums.");
}
odbc_exec($connect, "INSERT INTO $logintable (UserID, AID, Password, euCoins) VALUES ('".antisql($_POST['username'])."', '$aid', '".antisql($_POST['password'])."', '0')");
//When everything is done, show the username/password to the visitor.
gtfo("Your account has been created.<br><br>
Username: $_POST[username]<br>
Password: $_POST[password]<br><br>
Have fun at $servername!");
}
//Here the party begins. Feel free to edit this.
echo "<table width='350'>
<form action='" . $_SERVER['PHP_SELF'] . "?act=doreg' method='POST'>
<b>Register an account at $servername.</b><br><br>
<tr>
<td width='50%'><b>Username:</b></td>
<td width='50%'><input type='text' name='username'></td>
</tr>
<tr>
<td width='50%'><b>Password:</b></td>
<td width='50%'><input type='password' name='password'></td>
</tr>
<tr>
<td width='50%'><b>E-mail:</b></td>
<td width='50%'><input type='text' name='email'></td>
</tr>
<tr>
<td width='50%'><b>Name:</b></td>
<td width='50%'><input type='text' name='name'></td>
</tr>
<tr>
<td width='50%'><b>Age:</b></td>
<td width='50%'><input type='text' name='age'></td>
</tr>
<tr>
<td width='50%'><b></b></td>
<td width='50%'><input type='submit' value='Register'></td>
</tr>
</table>";
?>
<br>
<!-- No you don't remove it. -->
<font size="1">Copyright 2008 Wizkid - <?=$servername?>.</font>
<!-- See? -->
</center>
</body>
</html>
In closing keep the changes.
Now we drove to the folder 'Panel' and edit the following files: "config.php", "config1.php".
When you finish configuring the file, save the changes.
Now we drove to the folder "clan" and edit the "config.php"
Code:
<?php
//Data Base Stuff!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
$DBHost = 'Your user\SQLEXPRESS'; //The host of your DB (I.E: MACHINE\SQL2005)
$DBUser = 'sa'; //Your DB User
$DBPass = 'password'; //Your DB Password
$DB = 'GunzDB'; //Your GunZ DB
?>
Save the changes made.
The configuration here now to see all the work we've done, we drove to your browser (We recommend using FireFox)
Write your ip default or who has no internet (like me xD) 127.0.0.1/index.php
NOTE: If you used the "port" (8080) type your ip + :8080
Code:
your ip, or 127.0.0.1:8080/index.php
Perfect!, your website GunZ is complete! I hope you have enjoyed my tutorial, thank costs nothing.
Credits:
- Emisand- For Admin Panel.
- Lambda - For webpage :love:.
- Jizeth - for doing the tutorial and fix several bugs on the web.
Att: Jizeth|Faraday...
Downloads.
- AppServ - Download
- Megaupload - Download folder "www"
- Free large file hosting. Send big files the easy way! [Registrer.php]
-
Re: [Tut] Make your GunZWeb+Panel
Thanks Jizeth more useful.
-
Re: [Tut] Make your GunZWeb+Panel
Thanks for posting this man.
I was whaiting for this .
Keep Posting
-
Re: [Tut] Make your GunZWeb+Panel
Jizeth Thanks for your input, I have been a great help.
-
Re: [Tut] Make your GunZWeb+Panel
bleh, that php.ini edit was driving me INSANE faggot appserv. i'm going back to xamp thanks for the head's up (for next time).
still get
Fatal error: Call to undefined function mssql_connect() in C:\xampp\htdocs\config.php on line
any idea's why???
-
Re: [Tut] Make your GunZWeb+Panel
Quote:
Originally Posted by
peace123
bleh, that php.ini edit was driving me INSANE faggot appserv. i'm going back to xamp thanks for the head's up (for next time).
still get
Fatal error: Call to undefined function mssql_connect() in C:\xampp\htdocs\config.php on line
any idea's why???
There are two possibilities,
1 - Not good cofigured anywhere.
2 - Poor installation files ".sql"
-
Re: [Tut] Make your GunZWeb+Panel
config.php is fine. i might have to uninstall gunzdb odbcad32 and redo this from scratch (im working on someone elses build; they started it i'm finishing)
ok so i edited php.ini, and i forgot to turn off apache, so here we got service lock-up, guess im restarting my dedi.. hopefully it'll work though..
-
Re: [Tut] Make your GunZWeb+Panel
it is not necessary to reinstall and follow the steps appserver READ THE INFORMATION well! Can not complete the installation of "appserv" without first edit the "php.ini".
If the issue persists you, I give this second option.
Before finishing the installation of appserver ... (press "finish") publishes "php.ini" and copy the "Ntwdblib.dll" copy this file and paste in the following folders:
php6, Apache 2.2, bin (found in the "Apache 2.2")
The third option that I give is to use the "port" "8080", and do the steps in part 2.
If not work, reinstall the "Odbc", creating a new database.
But it works, I'm sorry for failing to operate your website. ;(
-
Re: [Tut] Make your GunZWeb+Panel
it has to do with permission's don't speak out of perposion i see that shit here all the time, first and last; don't speak to me like you're better then me, you're obviously not look at your terrible grammar. anytime i edit php.ini apache FREEZES can't turn it off, restart it etc unless i restart the dedi box and when i do that, it lock's up again.
-
Re: [Tut] Make your GunZWeb+Panel
Do not speak it that way, I try to help, not wanting to, you just do not answer. I think better than you with my English grammar is a bit low, since not much English. You gave you several options on how to fix your problem, and I apologize if my tutorial and how to fix that granted you did not work.
-
Re: [Tut] Make your GunZWeb+Panel
Good post for peoples that need that, keep it up!
-
Re: [Tut] Make your GunZWeb+Panel
what the ming extension for?
-
Re: [Tut] Make your GunZWeb+Panel
Other then the Web being 90% Spanish this works really good, but For some reason no web will recognize me as the Administrator. None will show me the admin panel for some reason. So for now I just use Emisand's Admin Panel.
Edit: Also can not log into "Clan"
-
Re: [Tut] Make your GunZWeb+Panel
-
Re: [Tut] Make your GunZWeb+Panel
do i need website or I can do this in my computer?
-
Re: [Tut] Make your GunZWeb+Panel
Sure you can do this is your computer, or if you have a web hosting for the better.
-
Re: [Tut] Make your GunZWeb+Panel
thanks alot for the tut, and i think i have an english mpog web on my comp, ill check if i have it...later.
Posted via Mobile Device
-
Re: [Tut] Make your GunZWeb+Panel
I was failed
maybe beacuse of my internet connection
Fatal error: Call to undefined function mssql_connect() in C:\AppServ\www\config.php on line 2
-
Re: [Tut] Make your GunZWeb+Panel
Quote:
Originally Posted by
cheaterastic
I was failed
maybe beacuse of my internet connection
Fatal error: Call to undefined function mssql_connect() in C:\AppServ\www\config.php on line 2
post ur config.php
-
Re: [Tut] Make your GunZWeb+Panel
Quote:
Originally Posted by
Axium
thanks alot for the tut, and i think i have an english mpog web on my comp, ill check if i have it...later.
Posted via Mobile Device
If you do, want to drop me a PM.
@ Jizeth: oh and I forget the error I was having as I kinda dropped working on the web but is there something extra you need to do to setup the login of "clan" for some reason it will deny me access.
-
Re: [Tut] Make your GunZWeb+Panel
Simply edit the "config" clan.
View
Code:
<?php
//Data Base Stuff!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
$DBHost = 'Your user\SQLEXPRESS'; //The host of your DB (I.E: MACHINE\SQL2005)
$DBUser = 'sa'; //Your DB User
$DBPass = 'password'; //Your DB Password
$DB = 'GunzDB'; //Your GunZ DB
?>
-
Re: [Tut] Make your GunZWeb+Panel
I did, but I get this;
Code:
Warning: mssql_query() [function.mssql-query]: message: Login failed for user ''. The user is not associated with a trusted SQL Server connection. (severity 14) in C:\AppServ\www\clan\index.php on line 42
Warning: mssql_query() [function.mssql-query]: Unable to connect to server: (null) in C:\AppServ\www\clan\index.php on line 42
Warning: mssql_query() [function.mssql-query]: A link to the server could not be established in C:\AppServ\www\clan\index.php on line 42
Warning: mssql_fetch_array(): supplied argument is not a valid MS SQL-result resource in C:\AppServ\www\clan\index.php on line 43
Basically its saying the username is not set....but in the config...
Code:
$DBUser = 'sa'; //Your DB User
-
Re: [Tut] Make your GunZWeb+Panel
@Aka Gambit: type the username. I put "sa" it is by default, but if you've changed to your liking, change "sa" to your "user"
-
Re: [Tut] Make your GunZWeb+Panel
sa IS my user....the default
The main problem is this
Code:
Login failed for user ''
it thinks the user name is blank.
-
Re: [Tut] Make your GunZWeb+Panel
Serious i did everything good. Still the webside does not work ''Unable to connect''
I have to start AppServer or something? how to do this lmao :P
-
Re: [Tut] Make your GunZWeb+Panel
Quote:
Originally Posted by
joeydenhaag
Serious i did everything good. Still the webside does not work ''Unable to connect''
I have to start AppServer or something? how to do this lmao :P
As mentioned in the tutorial, you should make the configuration of the "appserver" before finishing the installation completely.
-
Re: [Tut] Make your GunZWeb+Panel
Wouldn't XAMPP be easier to use instead of AppServer?
-
Re: [Tut] Make your GunZWeb+Panel
Hello i have a litttle problem is nice i delete the file www xD but if i delete how can i make my forum with smf ??? i neeed all O.O
-
Re: [Tut] Make your GunZWeb+Panel
Quote:
Originally Posted by
KillerStefan
Wouldn't XAMPP be easier to use instead of AppServer?
In my opinion use "appserver" is much easier, but as I said is my opinion.
-
Re: [Tut] Make your GunZWeb+Panel
Hello, i got this error;
PHP Code:
Fatal error: Call to undefined function mssql_query() in C:\AppServ\www\mod_clanranking.php on line 2
Plz help me
-
Re: [Tut] Make your GunZWeb+Panel
i get this problem
Fatal error: Call to undefined function mssql_connect() in C:\wamp\www\web\config.php on line 2
here is my config
<?php
mssql_connect("GARRETT-D3243E9\SQLEXPRESS","sa","Kenman1937");
mssql_select_db("GunzDB");
$opened = 1;
if($opened == 0){
$pagetitle = "Server in maintenance";
}
?>
-
Re: [Tut] Make your GunZWeb+Panel
-
Re: [Tut] Make your GunZWeb+Panel
ZOMG now it works how the..?!? Ohh anyway nvm..
ill edit this post when done.
-
Re: [Tut] Make your GunZWeb+Panel
wdf...
Code:
Returns HomepageHer«
Error
$wut
"; die(); } //Check email function. This to prevent fake emails. (Remember the time YOU doing that?) function checkemail($address) { list($local, $host) = explode("@", $address); $pattern_local = "^([0-9a-z]*([-|_]?[0-9a-z]+)*)(([-|_]?)\.([-|_]?)[0-9a-z]*([-|_]?[0-9a-z]+)+)*([-|_]?)$"; $pattern_host = "^([0-9a-z]+([-]?[0-9a-z]+)*)(([-]?)\.([-]?)[0-9a-z]*([-]?[0-9a-z]+)+)*\.[a-z]{2,4}$"; $match_local = eregi($pattern_local, $local); $match_host = eregi($pattern_host, $host); if($match_local && $match_host) { return 1; } else { return 0; } } //The num_rows() function for ODBC since the default one always returns -1. function num_rows(&$rid) { //We can try it at least, right? $num= odbc_num_rows($rid); if ($num >= 0) { return $num; } if (!odbc_fetch_row($rid, 1)) { odbc_fetch_row($rid, 0); return 0; } if (!odbc_fetch_row($rid, 2)) { odbc_fetch_row($rid, 0); return 1; } $lo= 2; $hi= 8192000; while ($lo < ($hi - 1)) { $mid= (int)(($hi + $lo) / 2); if (odbc_fetch_row($rid, $mid)) { $lo= $mid; } else { $hi= $mid; } } $num= $lo; odbc_fetch_row($rid, 0); return $num; } ?>
= 1) { gtfo("Username in use."); } //Check if the Email is in use. $query2 = odbc_exec($connect, "SELECT AID FROM $accounttable WHERE Email = '" . antisql($_POST['email']) . "'"); $count2 = num_rows($query2); if ($count2 >= 1) { gtfo("Email address in use."); } //Regdate //Time for the real work. Editing this will be the end of your regpage. $query3 = odbc_exec($connect, "INSERT INTO $accounttable (UserID, UGradeID, PGradeID, RegDate, Email, Age, Name) VALUES ('".antisql($_POST['username'])."', '0', '0', '11.03.2207 0:00:00', '".antisql($_POST['email'])."', '".antisql($_POST['age'])."', '".antisql($_POST['name'])."')"); $query4 = odbc_exec($connect, "SELECT AID FROM $accounttable WHERE UserID = '" . antisql($_POST['username']) . "'"); odbc_fetch_row($query4); $aid = odbc_result($query4, 1); //If no results comes back. (Registration failed.) if (!$aid) { gtfo("Shit happened. Please report this bug at our forums."); } odbc_exec($connect, "INSERT INTO $logintable (UserID, AID, Password, euCoins) VALUES ('".antisql($_POST['username'])."', '$aid', '".antisql($_POST['password'])."', '0')"); //When everything is done, show the username/password to the visitor. gtfo("Your account has been created.
Username: $_POST[username]
Password: $_POST[password]
Have fun at $servername!"); } //Here the party begins. Feel free to edit this. echo "Register an account at $servername.
Username:
Password:
E-mail:
Name:
Age:
"; ?>
Copyright 2008 Wizkid - .
-
Re: [Tut] Make your GunZWeb+Panel
Fatal error: Call to undefined function mssql_connect() in C:\AppServ\www\config.php on line 2
:S?
-
Re: [Tut] Make your GunZWeb+Panel
i fixed the above problems
you cant have mysql installed with appache or your webserver the mysql connection stuff dont install mysql with your webserver
-
Re: [Tut] Make your GunZWeb+Panel
Fatal error: Call to undefined function mssql_connect() in C:\AppServ\www\config.php on line 2 Please help fix Q.Q
-
Re: [Tut] Make your GunZWeb+Panel
I edited the main post, add the "registrer.php" which is what caused all the problems ... Since my "tables" are different from that upload. To fix the problem, replace the "register" old for new.
-
Re: [Tut] Make your GunZWeb+Panel
-
Re: [Tut] Make your GunZWeb+Panel
-
Re: [Tut] Make your GunZWeb+Panel
Thanks Jizeth. Many people have problems with this shit.
-
Re: [Tut] Make your GunZWeb+Panel
Fatal error: Call to undefined function mssql_connect() in C:\AppServ\www\config.php on line 2
Please help
-
Re: [Tut] Make your GunZWeb+Panel
need help please, i can't replace the dbo.Account table. i always got dependency error everytime i want to delete dbo.Account. any suggestion?
NOTE: I'm Using SQL Server 2008 Enterprise Edition
-
Re: [Tut] Make your GunZWeb+Panel
This is to killerstefan..
You never should infract me for a stupid reason.
So now i'm releasing his website .psd ...
Quote:
Dear RodiSR,
You have received an infraction at RaGEZONE - MMORPG server development forums.
Reason: Spamming
-------
Je kan het echt niet laten he :(
-------
This infraction is worth 1 point(s) and may result in restricted access until it expires. Serious infractions will never expire.
Original Post:
http://forum.ragezone.com/f496/wip-p...9/#post5910949
Quote:
Originally Posted by Synix
either you
True, i can only use Microsoft word trying to hack with it.
All the best,
RaGEZONE - MMORPG server development forums
http://img833.imageshack.us/img833/9...7techfinal.png
Download link :
Filebeam - Beam up that File Scottie!
-
Re: [Tut] Make your GunZWeb+Panel
How could I Know the site or it is working well?
:?:
---------- Post added at 11:06 AM ---------- Previous post was at 11:04 AM ----------
Quote:
Originally Posted by
ybrick
How could I Know the site or it is working well?
:?:
Can someone Help me...
-
Re: [Tut] Make your GunZWeb+Panel
ok so I followed all the steps one by one. and followed the letter and here is what i get
Code:
Fatal error: Call to undefined function mssql_connect() in C:\AppServ\www\config.php on line 2
I know i did it correctly But When i opened the .sql files and changed to batabase to GunzDB it said
Code:
there is already a table named that"
Code:
<?php
mssql_connect("WINDOWS2003\SQLEXPRESS","sa","player09");
mssql_select_db("GunzDB");
$opened = 1;
if($opened == 0){
$pagetitle = "Server in maintenance";
}
?>
the admin panle works
Code:
;extension=php_mime_magic.dll
extension=php_ming.dll
extension=php_mssql.dll
;extension=php_msql.dll
could it be the sql's i had to install on the database?
-
Re: [Tut] Make your GunZWeb+Panel
-
Re: [Tut] Make your GunZWeb+Panel
Nice tut thank help alot :P