[Help] PRoblem with website and register
I Put This http://forum.ragezone.com/f525/ro2-web-temp-501249/ Website And When I Config it and Going to test it show me this!
Warning: mysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MySQL client in c:\appserv\www\inc\config.php on line 7
Client does not support authentication protocol requested by server; consider upgrading MySQL client
What i shoud Do??? :$: plss help!!!
and where i can register manual if i hawe saga files
Re: [Help] PRoblem with website and register
what version of mysql u using? did u made a query on your database after editing config? ived been running the site given without probs, except that gateway crashes everynow n then but i changed n now it doesnt crash on me since i point the port to authentication server port instead of gateway's...
Re: [Help] PRoblem with website and register
I use MSQL 6 ! i hawe bad english!! what is query??
Re: [Help] PRoblem with website and register
Quote:
Originally Posted by
skipy
I use MSQL 6 ! i hawe bad english!! what is query??
Please refer to this topic http://forum.ragezone.com/f525/web-release-508402/
Open your navicat...Open your RO2 database.. Go to your queries and press new queries then paste this in
Code:
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for news
-- ----------------------------
DROP TABLE IF EXISTS `news`;
CREATE TABLE `news` (
`ID` int(10) NOT NULL AUTO_INCREMENT,
`date` date NOT NULL,
`desc` varchar(32) NOT NULL,
`news` blob NOT NULL,
`headline` varchar(32) NOT NULL,
`postedby` varchar(32) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records
-- ----------------------------
And Run Your New Made Queries... There will be a new table in your tables named "News" ...hope that works for u :rolleyes: