PHP problem
-
My Network provider wont allow these PHP settings… how can I still use your plugin.?? I don’t have alot of PHP experience, please help!!
? register_globals
? allow_url_fopen and its corollary, allow_url_include
These functions allow the developer to retrieve data, or open a file or retrieve file data, from a remote location, such as to load a site template from another file system. Due to security concerns, register_globals is deprecated in PHP 5.3 and will soon be removed completely from PHP.You or your developer can use more secure methods to accomplish the same goals. You may be able to rewrite scripts using allow_url_fopen, for example, to reference files locally using relative paths. You can also cURL to retrieve your remote data.
With allow_url_fopen and allow_url_include disabled, local inclusion using include(), include_once(), require(), and require_once() will still work normally.
You will not be able to edit your own php.ini or use htaccess to reenable these functions.
- The topic ‘PHP problem’ is closed to new replies.