mehh, great release =)
Printable View
mehh, great release =)
Parse error: syntax error, unexpected $end in C:\xampp\htdocs\includes\functions.php on line 596
It's giving me error when ever i log on the site & the error keep poping up "The account doesn't exist"... Help please.. :/
Thank's Vusion for fixing my stuff.. <3 yew Uuuummmhhaaaxxxxx
It's saying about the $con info which would be line 18
Undefine function etc...
Code:$con = mssql_connect($_CONFIG['host'], $_CONFIG['user'], $_CONFIG['pass']) or die("Failed to connect to the database!");
mssql_select_db($_CONFIG['dbn'], $con) or die("Failed to select the database!");
Open up the php.ini and find short_open_tag, change off to on, and restart the apache server.
Hmm, I'm guessing that I'm missing some files,
Code:php_ming.dll
php_mssql.dll
I recorded a small video yesterday.
Fix for Fatal error: Call to undefined function mssql_connect() - YouTube
Code:ntwdblib.dll : http://www.mediafire.com/?g8g2bf2tgtd67u3
1.Put the DLL in php6, Apache 2.2, bin (found in the "Apache 2.2").
2.Open up the php.ini and remove the ";" before these lines :
extension=php_ming.dll
extension=php_mssql.dll
3.You restart your apache server.
Thread updated.
sir help me i have this error
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in C:\AppServ\www\gunzonline3\includes\class_config.php on line 10
i follow the instruction but same problem..
---------- Post added at 08:14 AM ---------- Previous post was at 08:06 AM ----------
please help me i got this error
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in C:\AppServ\www\gunzonline3\includes\class_config.php on line 10
Help me how to fix this line error,,i like your web....Quote:
<?php
session_start();
date_default_timezone_set('Europe/Amsterdam');
/**************************************/
// Configuration -> Galaxy GunZ //
/************************************/
// Settings to connect to the database. //
$_CONFIG['host'] = "mysql;
$_CONFIG['user'] = "sa";
$_CONFIG['pass'] = "mypassword";
$_CONFIG['dbn'] = "GunzVG";
// Site online/offline. 1 = on, 0 = off.
$_CONFIG['mode'] = 1;
$_CONFIG['modemsg'] = "<br /><br /><center>Website is currently turned off.</center>";
$con = mssql_connect($_CONFIG['host'], $_CONFIG['user'], $_CONFIG['pass']) or die("Failed to connect to the database!");
mssql_select_db($_CONFIG['dbn'], $con) or die("Failed to select the database!");
if($_CONFIG['mode'] == 0)
{
die($_CONFIG['modemsg']);
}
$host = "mysql";
$user = "sa";
$pass = "mypassword";
$dbname = "GunzVG";
$connect = odbc_connect("Driver={SQL Server};Server={$host}; Database={$dbname}", $user, $pass) or die("Can't connect the MSSQL server.");
$emblemfolder = "emblem"; //Emblem folder for the emblem uploader.
$servername = "my GunZ"; //The title of the website.
$downloadlink = "http://multiupload.com"; //Download link for the navbar and side links.
$forumlink = "Http://forum.ragezone.com"; //Forum link for the navbar.
$votelink = "http://top200.top-site-list.com/vote380.html"; //Vote link for the navbar.
$matchserverport = 6000; //Leave it the way it is if you don't know what it is.
$matchagentport = 7777; //Leave it the way it is if you don't know what it is.
?>