|
|
 |
 |
 |
 |
|
 |
 |
|
 |
 |
|
 |
|
Support::Linux Servers Support forum for Linux EQEMu users. |

10-23-2006, 05:57 AM
|
AX Classic Developer
|
|
Join Date: May 2006
Location: filler
Posts: 2,049
|
|
Quote:
Originally Posted by Dr Zauis
Crap..Same error..I DLed it right from the link that say its corrected for windows.Not from the top.(on your website)
|
For some strange reason, my router gets hung up when it sends files out- and freezes. I am going to change routers ( I have a spare one) see if it gets better.
EDIT;
I swapped routers - hopefully it works better now.
Last edited by Angelox; 10-23-2006 at 02:27 PM..
|

10-23-2006, 02:24 PM
|
 |
I know how to fix that!
|
|
Join Date: May 2005
Posts: 447
|
|
I dont think the file was changed..I get the same error. Anyway I have the DB from Aposhis Project but I dont know if that works for Dev binaries?
It was a Dark Rogue Productions Server and I know back at 6.2 version they were different. I know virtually nothing beyond 6.2 after that things got changed in a hurry! I couldnt keep up.
Anyway. Why not upload a sourced Database that you know works for the new Linux tutorial?(please) If it were in .tar.gz format it would make it really easy for me to use it. Or it can be .rar and I can use windows to decompress
Or if some one else has something they know will work Im interested in anything that will get me away from having to do it myself from the Luclin RC1 DB!
__________________
Server_Op: ForbiddenZone
|
 |
|
 |

10-24-2006, 10:20 PM
|
AX Classic Developer
|
|
Join Date: May 2006
Location: filler
Posts: 2,049
|
|
Quote:
Originally Posted by Dr Zauis
I dont think the file was changed..I get the same error. Anyway I have the DB from Aposhis Project but I dont know if that works for Dev binaries?
It was a Dark Rogue Productions Server and I know back at 6.2 version they were different. I know virtually nothing beyond 6.2 after that things got changed in a hurry! I couldnt keep up.
Anyway. Why not upload a sourced Database that you know works for the new Linux tutorial?(please) If it were in .tar.gz format it would make it really easy for me to use it. Or it can be .rar and I can use windows to decompress
Or if some one else has something they know will work Im interested in anything that will get me away from having to do it myself from the Luclin RC1 DB!
|
I was just told that this error comes from MySql DB with versions lower than 4.1
Code:
Line no.:42
Error Code: 1064 - 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 'DEFAULT CHARSET=utf8' at line 14
Time to upgrade! 
|
 |
|
 |

10-24-2006, 10:41 PM
|
Hill Giant
|
|
Join Date: Dec 2005
Location: Lurking in KY
Posts: 239
|
|
I downloaded your windows version on an extra HD to help verify any errors.
Only things on this server that, I believe, would/ might have any influence
Windows XP,
MS Visual Studios,
Xampp Server Panal Controls,
Useing MySql 5.0.
I also get the 1064 error code.
MySQL Error Nr. 1064 - You have an error in your sql syntax... use near 'DEFAULT CHARSET=utf8' at line 14.
no clue what is doing this tho, as I havent really had much time to examine it with the changes I am makeing to my dbase on the server.
|

10-24-2006, 10:45 PM
|
AX Classic Developer
|
|
Join Date: May 2006
Location: filler
Posts: 2,049
|
|
Quote:
Originally Posted by bufferofnewbies
I downloaded your windows version on an extra HD to help verify any errors.
Only things on this server that, I believe, would/ might have any influence
Windows XP,
MS Visual Studios,
Xampp Server Panal Controls,
Useing MySql 5.0.
I also get the 1064 error code.
MySQL Error Nr. 1064 - You have an error in your sql syntax... use near 'DEFAULT CHARSET=utf8' at line 14.
no clue what is doing this tho, as I havent really had much time to examine it with the changes I am makeing to my dbase on the server.
|
Did you try the original MySQL 5 version (it's posted up top the page)? I took the other off as it didn't help anyone.
EDIT;
What version MySql do you have?
|

10-24-2006, 10:49 PM
|
Hill Giant
|
|
Join Date: Dec 2005
Location: Lurking in KY
Posts: 239
|
|
I used the ax_peq15.rar,
not sure if you changed that version or not w/o a numeric change. If so, I will reload and retry (at least after i wake up.. been up all night now haha)
|
 |
|
 |

10-24-2006, 11:06 PM
|
AX Classic Developer
|
|
Join Date: May 2006
Location: filler
Posts: 2,049
|
|
Here's some points of interest from the MySql site;
Taken from here
http://dev.mysql.com/tech-resources/...1/unicode.html
Quote:
Migrating from 4.0 to 4.1
If you have been using MySQL 4.0 as I outlined above, storing UTF-8 data in string columns regardless of the default server character set, one of the things you will want to do after upgrading to MySQL 4.1 is actually let the server know the true character set of those columns. But if you simply do an ALTER TABLE myTable MODIFY myColumn VARCHAR(255) CHARACTER SET utf8, the server will try to convert the data in the myColumn column from the server default character set to UTF-8. You need to do a two-step conversion to avoid this:
ALTER TABLE myTable MODIFY myColumn BINARY(255);
ALTER TABLE myTable MODIFY myColumn VARCHAR(255) CHARACTER SET utf8;
If you have multiple columns in the same table, you should do each step for all of the columns at the same time, to avoid having the entire table rebuilt for each step of converting each column. The "Converting 4.0 Character Columns to 4.1 Format" section of the manual provides an example of that.
If you were already using a specific server character set with MySQL 4.0, you can see how those character sets were mapped to the new character sets and collations in MySQL 4.1 in the "4.0 Character Sets and Corresponding 4.1 Character Set/Collation Pairs" section of the manual.
|
|
 |
|
 |

10-24-2006, 11:09 PM
|
 |
I know how to fix that!
|
|
Join Date: May 2005
Posts: 447
|
|
Quote:
Originally Posted by Angelox
I was just told that this error comes from MySql DB with versions lower than 4.1
Code:
Line no.:42
Error Code: 1064 - 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 'DEFAULT CHARSET=utf8' at line 14
Time to upgrade! 
|
OK..Yeah. It makes sense
So I guess Ill have to upgrade. Or try to.
__________________
Server_Op: ForbiddenZone
|

11-13-2006, 12:37 AM
|
Hill Giant
|
|
Join Date: Jul 2006
Posts: 166
|
|
Since I decided not to invest any more time into eqemu right now I am abandoning the guide.
It was a tough decision but there is more to life than sitting in front of a computer solving other peoples problems. I have more than enough of this at work.
There are enough people who set up a working Linux Server who can fill in the gaps.
|

11-14-2006, 01:35 AM
|
Demi-God
|
|
Join Date: Jul 2006
Posts: 1,552
|
|
:(
But you were so good at it.  I'll see what I can do to update. I've messed with FC4 enough to be able to set stuff up in about 30 mins now. But you are the master at finding low-level stuff I would never think of. I hope all is well, and we still see you haunting the forums, eq4me.
Take care,
J
|

11-14-2006, 10:43 AM
|
Hill Giant
|
|
Join Date: Jul 2006
Posts: 166
|
|
Quote:
Originally Posted by John Adams
:(
But you were so good at it.  I'll see what I can do to update. I've messed with FC4 enough to be able to set stuff up in about 30 mins now. But you are the master at finding low-level stuff I would never think of. I hope all is well, and we still see you haunting the forums, eq4me.
Take care,
J
|
Sure, but my job is getting a bit hectic right now. I rather spend my little spare time away from stuff that smells like work. Of course I will have a look what people update to the guide and make corrections if needed.
And to be completely honest I am a bit miffed that important information is only floating around in the forum and not updated in the Wiki. It isnt much harder to update the appropriate wiki entry and point to it then writing the answer in an thread.
|
Thread Tools |
|
Display Modes |
Hybrid Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -4. The time now is 09:01 AM.
|
|
 |
|
 |
|
|
|
 |
|
 |
|
 |