Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Flyff > Flyff Private Server
You last visited: Today at 07:27

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Sapphire Flyff Homepage (NC)

Discussion on Sapphire Flyff Homepage (NC) within the Flyff Private Server forum part of the Flyff category.

Reply
 
Old   #1
 
Serenity-.'s Avatar
 
elite*gold: 20
Join Date: Jun 2013
Posts: 445
Received Thanks: 76
Sapphire Flyff Homepage (NC)

Bei mir kommt beim Registrieren dieser Error.






Wäre cool wenn mir da jemand aushelfen würde
Serenity-. is offline  
Old 10/27/2013, 20:01   #2
ベトナム警察




 
Lumi's Avatar
 
elite*gold: 725
The Black Market: 516/0/0
Join Date: Jan 2012
Posts: 16,371
Received Thanks: 3,429
Das erste Bild kann man leider nicht anschauen.
Lumi is offline  
Old 10/27/2013, 20:50   #3
 
Serenity-.'s Avatar
 
elite*gold: 20
Join Date: Jun 2013
Posts: 445
Received Thanks: 76
#Updated
Serenity-. is offline  
Old 10/27/2013, 20:51   #4


 
™Daywalker's Avatar
 
elite*gold: 0
Join Date: Dec 2010
Posts: 506
Received Thanks: 115
Hast du in der Config ein Passwort von Mssql angegeben ?
™Daywalker is offline  
Old 10/27/2013, 20:55   #5
 
Serenity-.'s Avatar
 
elite*gold: 20
Join Date: Jun 2013
Posts: 445
Received Thanks: 76
ich hab kein passwort drin
Serenity-. is offline  
Old 10/28/2013, 11:00   #6


 
™Daywalker's Avatar
 
elite*gold: 0
Join Date: Dec 2010
Posts: 506
Received Thanks: 115
dann könnte das daran liegen
™Daywalker is offline  
Old 10/28/2013, 11:06   #7
 
Simon©'s Avatar
 
elite*gold: 0
Join Date: Sep 2013
Posts: 34
Received Thanks: 4
In der ACCOUNT_TBL oder ACCOUNT_TBL_DETAIL fehlen Spalten. Hatte das gleiche Problem. Hast du alle .sql Daten ausgeführt? Wenn ja geh in die ACCOUNT_TBL und erstell die Spalte "votepoints" mach bei "INT" das Häckchen weg und setz den Wert auf "((0))" So hat es bei mir dann auch geklapt! Mit der Line 108 hat es in dem Fall nichts zutuhn.
Simon© is offline  
Old 10/28/2013, 12:52   #8
 
elite*gold: 0
Join Date: Oct 2007
Posts: 491
Received Thanks: 732
Quote:
Originally Posted by Simon© View Post
In der ACCOUNT_TBL oder ACCOUNT_TBL_DETAIL fehlen Spalten. Hatte das gleiche Problem. Hast du alle .sql Daten ausgeführt? Wenn ja geh in die ACCOUNT_TBL und erstell die Spalte "votepoints" mach bei "INT" das Häckchen weg und setz den Wert auf "((0))" So hat es bei mir dann auch geklapt! Mit der Line 108 hat es in dem Fall nichts zutuhn.
Zusätzlich dazu: Existiert die Prozedur "usp_createAccount"?
Marv!n is offline  
Old 10/28/2013, 14:39   #9
 
Serenity-.'s Avatar
 
elite*gold: 20
Join Date: Jun 2013
Posts: 445
Received Thanks: 76
Die prozedur createaccount exestiert und hatte beim executen kein problem

Das habe ich getan error kommt immer noch ..

Serenity-. is offline  
Old 10/28/2013, 19:13   #10


 
™Daywalker's Avatar
 
elite*gold: 0
Join Date: Dec 2010
Posts: 506
Received Thanks: 115
Versuch mal MSSQL neu zu installieren aber diesmal mit Passwort.
™Daywalker is offline  
Old 10/28/2013, 22:18   #11
 
Akihiko Kayaba's Avatar
 
elite*gold: 125
Join Date: Apr 2013
Posts: 518
Received Thanks: 97
Lasse dir einmal die Abfrage aus dem Registrationsskript ausgeben und füge sie manuell in den SQL Manager ein, sprich:

PHP-Code:
else {
if(odbc_exec($odbc_connect, '
EXEC [' . $_CONFIG['db_databases']['acc'] . '].[dbo].[usp_createAccount] @account=\'' . $account . '\', @pw=\''.$md5pw.'\', @email=\''.$email.'\', @gefra=\''.$gefra.'\', @geant=\''.md5($_CONFIG['security_secretAnswerSalt'].$geant).'\', @birthday=\''.date($_CONFIG['web_date_format']['date'], strtotime($birthday)).'\', @ip = \'' . $_SERVER['REMOTE_ADDR'] . '\', @lang=\'' . $_CONFIG['web_default_lang'] . '\'
')) {
$_SESSION['user'] = strtolower($account);
$_SESSION['votepoints'] = 0;
$_SESSION['cash'] = 0;
echo createMessage('The account ' . cleanHtmlOutput($account) . ' was registered successfully.', 'success');
}
else {
echo createMessage('There is currently a database malfunction. Please try again later.', 'fail');
}
}
wird zu
PHP-Code:
/*if(odbc_exec($odbc_connect, '
EXEC [' . $_CONFIG['db_databases']['acc'] . '].[dbo].[usp_createAccount] @account=\'' . $account . '\', @pw=\''.$md5pw.'\', @email=\''.$email.'\', @gefra=\''.$gefra.'\', @geant=\''.md5($_CONFIG['security_secretAnswerSalt'].$geant).'\', @birthday=\''.date($_CONFIG['web_date_format']['date'], strtotime($birthday)).'\', @ip = \'' . $_SERVER['REMOTE_ADDR'] . '\', @lang=\'' . $_CONFIG['web_default_lang'] . '\'
')) {
$_SESSION['user'] = strtolower($account);
$_SESSION['votepoints'] = 0;
$_SESSION['cash'] = 0;
echo createMessage('The account ' . cleanHtmlOutput($account) . ' was registered successfully.', 'success');
}
else {
echo createMessage('There is currently a database malfunction. Please try again later.', 'fail');
}*/
echo '
EXEC [' . $_CONFIG['db_databases']['acc'] . '].[dbo].[usp_createAccount] @account=\'' . $account . '\', @pw=\''.$md5pw.'\', @email=\''.$email.'\', @gefra=\''.$gefra.'\', @geant=\''.md5($_CONFIG['security_secretAnswerSalt'].$geant).'\', @birthday=\''.date($_CONFIG['web_date_format']['date'], strtotime($birthday)).'\', @ip = \'' . $_SERVER['REMOTE_ADDR'] . '\', @lang=\'' . $_CONFIG['web_default_lang'] . '\'
';
Akihiko Kayaba is offline  
Old 10/28/2013, 22:20   #12
ベトナム警察




 
Lumi's Avatar
 
elite*gold: 725
The Black Market: 516/0/0
Join Date: Jan 2012
Posts: 16,371
Received Thanks: 3,429
Quote:
Originally Posted by Serenity-. View Post
Die prozedur createaccount exestiert und hatte beim executen kein problem

Das habe ich getan error kommt immer noch ..

Hast du auch die Spalten in der Account_Detail erstellt (Lastvote1,2,3,votepoints) ?
Lumi is offline  
Old 10/29/2013, 17:12   #13
 
Serenity-.'s Avatar
 
elite*gold: 20
Join Date: Jun 2013
Posts: 445
Received Thanks: 76
Wie war das nochmal
Lastvote
Lastvote1
Lastvote2
votepoints

??? und der dateityp ???
Serenity-. is offline  
Old 10/29/2013, 18:47   #14
 
xTwiLightx's Avatar
 
elite*gold: 0
Join Date: Jan 2009
Posts: 1,739
Received Thanks: 1,669
Quote:
Originally Posted by Nightr0ad View Post
Versuch mal MSSQL neu zu installieren aber diesmal mit Passwort.
Schwachsinn, man kann nachträglich Logins mit Passwort erstellen, auch das Passwort von sa ändern.
Quote:
Originally Posted by Serenity-. View Post
Wie war das nochmal
Lastvote
Lastvote1
Lastvote2
votepoints

??? und der dateityp ???
Lastvote,Lastvote1,Lastvote2 = datetime (denke ich mal?)
votepoints = int

Falls die Spalten schon existieren, hier ein paar Constraints, damit Fehler wie NaN verhindert werden:
Code:
USE ACCOUNT_DBF
GO
ALTER TABLE ACCOUNT_TBL ADD CONSTRAINT [DF_ACCOUNT_TBL_votepoints]  DEFAULT ((0)) FOR [votepoints]
GO
ALTER TABLE ACCOUNT_TBL ADD CONSTRAINT [DF_ACCOUNT_TBL_Lastvote]  DEFAULT (getdate()) FOR [Lastvote]
GO
ALTER TABLE ACCOUNT_TBL ADD CONSTRAINT [DF_ACCOUNT_TBL_Lastvote1]  DEFAULT (getdate()) FOR [Lastvote1]
GO
ALTER TABLE ACCOUNT_TBL ADD CONSTRAINT [DF_ACCOUNT_TBL_Lastvote2]  DEFAULT (getdate()) FOR [Lastvote2]
GO
xTwiLightx is offline  
Old 10/29/2013, 20:27   #15
 
Serenity-.'s Avatar
 
elite*gold: 20
Join Date: Jun 2013
Posts: 445
Received Thanks: 76
Immer noch der gleiche Error mit odbc_exec /regist.php on line 108

Ich glaube nicht das es am nicht vorhandenen mssql passwort liegt
Serenity-. is offline  
Reply


Similar Threads Similar Threads
[HELP] Sapphire Flyff Homepage
09/25/2013 - Flyff Private Server - 3 Replies
Hallo Epvpers, Ich wollte mal die Sapphire Homepage v1.2 Beta ausprobieren. Im Grunde funktioniert alles, außer im Admin Pannel, wenn ich auf den Spendenshop gehe, wird mir sowas angezeigt: http://i.epvpimg.com/MBJlh.png und wenn ich trotzdem versuchen möchte eine Kategorie zu erstellen, dann kommt das:
Register Sapphire Flyff Homepage [Problem]
06/17/2013 - Flyff Private Server - 14 Replies
Liebe Epvpers, ich bzw. wir haben ein Problem mit der Homepage von Sapphire Flyff. Das Problem ist, dass keine Bestätigungs E-Mail gesendet wird. Kennt einer von euch dieses Problem und oder hättet ihr eine Lösung, wie wir dieses Problem beheben könnten. EDIT: Eine andere Frage gibt es ein Skript, bei der die Registrierung auch ohne Bestätitungs Mail funktioniert Danke im Voraus



All times are GMT +2. The time now is 07:27.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.