|
From: Rich S. <sta...@cf...> - 2004-07-20 09:25:09
|
Hi, I've tried to set up the latest stable version of bookmarksync on a yellowdog 3 host. I followed the minimal setup instructions. If I now browse to http://host/syncit/config.php the config page comes up. However when I put my info in & press 'register' it just comes up with a blank page. What have I missed, or how do I work out what's wrong? here's what I did up till now: In mysql I created a database (syncit). I then created a user on the host (useradd mysqluser), and ran 'GRANT ALL PRIVILEGES ON syncit TO mysqluser@localhost IDENTIFIED BY 'password'. I ran FLUSH PRIVILEGES, and then quit & ran 'mysql -u root -p syncit < bookmarksync.sql'. If I run 'SHOW GRANTS FOR mysqluser@localhost' in mysql I see: GRANT USAGE ON *.* TO 'mysqluser'@'localhost' IDENTIFIED BY PASSWORD 'numbers and letters' GRANT ALL PRIVILEGES ON syncit.syncit TO 'mysqluser'@'localhost' If I run 'mysql show syncit' I see: +------------------+ | Tables | +------------------+ | syncit_bookmarks | | syncit_config | | syncit_link | | syncit_person | +--------------- I assume this is all correct so far? I then copied the php file to /var/log/www/html/syncit & edited db.php (& masterpassword in config.php) accordingly: $SYNCIT_DATABASE= "syncit"; $MYSQL_HOST = "localhost"; $MYSQL_USER = "mysqluser"; $MYSQL_PASSWORD = "same password as set with the grant statement"; What have I done wrong, or how do I find out what's up? Thanks for any help! |