You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: public_html/lists/admin/plugins.php
+2
Original file line number
Diff line number
Diff line change
@@ -165,6 +165,8 @@
165
165
166
166
if (defined('PLUGIN_ROOTDIR') && !is_writable(PLUGIN_ROOTDIR)) {
167
167
Info(s('The plugin root directory is not writable, please install plugins manually'));
168
+
} elseif (ini_get('allow_url_fopen') != '1') {
169
+
Info(s('The PHP option for <a href="http://php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen">URL-aware fopen wrappers</a> needs to be enabled. This is required to allow installation from a remote URL'));
168
170
} elseif (!class_exists('ZipArchive')) {
169
171
Info(s('PHP has no <a href="http://php.net/zip">Zip capability</a>. This is required to allow installation from a remote URL'));
0 commit comments