Movie Database v0.1 - geekhut.org ### Requirements ### You must have some kind of PHP enabled web server and a mysql database. It doesn't matter if you are using Windows, Linux, or Mac. ### Installation ### Presuming you are run Linux or Mac, extract the movie database app, type : tar -zxvf movie_database.tar.gz ... otherwise WinRAR should take care of this for you on Windows. You can move it to any directory under your hosted document root. (/var/www/...) Create a database, you can name it whatever you want. mysqladmin -u root -p create movie_database You must then populate the database with the tables in the install.sql file. mysql -u root -p movie_database < install.sql *** If you are timid of a terminal, use PHPMyAdmin - Create the database and copy the contents of install.sql into the SQL text field. Edit application/config/database.php to reflect your database credentials and the name of your database. If you need help, paste a comment at http://geekhut.org/2010/02/index-and-organize-your-movies or send an email to gregory@geekhut.org ### I am impatient with documentation ###