Wishlist is a multi-user web application for managing wishlists. It is built using the CodeIgniter framework (http://codeigniter.com/) and Doctrine ORM (http://doctrine-project.org/).
PHP 5.3.0+ MySQL 5.0+ APC is recommended to greatly improve performance. See http://php.net/manual/en/book.apc.php
- Open application/config/database.php and enter your database configuration.
- In a terminal, run the command "./application/doctrine orm:schema-tool:create" (Windows users should run "application/doctrine.php orm:schema-tool:create")
- In a terminal, run the command "./application/doctrine orm:schema-tool:update --force" (Windows users should run "application/doctrine.php orm:schema-tool:update --force")
Q. Links do not go to the correct URL. A. Wishlist configures the base URL of the website based on your server's HTTP_HOST value. If you are experiencing problems with incorrect URLs, you may want to open application/config/config.php and change $config['base_url'].
Q. I want to use a different database system like PostgreSQL, SQLite, etc A. If you don't want to use MySQL, open ./application/libraries/Doctrine.php and change $connectionOptions['driver'] to whichever driver you like. For a list of PDO drivers, see http://php.net/manual/en/pdo.drivers.php