Date: Fri, 30 Jan 2004 13:57:02 +0000 From: Peter Risdon <peter@circlesquared.com> To: ecrist@adtechintegrated.com Cc: freebsd-questions@freebsd.org Subject: Re: MySQL 4.x questions... Message-ID: <401A62AE.8060901@circlesquared.com> In-Reply-To: <200401300726.57568.ecrist@adtechintegrated.com> References: <200401292328.20454.ecrist@adtechintegrated.com> <401A5A03.6080908@circlesquared.com> <200401300726.57568.ecrist@adtechintegrated.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Eric F Crist wrote: >Thanks for all your help with this problem. Both apps seemed to have >successfully installed now, but they both have errors. PostNuke keeps >telling me it's 'Failed to Initialize' and I can't get away from the phpBB >install script, no matter where I go. I can try to trouble shoot these on my >own, though. > >Have a good day! > > > I'd have thought both these errors might stem from a problem writing (as opposed to connecting) to the relevant databases. Are the schema installed? It's helpful to check what is actually happening to the tables if there are any, and there should be. #mysqlshow -u username -p databasename will show the tables, if there are any... #mysql -u username -p databasename mysql> select * from tablename\G will show what is in the tables. If this isn't changing during initialisation/install then there's probably a permissions prob. You can check permissions as follows (assuming there is a root password): mysql -u root -p mysql mysql> select * from db\G Your output should include a block like this: *************************** 1. row *************************** Host: localhost Db: databasename User: username Select_priv: Y Insert_priv: Y Update_priv: Y Delete_priv: Y Create_priv: Y Drop_priv: Y Grant_priv: N References_priv: Y Index_priv: Y Alter_priv: Y Create_tmp_table_priv: Y Lock_tables_priv: Y PWR.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?401A62AE.8060901>