The user or password (most likely password) to connect to the database is wrong, go to ForsakenFlyff\inc\config.inc.php, open it with a text editor (or your favorite PHP IDE) and change the variable that contains the wrong password (you'll have to look around for it, I can't exactly point you to the line as I don't have that file) to the right password to connect to your database.
If there's no variable that holds the password, look for odbc_connect (still in the same file) and change the credentials there.
You can ignore the errors below the first one. The first error is what's indirectly causing the other errors.
Last edited by Maples; 11-07-12 at 08:37 PM.
which one here should i change?
Spoiler:
Last edited by Sexytana; 11-07-12 at 09:11 PM.
Ah, I see. The password is set using the define function. Search for this text: define('MSSQL_PASS', then you'll probably come accross a line like this:
Now change SomePasswordHere to the password of your SQL Server.define('MSSQL_PASS', 'SomePasswordHere');
can you please highligted where i should change the pass?
Spoiler:
Right here:
Note that, if these little things are too hard for you, I can, in no way, advise you to continue working on a flyff server/website. You'll run in way too much problems that you can't solve by yourself, just a heads-up.// SQL Data
define('MSSQL_HOST', 'STEFAN-PC\SQLEXPRESS'); // MsSQL Host
define('MSSQL_USER', 'sa'); // MsSQL Username
define('MSSQL_PASS', 'password'); // MsSQL Password
the thing is ive already change that into my SQL password ****** and when im trying to look on my local host it says like this:
Spoiler:
Are you absolutely sure the password you entered is working? Have you tried connecting to the database using SQL Server Management Studio?
Last edited by Sexytana; 11-07-12 at 10:08 PM.
Connect to your server using SQL Server Management Studio, right click Databases and click on Restore Database...
In To Database (1) enter WEBSITE_DBF, then select the From device: (2) option, and lastly click the button to the right (3)
It'll open a new window. Now click Add (1), select the WEBSITE_DBF file and click OK (2).
When that's done, you'll return to the previous window (which was still open). Press OK there and you'll have the database restored.
Edit: To put your server online, see: http://forum.ragezone.com/f483/new-d...8/#post7124266
Last edited by Sexytana; 12-07-12 at 02:01 AM.
It's telling you that one "column" from a table that the register page is using doesn't exist.
Is there a column in your Database called "OldPassword"?
If not, check the script... see what columns it uses, then check them against the database and make sure they match correctly.
this what i got in my data base acount_tbl tables coloumn
some are not existing cplumns in my data base are:
Spoiler:
the red highlighted are not existing in my columns how do i edited them to disappear and avoid error in my webpage
•also i havce this error in vote script can anyone please help or tell me what should i need to do to avoid this error. :(
please help thanks in advance :D
Last edited by Sexytana; 12-07-12 at 03:05 AM.
Did you even read the ReadMe.txt? Read it first, follow the steps (translate it to English if you do not understand German) and you'll should be fine.
So bottomline; add the columns from 4. to ACCOUNT_DBF -> ACCOUNT_TBLOriginally Posted by ReadMeTxt
@Your post before, you asked me how you could restore a database, so I gave you a tiny tutorial..