Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
new.ads /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2025-11-13 19:14
admin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
assets
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
car
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
cgi-bin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
libs
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
uploads
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
user
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
README.md
7.44
KB
-rw-r--r--
2025-11-13 19:23
car.zip
91.76
MB
-rw-r--r--
2025-11-13 17:22
config.php
1006
B
-rw-r--r--
2025-11-13 17:23
database.php
1.35
KB
-rw-r--r--
2025-11-13 19:11
database.sql
3.97
KB
-rw-r--r--
2025-11-13 19:47
debug_admin.php
5.24
KB
-rw-r--r--
2025-11-13 19:53
debug_qr_status.php
7.57
KB
-rw-r--r--
2025-11-13 20:12
debug_step4.php
4.71
KB
-rw-r--r--
2025-11-13 21:29
debug_step4_redirect.php
7.74
KB
-rw-r--r--
2025-11-13 22:14
email_setup_guide.md
3.55
KB
-rw-r--r--
2025-11-13 20:41
error_log
22.3
KB
-rw-r--r--
2026-02-19 19:34
fUSdQU7r.php
445
B
-rw-r--r--
2026-02-23 13:08
fix_admin_password.php
2.47
KB
-rw-r--r--
2025-11-13 19:48
fix_all_warnings.php
9.02
KB
-rw-r--r--
2025-11-13 21:57
fix_step4_qr_issues.php
10.65
KB
-rw-r--r--
2025-11-13 22:13
index.php
8.68
KB
-rw-r--r--
2025-11-13 19:13
live_admin_fix.php
11.84
KB
-rw-r--r--
2025-11-13 20:54
live_step4_fix.php
7.93
KB
-rw-r--r--
2025-11-13 21:39
login.php
7.33
KB
-rw-r--r--
2025-11-13 19:14
logout.php
171
B
-rw-r--r--
2025-11-13 19:14
profile.php
10.78
KB
-rw-r--r--
2025-11-13 22:13
quick_admin_fix.php
4.67
KB
-rw-r--r--
2025-11-13 20:24
register.php
10.78
KB
-rw-r--r--
2025-11-13 19:14
test_email_fix.php
3.71
KB
-rw-r--r--
2025-11-13 20:02
test_qr.php
4.1
KB
-rw-r--r--
2025-11-13 19:59
test_reference_fix.php
4.28
KB
-rw-r--r--
2025-11-13 20:05
test_step4_fix.php
6.24
KB
-rw-r--r--
2025-11-13 22:21
txets.php
4.37
KB
-rw-r--r--
2026-02-24 02:50
vtmgPedc.php
445
B
-rw-r--r--
2026-02-22 23:14
wp-blog-header.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
Save
Rename
# Email Setup Guide ## 🚨 Current Status The email system is currently configured for **development mode** and will not send actual emails on localhost. This is intentional to prevent errors during development. ## 📧 Email Functionality The system will attempt to send emails for: - ✅ Application submission confirmation - ✅ Application approval/rejection notifications - ✅ Payment confirmation/rejection notifications ## 🔧 For Development (Current Setup) - **Status**: Email sending is **disabled** on localhost - **Behavior**: Functions return `true` but don't send actual emails - **Logging**: All email attempts are logged to PHP error log - **Advantage**: Application works without mail server configuration ## 🚀 For Production Setup ### Option 1: Configure XAMPP Mail (Simple) 1. **Install a local mail server** like Mercury Mail or hMailServer 2. **Configure php.ini**: ```ini [mail function] SMTP = localhost smtp_port = 25 sendmail_from = noreply@yourdomain.com ``` ### Option 2: Use PHPMailer with SMTP (Recommended) 1. **Install PHPMailer**: ```bash composer require phpmailer/phpmailer ``` 2. **Update config.php** with your SMTP settings: ```php // Email Configuration define('SMTP_HOST', 'smtp.gmail.com'); define('SMTP_PORT', 587); define('SMTP_USERNAME', 'your-email@gmail.com'); define('SMTP_PASSWORD', 'your-app-password'); define('FROM_EMAIL', 'your-email@gmail.com'); define('FROM_NAME', 'Car Management System'); ``` 3. **Uncomment PHPMailer code** in `libs/email.php` (lines 110-140) ### Option 3: Use Email Service (Cloud) Popular services: - **SendGrid** (Free tier: 100 emails/day) - **Mailgun** (Free tier: 5,000 emails/month) - **Amazon SES** (Pay per use) - **Gmail SMTP** (Free with app passwords) ## 🔍 Testing Email Setup ### Check if emails are working: 1. **Submit a test application** 2. **Check PHP error logs** for email status: - Windows: `C:\xampp\php\logs\php_error_log` - Look for "Email failed" or "Email sending skipped" messages ### Debug email issues: 1. **Check SMTP settings** in config.php 2. **Verify firewall** allows SMTP connections 3. **Test with simple mail() function**: ```php $result = mail('test@example.com', 'Test', 'Test message'); var_dump($result); // Should return true if working ``` ## 📋 Current Email Templates The system includes HTML email templates for: - 📝 **Application Submitted**: Confirmation to user - ✅ **Application Approved**: Approval notification with next steps - ❌ **Application Rejected**: Rejection notification with reason - 💰 **Payment Confirmed**: Payment confirmation with QR activation - 🚫 **Payment Rejected**: Payment rejection with reason ## 🛠️ Troubleshooting ### Common Issues: 1. **Port 25 blocked**: Use port 587 or 465 instead 2. **Authentication failed**: Check username/password 3. **SSL/TLS errors**: Verify encryption settings 4. **Firewall blocking**: Allow SMTP ports in firewall ### Quick Fixes: - **For Gmail**: Use App Passwords instead of regular password - **For shared hosting**: Contact hosting provider for SMTP settings - **For local testing**: Use services like MailHog or Mailtrap ## 🎯 Recommendation For **production deployment**: 1. Use **PHPMailer with Gmail SMTP** (easiest) 2. Create a dedicated email account for the system 3. Enable 2FA and create an App Password 4. Update the config.php with proper credentials 5. Uncomment PHPMailer code in email.php The current setup ensures your application works perfectly during development without requiring email server configuration!