मौत की सफेद स्क्रीन (WSOD)
XOOPS में खाली सफेद पन्नों का निदान और समाधान कैसे करें।
डायग्नोस्टिक फ़्लोचार्ट
Section titled “डायग्नोस्टिक फ़्लोचार्ट”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]त्वरित निदान
Section titled “त्वरित निदान”चरण 1: PHP त्रुटि प्रदर्शन सक्षम करें
Section titled “चरण 1: PHP त्रुटि प्रदर्शन सक्षम करें”mainfile.php में अस्थायी रूप से जोड़ें:
<?php// Add at the very top, after <?phperror_reporting(E_ALL);ini_set('display_errors', '1');ini_set('display_startup_errors', '1');चरण 2: PHP त्रुटि लॉग की जाँच करें
Section titled “चरण 2: PHP त्रुटि लॉग की जाँच करें”# 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_logचरण 3: XOOPS डीबग सक्षम करें
Section titled “चरण 3: XOOPS डीबग सक्षम करें”// In mainfile.phpdefine('XOOPS_DEBUG_LEVEL', 2);सामान्य कारण एवं समाधान
Section titled “सामान्य कारण एवं समाधान”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. स्मृति सीमा पार हो गई
Section titled “1. स्मृति सीमा पार हो गई”लक्षण:
- बड़े ऑपरेशनों पर खाली पेज
- छोटे डेटा के लिए काम करता है, बड़े डेटा के लिए विफल रहता है
त्रुटि:
Fatal error: Allowed memory size of 134217728 bytes exhaustedसमाधान:
// In mainfile.phpini_set('memory_limit', '256M');
// Or in .htaccessphp_value memory_limit 256M
// Or in php.inimemory_limit = 256M2. PHP सिंटैक्स त्रुटि
Section titled “2. PHP सिंटैक्स त्रुटि”लक्षण:
- WSOD PHP फ़ाइल को संपादित करने के बाद
- विशिष्ट पेज विफल रहता है, अन्य काम करते हैं
त्रुटि:
Parse error: syntax error, unexpected '}' in /path/file.php on line 123समाधान:
# Check file for syntax errorsphp -l /path/to/file.php
# Check all PHP files in modulefind modules/mymodule -name "*.php" -exec php -l {} \;3. आवश्यक फ़ाइल गुम होना
Section titled “3. आवश्यक फ़ाइल गुम होना”लक्षण:
- WSOD अपलोड/माइग्रेशन के बाद
- यादृच्छिक पृष्ठ विफल हो जाते हैं
त्रुटि:
Fatal error: require_once(): Failed opening required 'class/Helper.php'समाधान:
# Re-upload missing files# Compare against fresh installationdiff -r /path/to/xoops /path/to/fresh-xoops
# Check file permissionsls -la class/4. डेटाबेस कनेक्शन विफल
Section titled “4. डेटाबेस कनेक्शन विफल”लक्षण:
- सभी पेज WSOD दिखाते हैं
- स्टेटिक फ़ाइलें (चित्र, CSS) काम करती हैं
त्रुटि:
Warning: mysqli_connect(): Access denied for userसमाधान:
// 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. अनुमति मुद्दे
Section titled “5. अनुमति मुद्दे”लक्षण:
- WSOD फ़ाइलें लिखते समय
- कैश/संकलन त्रुटियाँ
समाधान:
# 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 टेम्पलेट त्रुटि
Section titled “6. Smarty टेम्पलेट त्रुटि”लक्षण:
- WSOD विशिष्ट पृष्ठों पर
- कैश साफ़ करने के बाद काम करता है
समाधान:
# Clear Smarty cacherm -rf xoops_data/caches/smarty_cache/*rm -rf xoops_data/caches/smarty_compile/*
# Check template syntax7. अधिकतम निष्पादन समय
Section titled “7. अधिकतम निष्पादन समय”लक्षण:
- WSOD ~30 सेकंड के बाद
- लंबे ऑपरेशन विफल हो जाते हैं
त्रुटि:
Fatal error: Maximum execution time of 30 seconds exceededसमाधान:
// In mainfile.phpset_time_limit(300);
// Or in .htaccessphp_value max_execution_time 300डिबग स्क्रिप्ट
Section titled “डिबग स्क्रिप्ट”XOOPS रूट में debug.php बनाएं:
<?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');रोकथाम
Section titled “रोकथाम”graph LR A[Backup Before Changes] --> E[Stable Site] B[Test in Development] --> E C[Monitor Error Logs] --> E D[Use Version Control] --> E- परिवर्तन करने से पहले हमेशा बैकअप लें
- तैनाती से पहले स्थानीय स्तर पर परीक्षण करें
- त्रुटि लॉग की नियमित रूप से निगरानी करें
- परिवर्तनों पर नज़र रखने के लिए git का उपयोग करें
- समर्थित संस्करणों में PHP को अद्यतन रखें
संबंधित दस्तावेज़ीकरण
Section titled “संबंधित दस्तावेज़ीकरण”- डेटाबेस कनेक्शन त्रुटियाँ
- अनुमति अस्वीकृत त्रुटियाँ
- डिबग मोड सक्षम करें
#xoops #समस्या निवारण #wsod #डीबगिंग #त्रुटियाँ