Choose Your Setup Option
🟢 Option 1: Use Built-in PHP Server (EASIEST)
Best for: Quick local testing
Requirements: PHP installed on your computer
-
Open PowerShell and navigate to your project folder:
cd "D:\ASK\SaaS2 Downloaded 3-4-26"
-
Start the PHP server:
php -S localhost:8000
-
Open in browser:
http://localhost:8000
- ✅ Contact form will now work!
🟡 Option 2: Use Apache/Nginx
Best for: Production-like setup
Requirements: Apache/Nginx + PHP installed
-
Set document root to your project folder in Apache config:
DocumentRoot "D:/ASK/SaaS2 Downloaded 3-4-26"
-
Make sure PHP module is enabled
-
Restart Apache
-
Access:
http://localhost/ (or your configured domain)
🔵 Option 3: Use XAMPP (Windows Easiest)
Best for: Complete local development environment
Requirements: XAMPP installed
-
Download XAMPP from apachefriends.org
-
Install XAMPP
-
Copy your project folder to:
C:\xampp\htdocs\saas2
-
Start Apache from XAMPP Control Panel
-
Visit:
http://localhost/saas2