View Single Post
  #208  
Unread 08-31-2005, 11:28 PM
P05tM0rtm P05tM0rtm is offline
A Coastal Crab
 
Join Date: Jun 2005
Server: Crushbone
Posts: 1
Default

Quote:
Originally Posted by Mithriler
Anyone knows why i'm getting this error?
9: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 'ENGINE=MyISAM' at line 1
FWIW, I got this too initially. Even though the fix was posted:
Quote:
Originally Posted by taliesan
figured out what my problem with the database was.. It didnt like me defining the Engine.

By Changing This:
,PRIMARY KEY(`id`)) ENGINE=MyISAM;";

To This:
,PRIMARY KEY(`id`));";

The problem was resolved.
This fix corrected my error too, ty poster




Quote:
Originally Posted by Mikeablah
That ;nsbps thingy on the bottom left is what you referring to? Its been doing that since the update to eq2players.
-It shows   instead of the player rank
The fix for this is very easy actually, but took me a few hours of sifting to find. (hope you dont mind me digging in, 0ctavius)
In the image.php file, there are 3x instances of:
*also 3x instances in test.php, fwiw*
Code:
$i = $k-1;
change these to:
Code:
$i = $k-2;


Another anomaly id like to see squashed is in Advanced mode:
-It shows 'ToolTip' in the mental number

...also shows addition of ' ToolTip' text in the DB as well as in test.php:
http://www.clanmist.com/eq2sig/test.php?cid=318550207
Havent figured this one out yet, 'cept just a str_replace to get rid of it altogether in the global.php, get_html function.


I for one like your code, not my style of writing, but definately not bloated, good job.

Last edited by P05tM0rtm : 09-01-2005 at 02:10 AM.
Reply With Quote