SEO-Board: Free, Fast and Search Engine Optimization Friendly Forum Script
»User: »Password:   Remember Me? 
Posted:  12 Jul 2011 09:26
hi

i have a problem. When i try to progress install.php an error.
Deprecated: Function set_magic_quotes_runtime() is deprecated in C:\wamp\www\forum\install.php on line 7

and

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 'TYPE=MyISAM' at line 12

i cant fix this problem. Anybody can help me?
Posted:  12 Jul 2011 09:29
my version:
Apache/2.2.17 (Win32) PHP/5.3.5
MySQL istemci sürümü: mysqlnd 5.0.7-dev - 091210 - $Revision: 304625 $
PHP uzantısı: mysqli
Posted:  12 Jul 2011 11:34
Apache and MYSQL have new versions and that's the problem.
Replace this line
Code:

set_magic_quotes_runtime(0);
with this line
Code:

ini_set('magic_quotes_runtime', 0);

and in the install.php script change the TYPE=MyISAM to  ENGINE=MyISAM in all tables.
Posted:  13 Jul 2011 07:18
thank you.