I want to add this to the Wiki
I want to add this guide to the wiki, I'm unsure of how to make a new page.
------------ Setting up EQEmu-0.7.0-845 Minilogin with MySQL 5.0.24 Why use MySQL 5, you might be asking. Well simple. You use it because it |
Ran out of space ^-^
Now for necessary modifications to make the database work with EQEmu 7.0-845. Warning: Some of these may fail. Just keep executing them in the order that they appear.
Code:
ALTER TABLE spawnentry DROP spawn_limit; Backing your Database up (A.K.A. Saving face and rear.) While administrator has a nice function for backing data up, it takes a lot more room than a standard backup. So here |
So, How do I make a new page in the Wiki for this? (I want to do it ^-^)
|
Login or Register and make a page? It's not that hard, really.
I do have to admit that walkthrough is pretty good. :) Edit: I almost forgot. The full version of the eq_emuconfig.xml is included with the distribution pack. It's eqemu_config.xml.full - just open it notepad or whatever and save it as eqemu_config.xml, overwriting the old one. |
Ok, I think I've got the hang of it. ^-^ Well, this post is now useless. Could you delete it?
|
How do I make a code window in wiki?
|
Why not edit your posts intead of adding a new post again?
Anyways, when you log in with your account you can see the other example pages to see the code. Check the edit button at the bottom left, but do not change anything. This is just to see the code so you can make one yourself. If you don't have any html experience, then I would recommend reading up on it a bit before you make a page. :) There's wikki tutorial sites on the internet as well. |
Sorry about double posting. If I edited the post I felt that it would've negated what I said. I'll be carefull from now on.
|
It won't let me edit my last post.
Ok, this is an Update. I've added this guide into the Wiki. http://www.eqemulator.net/wiki/wikka...kka=KayotBlade So, this thread is now delete-able. Sorry about all the posts. |
we dont delete any posts.
|
Excellent work, Kayot. Thank you.
|
No problem. It was fun. Besides we needed a good install guide. the others all wanted to use full installers. Thats a no no when making install guides.
|
I am stuck on this portion of your setup Kayot:
Modify this with the IP of the computer that will be connecting to the server. Admin is the username. INSERT INTO accounts VALUES (1, 'Admin', '', 0, 'mini', 250, , 0, 0, 0, 0, 'IP of Account') I get a syntax error everytime I try to manipulate this value. I am unsure where exactly I need to place the IP address or at least what format it needs to be in. I thought I needed to replace the 0 ,0 ,0 , 0, but I get an error with that. I've tried a couple of different ways to enter this in and they have not worked. I'm also wondering if there needs to be a semi colon at the end of this command. |
Quote:
|
Quote:
INSERT INTO accounts VALUES (1, 'Admin', '', 0, 'mini', 250, , 0, 0, 0, 0, '192.168.0.22') I get: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' 0, 0, 0, 0, 192.168.0.22)' at line 1 1064 Which is the same error I get every time I've entered this line into the query browser. |
Don't forget the ; at the end of the command.
|
Quote:
|
Try it this way....
Code:
INSERT INTO accounts VALUES (1, 'Admin', '', 0, 'mini', 250, , 0, 0, '192.168.0.22', 0, 0); |
Quote:
http://dev.mysql.com/downloads/gui-tools/5.0.html MySQL Query Browser will give you a "visual" on all this and you'll be able to see better what you are doing, right or wrong. Also, if you install this, take notice of the bottom right-hand corner where there is a great help and info on what to do :) Also, this one helps a lot ; MySQL Administrator 1.2 for back ups, setting privs., etc |
Quary browser
i just trying tis out but what do you put in server host spot in the Quary browser ?
thanks for the help and when i put my server router ip iget this mysql error #1130 host'bsa1-windsor 12-1088735676.dsl.bell.canot allowedto connectto this mysql server any hel would be great |
SQL syntax error
--------------------------------------------------------------------------
when using: INSERT INTO accounts VALUES (1, 'Admin', '', 0, 'mini', 250, , 0, 0, 0, 0, '192.168.0.22') You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' 0, 0, 0, 0, 192.168.0.22)' at line 1 1064 -------------------------------------------------------------------------- Worktruck, I got this same error. You may have already fixed this, but I'm going to put in what worked for me in case anyone else has this issue. To fix this error I used: INSERT INTO account VALUES (1, 'Admin', '', 0, 'mini', 250, '', 0, 0, 0, 0, '192.168.0.22'); I needed account instead of accounts (my db was using this word). I needed to send an empty string in the seventh field (did I leave strict mode on?). I also put in a semicolon at the end of the command. I hope this helps anyone out there that's stuck. Moonracer |
Those are Two Single quotes put together - for those that wonder what the " is. It looks like (dbl quote) '' or (two songle quote) " - similar but wrong.Mysql can use either for strings, but they must be two of each to encapsulate a string. Numeric variables can use 2 single quotes
Just FYI GeorgeS The MySQL King |
All times are GMT -4. The time now is 02:14 AM. |
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.