Create & Populate the MySQL Database - If you have shell access to your web server, login and create the database using the following command:
shell> mysqladmin create urx
You must then populate the database by copying the /urx/sql/urx.sql file into the database:
shell> mysql -u <USERNAME> -p<PASSWORD> urx < urx.sql
This will run a set of SQL queries on your database and fill the database with default data. Your database is now populated and urX is now ready for use.
With shell access, you can check to see if the tables have been successfully created, you can list them by using the mysqlshowcommand:
shell> mysqlshow urx
If you use phpMyAdmin to access MySQL copy the urx.sql file and paste the contents inside the "Run SQL query/queries on database" field box in the database. This will display the tables and the variables needed for urX to run correctly. For more information see your phpMyAdmin documentation.