Witam serdecznie otóż borykam się z takim błędem który bardzo mało mi mówi i niewiem co mam zrobić aby poprawnie połaczyć Account Menagera z bazą danych servera gry MSSQL wszystkie dane wpisałem poprawnie ale niewiem dlaczego niełonczy z bazą danych a oto komunikat jaki otrzymuję przy próbie utworzenia konta :
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, admin@example.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
podaję też script dwa scripty ponieważ wszystkiego jest bardzo dużo i zaspamował bym cały post a myślę iż te dwa są najważniejsze ale jeśli będzie trzeba dodam resztę oto scripty
index.php
<?php
require "./config.php";
require "./encrypt.php";
for ($i=1;$i<=count($maint);$i++) {
if ($datehour == $maint[$i])
{
$mainttime = '1';
}
}
if ($debug == 0 || ($mainttime == '1' && ($datemin <= $maintmax && $datemin >= $maintmin)))
{
include ("./off.php");
}
else
{
include ("./on.php");
}
require "./footer.php";
?>
config.php
<?php
// Turn registration on and off here, 0 for off and 1 for on
$debug = 1;
// Hour and min vars to turn registration on and off for server maintinance
// $maint can store up to 24 hours to turn off registration in a 24-hour format
$maint = array (01 => '2', '4', '10', '12', '18', '20'); $maintmin = 15;
$maintmax = 30;
$mainttime = '0';
// Mailing function (0 for off, 1 for on)
$mail = 1;
// Email address from which to notify users of changes
$from = "***@gmail.com";
// Database Server IP address
$dbhost='89.74.33.xxx';
// Database Server MSSQL engine username
$dbuser='sa';
// Database Server MSSQL username password
$dbpassword='***';
// Enable backend logging (custom for my admin panel)
$log = 0;
// Databse names
// Auth DB
$dbauth = "lin2db";
$dblog = "AdminPanel";
// Flag for encrytion function (0 = unencrypted passwords, 1 = encrypted Passwords)
$encrypted=1;
// Title for your site
$page_title="TiteX";
// Url users can see your games rules
$rulesurl = "http://l2aw.pl";
// Auditing on or off (used if you want to see the actual emails sent out)
$audit = 0;
// Audit email
$auditaddress = "titekso@gmail.com";
// Mass email (used at L2R only)
$massemail = 0;
// Use image verification
$imagever = 1;
// Default language to display in the system in
$dlang = "polish";
// List installed language packs here
$ilang = array (0 => 'English', 'Deutsch', 'Espanol' ,'Francais', 'Greek', 'Italiano', 'Portugues', 'Polish', 'StormBringer');
date_default_timezone_set('America/Chicago');
// ALTER BELOW THIS LINE AT YOUR OWN RISK
// I MAKE NO PERSONAL GUARNTEE THAT THIS
// SCRIPT SYSTEM WILL CONTINUE TO WORK
// IF YOU DO MAKE CHANGES
$headers = "From: ".$from."\r\n";
$months = array (01 => 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September ', 'October', 'November', 'December');
$years = range (1950
, 2006
); $version = "3.3.2";
require ('lang.php');
?>
jeśli ktoś wie jak rozwiązać mój problem bardzo proszę o wypowiedzenie się w tym temacie i nakierowanie mnie co mogę zrobić i jakie kroki poczynić za co z góry dziękuję
Powód edycji: [erix]: nie podawaj publicznie haseł ;) i używaj bbcode