Log in

View Full Version : Problems with SVN/DB Filling


Apoc.Index
08-16-2011, 02:08 AM
Hello, I have recently been having issues trying to get SVN to fill my eqemu folder according to http://eqemulator.org/forums/showthread.php?t=32980
#13. Upon launching SVN checkout and entering http://projecteqdb.googlecode.com/svn/trunk/peqdatabase in the URL of repository it will install and update, however I can never seem to get an actual peqdb_revXXX.sql to show up in my eqemu folder.

All I am receiving is *Database_Incremental* and a few of the other random .sql files.

I must be missing something, Just not 100% certain what. I have looked for a link to get a straight Rev DL however I can only come up with these links:
http://code.google.com/p/projecteqemu/downloads/list
and
http://projecteqdb.googlecode.com/svn/trunk/peqdatabase

From the first one, I dont want bots so I DL'd Rev 1887, and got the same thing, *Database_Incremental*.zip and then proceeded to Dl the bots version only to find the same results.
T
he second URL is the one linked to SVN Checkout, and has given me the same results.

Any ideas would be greatly appreciated!

lerxst2112
08-16-2011, 04:37 AM
The file in database_incremental.zip is the correct file to use. Treat it as version 1900.

Apoc.Index
08-16-2011, 10:51 AM
Wonder full! Thanks Lerxst2112!

Apoc.Index
08-16-2011, 10:58 AM
Oh, sorry another question when sourcing it, when you say treat it as version 1900 am I trying 'source db_rev1900.sql;' or am I supposed to 'source db_dump.sql'.

I know that the db_dump is actually for a person to update the server, however this is suppose to be a fresh install so I shouldn't have to do that, or am I mistaken?

Apoc.Index
08-16-2011, 11:16 AM
Ok, sorry lex for having to ask you a question you already answered here http://eqemulator.org/forums/showthread.php?t=33783&highlight=db_dump.sql

I understand what you mean now, however is there a guide anywhere about how I am supposed to implement these updates? (Sorry im really new)

And then when trying to source db_dump.sql, its not sourcing, its saying it cant find the file that I extracted right into my eqemu folder from the .zip file.

Apoc.Index
08-16-2011, 11:30 AM
Ok all solved, did a bit of looking and found out the only real issue I was having was myself haha. Thanks again lerx!

Apoc.Index
08-16-2011, 12:42 PM
O.k, so a new problem. I got it all up and running Launched the batch and loaded into world made a toon and logged into the the character, However. He did not have the proper GM access so, I did some looking and found Minilogin, I added Minilogin to the DB and added my account. however now after editing the batch to launch Minilogin the world wont show up on server lists.

Is there a way to take Minilogin out of the DB and if so, how do I add an account into the DB and give it the proper access levels without Minilogin?

Thanks guys!

Apoc.Index
08-16-2011, 12:46 PM
I keep correcting myself, /sigh ok. So I found out through navicat I can edit account access. Now I just need to figure out how to get minilogin out of my DB

Apoc.Index
08-16-2011, 01:03 PM
Ok fixed the minilog in issue, removed it from the DB by correcting the same string I Edited to add Minilogin from update variables set value = "Minilogin" where varname = "LoginType";
Too
UPDATE `variables` SET `value` = 'Public' WHERE `varname` = 'LoginType';


Up and running again!