> First how do I connect to the admin features? Log in as admin, and use the password "admin". > Could I populate the db through a text file upload? Not without writing a sub-system. There is a very complex structure behind the catalog that involves several tables. > Is it a problem that my database is mydomain.com rather than freetrade, all > of the table were created using the build.sql file? Make sure you understand what those settings mean. You need to know the name of the server that is running mysqld, probably localhost. And you need to know the name of the database. If you were running a database named mydomain.com, then you should be able to execute this on command line: mysql -h localhost mydomain.com Keep in mind that you need to set the correct username and password. It's customary to make an httpd or nobody user with no password that can only connect to the database from localhost. In fact, it's probably best to only allow connections from localhost or other secure hosts with FreeTrade. > In the bug forum someone said to make sure that the global settings must be > set to connect to the db, I have set up the connect to my db, the only > change is my db is called my domain name, except for the www., now I have > had success with running other db's off of this setup including the > phpMyAdmin setup program. and I checked the settings against the global > settings, and they match, and once again I having been using this phpMyAdmin > program to admin my db. I have yet to see a registered person, of which I > have tried to register twice. > Warning: 0 is not a MySQL result index in > /home/getre3/virtual_html/modules/include/init on line 321 This error suggests that you are probably connecting to the database, but that you haven't actually created all the tables. I don't know how phpMyAdmin runs scripts. I always use command line arguments. You need to do something like this: mysql mydomain.com <build.sql Watch for errors, because if tables already exist, the script will abort. In that case, you'll have to drop the tables. Leon ------------------------------------------------------------ To subscribe: [EMAIL PROTECTED] To unsubscribe: [EMAIL PROTECTED] Site: http://www.working-dogs.com/freetrade/ Problems?: [EMAIL PROTECTED]

