These issues may cause timeout errors in the booking process:
| Setting | Current Value | Recommended | Status |
|---|---|---|---|
| max_execution_time | 90 | 120-180 | ⚠️ Adequate |
| memory_limit | 1G | 256M-512M | ❌ Too Low |
| max_input_time | 60 | 60-120 | ✅ OK |
| post_max_size | 1G | 64M | ❌ Too Low |
| Property | Value |
|---|---|
| PHP Version | 8.0.30 |
| Server Software | LiteSpeed |
| Operating System | Linux |
Add this code to wp-config.php before /* That's all, stop editing! */:
// Increase PHP execution time and memory limits
@ini_set('max_execution_time', 120);
@ini_set('memory_limit', '256M');
define('WP_MEMORY_LIMIT', '256M');
define('WP_MAX_MEMORY_LIMIT', '512M');
Add this to .htaccess file:
# Increase PHP limits php_value max_execution_time 120 php_value memory_limit 256M php_value max_input_time 120 php_value post_max_size 64M
If the above methods don't work, contact your hosting provider and request:
max_execution_time to 120 secondsmemory_limit to 256Mrm sln-server-diagnostic.php or delete via FTP
Generated: 2026-05-05 19:36:17
Salon Booking System - Server Diagnostic Tool v1.0