Skip to content

Commit 4cc1d2a

Browse files
authored
Proxiesfo-Users (Please use PHP 8)
- Check if cURL extension is installed - all users (windows,linux,macos)
1 parent b481f93 commit 4cc1d2a

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

Proxiesfo-Users/iproxy.php

+13-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,19 @@
1616

1717
// Check if cURL extension is installed
1818
if (!extension_loaded('curl')) {
19-
die($cl['red'] . "Error: PHP cURL extension is not installed.\nPlease install it using:\napt-get install php-curl\n" . $cl['rt']);
19+
$installInstructions = "Error: PHP cURL extension is not installed.\n\n";
20+
$installInstructions .= "Installation instructions:\n\n";
21+
$installInstructions .= "For Windows:\n";
22+
$installInstructions .= "1. Open php.ini file\n";
23+
$installInstructions .= "2. Uncomment extension=curl\n";
24+
$installInstructions .= "3. Restart your web server\n\n";
25+
$installInstructions .= "For Linux (Ubuntu/Debian):\n";
26+
$installInstructions .= "sudo apt-get install php-curl\n";
27+
$installInstructions .= "sudo service apache2 restart\n\n";
28+
$installInstructions .= "For macOS:\n";
29+
$installInstructions .= "1. Using Homebrew: brew install [email protected]\n";
30+
$installInstructions .= "2. Or modify php.ini to enable curl extension\n";
31+
die($cl['red'] . $installInstructions . $cl['rt']);
2032
}
2133

2234
function CoderMark($cl, &$CoderMarkPrinted) {

0 commit comments

Comments
 (0)