Saltar al contenido

wrapper está deshabilitado en la configuración del servidor por allow_url_include=0 cómo corregir el ejemplo de código

No dejes de divulgar nuestra web y códigos en tus redes, necesitamos de tu ayuda para hacer crecer nuestra comunidad.

Ejemplo: advertencia: include(): el envoltorio https:// está deshabilitado en la configuración del servidor por allow_url_include=0 en

From the PHP docs on include:

If "URL include wrappers" are enabled in PHP, you can specify the file to be included using a URL (via HTTP or other supported wrapper - see Supported Protocols and Wrappers for a list of protocols) instead of a local pathname. If the target server interprets the target file as PHP code, variables may be passed to the included file using a URL request string as used with HTTP GET. This is not strictly speaking the same thing as including the file and having it inherit the parent file's variable scope; the script is actually being run on the remote server and the result is then being included into the local script.

By obvious inference, you are supposed to use a local pathname!

Change this line


to this


The reason that allow_url_include=On doesn't work is because you probably didn't restart your Apache server after changing your php.ini

Reseñas y puntuaciones

Finalizando este artículo puedes encontrar las interpretaciones de otros usuarios, tú asimismo tienes la opción de insertar el tuyo si lo crees conveniente.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *