Probléme en PHP
TheFunyGaming
-
Pitet Messages postés 2826 Date d'inscription Statut Membre Dernière intervention -
Pitet Messages postés 2826 Date d'inscription Statut Membre Dernière intervention -
Bonjour je suis le dévloppement d'un site pour quelqu'un et j'ai voulu commencer
a convertir le .html en .php mais j'ai des erreurs:
Warning: include_once(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in /home/u621220383/public_html/accueil/index.php on line 4
Warning: include_once(http://funy-fansub.esy.es/jointures/header.php): failed to open stream: no suitable wrapper could be found in /home/u621220383/public_html/accueil/index.php on line 4
Warning: include_once(): Failed opening 'http://funy-fansub.esy.es/jointures/header.php' for inclusion (include_path='.:/opt/php-5.5/pear') in /home/u621220383/public_html/accueil/index.php on line 4
Warning: include_once(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in /home/u621220383/public_html/accueil/index.php on line 5
Warning: include_once(http://funy-fansub.esy.es/jointures/head.php): failed to open stream: no suitable wrapper could be found in /home/u621220383/public_html/accueil/index.php on line 5
Warning: include_once(): Failed opening 'http://funy-fansub.esy.es/jointures/head.php' for inclusion (include_path='.:/opt/php-5.5/pear') in /home/u621220383/public_html/accueil/index.php on line 5
Si ces possible de m'aider s'il vous plait !
a convertir le .html en .php mais j'ai des erreurs:
Warning: include_once(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in /home/u621220383/public_html/accueil/index.php on line 4
Warning: include_once(http://funy-fansub.esy.es/jointures/header.php): failed to open stream: no suitable wrapper could be found in /home/u621220383/public_html/accueil/index.php on line 4
Warning: include_once(): Failed opening 'http://funy-fansub.esy.es/jointures/header.php' for inclusion (include_path='.:/opt/php-5.5/pear') in /home/u621220383/public_html/accueil/index.php on line 4
Warning: include_once(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in /home/u621220383/public_html/accueil/index.php on line 5
Warning: include_once(http://funy-fansub.esy.es/jointures/head.php): failed to open stream: no suitable wrapper could be found in /home/u621220383/public_html/accueil/index.php on line 5
Warning: include_once(): Failed opening 'http://funy-fansub.esy.es/jointures/head.php' for inclusion (include_path='.:/opt/php-5.5/pear') in /home/u621220383/public_html/accueil/index.php on line 5
Si ces possible de m'aider s'il vous plait !
A voir également:
- Probléme en PHP
- Easy php - Télécharger - Divers Web & Internet
- Expert php pinterest - Télécharger - Langages
- Retour a la ligne php - Forum Webmastering
- Alert php - Forum PHP
- Retour a la ligne php ✓ - Forum PHP
2 réponses
Salut,
Le message d'erreur est claire : ton serveur ne permet pas à php de faire des include/require de fichier distant (via le protocole http).
Il s'agit effectivement la directive php allow_url_include.
Si tes fichiers php à inclures sont bien sur le même serveur, utilise plutôt le chemin relatif ou absolu vers ces fichiers via le système de fichier.
Bonne journée
Le message d'erreur est claire : ton serveur ne permet pas à php de faire des include/require de fichier distant (via le protocole http).
Il s'agit effectivement la directive php allow_url_include.
Si tes fichiers php à inclures sont bien sur le même serveur, utilise plutôt le chemin relatif ou absolu vers ces fichiers via le système de fichier.
Bonne journée