White Screen of Death (WSOD)
Wie man leere weiße Seiten in XOOPS diagnostiziert und behebt.
Diagnose-Flussdiagramm
Abschnitt betitelt „Diagnose-Flussdiagramm“flowchart TD A[White Screen] --> B{PHP Errors Visible?} B -->|No| C[Enable Error Display] B -->|Yes| D[Read Error Message]
C --> E{Errors Now Visible?} E -->|Yes| D E -->|No| F[Check PHP Error Log]
D --> G{Error Type?} G -->|Memory| H[Increase memory_limit] G -->|Syntax| I[Fix PHP Syntax] G -->|Missing File| J[Restore File] G -->|Permission| K[Fix Permissions] G -->|Database| L[Check DB Connection]
F --> M{Log Has Errors?} M -->|Yes| D M -->|No| N[Check Web Server Logs]
N --> O{Found Issue?} O -->|Yes| D O -->|No| P[Enable XOOPS Debug]Schnelle Diagnose
Abschnitt betitelt „Schnelle Diagnose“Schritt 1: Aktivieren Sie die PHP-Fehleranzeige
Abschnitt betitelt „Schritt 1: Aktivieren Sie die PHP-Fehleranzeige“Fügen Sie zu mainfile.php temporär hinzu:
<?php// Add at the very top, after <?phperror_reporting(E_ALL);ini_set('display_errors', '1');ini_set('display_startup_errors', '1');Schritt 2: Überprüfen Sie das PHP-Fehler-Log
Abschnitt betitelt „Schritt 2: Überprüfen Sie das PHP-Fehler-Log“# Common log locationstail -100 /var/log/php/error.logtail -100 /var/log/apache2/error.logtail -100 /var/log/nginx/error.log
# Or check PHP info for log locationphp -i | grep error_logSchritt 3: Aktivieren Sie den XOOPS-Debug
Abschnitt betitelt „Schritt 3: Aktivieren Sie den XOOPS-Debug“// In mainfile.phpdefine('XOOPS_DEBUG_LEVEL', 2);Häufige Ursachen & Lösungen
Abschnitt betitelt „Häufige Ursachen & Lösungen“pie title WSOD Common Causes "Memory Limit" : 25 "PHP Syntax Error" : 20 "Missing Files" : 15 "Database Issues" : 15 "Permissions" : 10 "Template Errors" : 10 "Timeout" : 51. Speicherlimit überschritten
Abschnitt betitelt „1. Speicherlimit überschritten“Symptome:
- Leere Seite bei großen Operationen
- Funktioniert für kleine Daten, schlägt für große fehl
Fehler:
Fatal error: Allowed memory size of 134217728 bytes exhaustedLösungen:
// In mainfile.phpini_set('memory_limit', '256M');
// Or in .htaccessphp_value memory_limit 256M
// Or in php.inimemory_limit = 256M2. PHP-Syntax-Fehler
Abschnitt betitelt „2. PHP-Syntax-Fehler“Symptome:
- WSOD nach dem Bearbeiten von PHP-Datei
- Spezifische Seite schlägt fehl, andere funktionieren
Fehler:
Parse error: syntax error, unexpected '}' in /path/file.php on line 123Lösungen:
# Check file for syntax errorsphp -l /path/to/file.php
# Check all PHP files in modulefind modules/mymodule -name "*.php" -exec php -l {} \;3. Fehlende erforderliche Datei
Abschnitt betitelt „3. Fehlende erforderliche Datei“Symptome:
- WSOD nach Upload/Migration
- Zufällige Seiten schlagen fehl
Fehler:
Fatal error: require_once(): Failed opening required 'class/Helper.php'Lösungen:
# Re-upload missing files# Compare against fresh installationdiff -r /path/to/xoops /path/to/fresh-xoops
# Check file permissionsls -la class/4. Datenbankverbindung fehlgeschlagen
Abschnitt betitelt „4. Datenbankverbindung fehlgeschlagen“Symptome:
- Alle Seiten zeigen WSOD
- Statische Dateien (Bilder, CSS) funktionieren
Fehler:
Warning: mysqli_connect(): Access denied for userLösungen:
// Verify credentials in mainfile.phpdefine('XOOPS_DB_HOST', 'localhost');define('XOOPS_DB_USER', 'your_user');define('XOOPS_DB_PASS', 'your_password');define('XOOPS_DB_NAME', 'your_database');
// Test connection manually<?php$conn = new mysqli('localhost', 'user', 'pass', 'database');if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error);}echo "Connected successfully";5. Berechtigungsprobleme
Abschnitt betitelt „5. Berechtigungsprobleme“Symptome:
- WSOD beim Schreiben von Dateien
- Cache/Compile-Fehler
Lösungen:
# Fix directory permissionschmod -R 755 htdocs/chmod -R 777 xoops_data/chmod -R 777 uploads/
# Fix ownershipchown -R www-data:www-data /path/to/xoops6. Smarty-Template-Fehler
Abschnitt betitelt „6. Smarty-Template-Fehler“Symptome:
- WSOD auf spezifischen Seiten
- Funktioniert nach dem Löschen des Cache
Lösungen:
# Clear Smarty cacherm -rf xoops_data/caches/smarty_cache/*rm -rf xoops_data/caches/smarty_compile/*
# Check template syntax7. Maximale Ausführungszeit
Abschnitt betitelt „7. Maximale Ausführungszeit“Symptome:
- WSOD nach ~30 Sekunden
- Lange Operationen schlagen fehl
Fehler:
Fatal error: Maximum execution time of 30 seconds exceededLösungen:
// In mainfile.phpset_time_limit(300);
// Or in .htaccessphp_value max_execution_time 300Debug-Skript
Abschnitt betitelt „Debug-Skript“Erstellen Sie debug.php in XOOPS-Root:
<?php/** * XOOPS Debug Script * Delete after troubleshooting! */
error_reporting(E_ALL);ini_set('display_errors', '1');
echo "<h1>XOOPS Debug</h1>";
// Check PHP versionecho "<h2>PHP Version</h2>";echo "PHP " . PHP_VERSION . "<br>";
// Check required extensionsecho "<h2>Required Extensions</h2>";$required = ['mysqli', 'gd', 'curl', 'json', 'mbstring'];foreach ($required as $ext) { $status = extension_loaded($ext) ? '✓' : '✗'; echo "$status $ext<br>";}
// Check file permissionsecho "<h2>Directory Permissions</h2>";$dirs = [ 'xoops_data' => 'xoops_data', 'uploads' => 'uploads', 'cache' => 'xoops_data/caches'];foreach ($dirs as $name => $path) { $writable = is_writable($path) ? '✓ Writable' : '✗ Not writable'; echo "$name: $writable<br>";}
// Test database connectionecho "<h2>Database Connection</h2>";if (file_exists('mainfile.php')) { // Extract credentials (simple regex, not production safe) $mainfile = file_get_contents('mainfile.php'); preg_match("/XOOPS_DB_HOST.*'(.+?)'/", $mainfile, $host); preg_match("/XOOPS_DB_USER.*'(.+?)'/", $mainfile, $user); preg_match("/XOOPS_DB_PASS.*'(.+?)'/", $mainfile, $pass); preg_match("/XOOPS_DB_NAME.*'(.+?)'/", $mainfile, $name);
if (!empty($host[1])) { $conn = @new mysqli($host[1], $user[1], $pass[1], $name[1]); if ($conn->connect_error) { echo "✗ Connection failed: " . $conn->connect_error; } else { echo "✓ Connected to database"; $conn->close(); } }} else { echo "mainfile.php not found";}
// Memory infoecho "<h2>Memory</h2>";echo "Memory Limit: " . ini_get('memory_limit') . "<br>";echo "Current Usage: " . round(memory_get_usage() / 1024 / 1024, 2) . " MB<br>";
// Check error log locationecho "<h2>Error Log</h2>";echo "Location: " . ini_get('error_log');Prävention
Abschnitt betitelt „Prävention“graph LR A[Backup Before Changes] --> E[Stable Site] B[Test in Development] --> E C[Monitor Error Logs] --> E D[Use Version Control] --> E- Sichern Sie immer bevor Sie Änderungen vornehmen
- Testen Sie lokal bevor Sie deployen
- Überwachen Sie Fehler-Logs regelmäßig
- Verwenden Sie Git zum Tracking von Änderungen
- Halten Sie PHP aktuell innerhalb unterstützter Versionen
Verwandte Dokumentation
Abschnitt betitelt „Verwandte Dokumentation“- Database Connection Errors
- Permission Denied Errors
- Enable Debug Mode
#xoops #troubleshooting #wsod #debugging #errors