Installation

  1. Download and upload ZIP to hosting

  2. Extact ZIP Folder

  3. Configure Database Edit config/database.php with your MySQL credentials:

    private $host = 'localhost';
    private $db_name = 'family_wishlist';
    private $username = 'your_mysql_username';
    private $password = 'your_mysql_password';
  4. Set Up Database Navigate to your web server and run:

    http://your-domain.com/family-wishlist/setup_database.php

This will:

  • Create the family_wishlist database

  • Create all necessary tables

  • Set up proper relationships and constraints

  1. Remove Setup File (Security) After successful database setup, delete setup_database.php:

rm setup_database.php

Navigate to:

http://your-domain.com or https://your-domain.com

Last updated