File tree 1 file changed +13
-1
lines changed
1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 16
16
17
17
// Check if cURL extension is installed
18
18
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 ' ]);
20
32
}
21
33
22
34
function CoderMark ($ cl , &$ CoderMarkPrinted ) {
You can’t perform that action at this time.
0 commit comments