Impossible de voir le site ( index.html )

Réduire
Ce sujet est fermé.
X
X
 
  • Filtrer
  • Heure
  • Afficher
Tout effacer
nouveaux messages

  • [RÉGLÉ] Impossible de voir le site ( index.html )

    Bonjour,
    après mon installation de joomla 2.5, je peux accéder sans problèmes aucuns à mon interface d'administration mais il m'est impossible de "voir le site", je reçoit le message d'erreur suivant :

    " This is the placeholder for secure link for domain les-menuisiers-reunis.com. If you see this page after uploading site content you probably have not replaced the index.html file. "

    N'y connaissait pas grand chose je me tourne vers vous :s

  • #2
    Re : Impossible de voir le site ( index.html )

    Bonjour,

    ce fichier index.html est certainement placé par l'hébergeur. Il suffit de se connecter par FTP puis de le supprimer/renommer (après en avoir fait une sauvegarde).
    Pour apprendre à construire votre site web avec Joomla 3 : Joomla3! Le Livre Pour Tous : http://cinnk.com/joomla/3/le-livre-pour-tous

    Référencement Joomla! 10 astuces pour référencer son site web https://cinnk.com/articles/referencement-joomla-10-astuces-pour-referencer-son-site-web

    Créez votre boutique en ligne avec Joomla! & HikaShop http://cinnk.com/boutique/livres/cre...la-et-hikashop

    Commentaire


    • #3
      Re : Impossible de voir le site ( index.html )

      Lorsque je renomme le fichier index.html le message subsiste ...
      C'est bien celui situé dans httpdocs qu'il faut modifier ? :s

      Commentaire


      • #4
        Re : Impossible de voir le site ( index.html )

        C'est celui qui se trouve à côté des fichiers/dossiers Joomla (administrator, bin, cache, cli ...)
        Vérifie si tu n'as pas d'autre fichier qui s'appelle index, il ne doit y avoir que le fichier « index.php ».

        D'ailleurs, peux-tu poster le contenu de ton fichier index.php pour vérifier que c'est bien celui de joomla, et non celui de l'hébergeur ?

        Commentaire


        • #5
          Re : Impossible de voir le site ( index.html )

          J'ai donc bien modifier le bon et c'est mon seul fichier index.html dans ce répertoire :s

          Voici le contenu mon fichier index.php :

          <?php
          /**
          * @package Joomla.Site
          * @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
          * @license GNU General Public License version 2 or later; see LICENSE.txt
          */

          // Set flag that this is a parent file.
          define('_JEXEC', 1);
          define('DS', DIRECTORY_SEPARATOR);

          if (file_exists(dirname(__FILE__) . '/defines.php')) {
          include_once dirname(__FILE__) . '/defines.php';
          }

          if (!defined('_JDEFINES')) {
          define('JPATH_BASE', dirname(__FILE__));
          require_once JPATH_BASE.'/includes/defines.php';
          }

          require_once JPATH_BASE.'/includes/framework.php';

          // Mark afterLoad in the profiler.
          JDEBUG ? $_PROFILER->mark('afterLoad') : null;

          // Instantiate the application.
          $app = JFactory::getApplication('site');

          // Initialise the application.
          $app->initialise();

          // Mark afterIntialise in the profiler.
          JDEBUG ? $_PROFILER->mark('afterInitialise') : null;

          // Route the application.
          $app->route();

          // Mark afterRoute in the profiler.
          JDEBUG ? $_PROFILER->mark('afterRoute') : null;

          // Dispatch the application.
          $app->dispatch();

          // Mark afterDispatch in the profiler.
          JDEBUG ? $_PROFILER->mark('afterDispatch') : null;

          // Render the application.
          $app->render();

          // Mark afterRender in the profiler.
          JDEBUG ? $_PROFILER->mark('afterRender') : null;

          // Return the response.
          echo $app;

          Commentaire


          • #6
            Re : Impossible de voir le site ( index.html )

            Hum... d'autres pistes alors :

            - As-tu un fichier .htaccess à la racine ? Si oui, quel est son contenu ?
            - Qu'est-ce que ça donne quand tu accèdes à http://www.tondomaine.com/index.php ? (D'ailleurs as-tu une URL à nous communiquer ?)

            Commentaire


            • #7
              Re : Impossible de voir le site ( index.html )

              Mmmh j'ai un fichier htaccess.txt :

              ##
              # @package Joomla
              # @copyright Copyright (C) 2005 - 2013 Open Source Matters. All rights reserved.
              # @license GNU General Public License version 2 or later; see LICENSE.txt
              ##

              ##
              # READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
              #
              # The line just below this section: 'Options +FollowSymLinks' may cause problems
              # with some server configurations. It is required for use of mod_rewrite, but may already
              # be set by your server administrator in a way that dissallows changing it in
              # your .htaccess file. If using it causes your server to error out, comment it out (add # to
              # beginning of line), reload your site in your browser and test your sef url's. If they work,
              # it has been set by your server administrator and you do not need it set here.
              ##

              ## Can be commented out if causes errors, see notes above.
              Options +FollowSymLinks

              ## Mod_rewrite in use.

              RewriteEngine On

              ## Begin - Rewrite rules to block out some common exploits.
              # If you experience problems on your site block out the operations listed below
              # This attempts to block the most common type of exploit `attempts` to Joomla!
              #
              # Block out any script trying to base64_encode data within the URL.
              RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
              # Block out any script that includes a <script> tag in URL.
              RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
              # Block out any script trying to set a PHP GLOBALS variable via URL.
              RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
              # Block out any script trying to modify a _REQUEST variable via URL.
              RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
              # Return 403 Forbidden header and show the content of the root homepage
              RewriteRule .* index.php [F]
              #
              ## End - Rewrite rules to block out some common exploits.

              ## Begin - Custom redirects
              #
              # If you need to redirect some pages, or set a canonical non-www to
              # www redirect (or vice versa), place that code here. Ensure those
              # redirects use the correct RewriteRule syntax and the [R=301,L] flags.
              #
              ## End - Custom redirects

              ##
              # Uncomment following line if your webserver's URL
              # is not directly related to physical file paths.
              # Update Your Joomla! Directory (just / for root).
              ##

              # RewriteBase /

              ## Begin - Joomla! core SEF Section.
              #
              RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
              #
              # If the requested path and file is not /index.php and the request
              # has not already been internally rewritten to the index.php script
              RewriteCond %{REQUEST_URI} !^/index\.php
              # and the request is for something within the component folder,
              # or for the site root, or for an extensionless URL, or the
              # requested URL ends with one of the listed extensions
              RewriteCond %{REQUEST_URI} /component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$ [NC]
              # and the requested path and file doesn't directly match a physical file
              RewriteCond %{REQUEST_FILENAME} !-f
              # and the requested path and file doesn't directly match a physical folder
              RewriteCond %{REQUEST_FILENAME} !-d
              # internally rewrite the request to the index.php script
              RewriteRule .* index.php [L]
              #
              ## End - Joomla! core SEF Section.

              Commentaire


              • #8
                Re : Impossible de voir le site ( index.html )

                Sinon ton lien me mène à une page blanche :s
                Et l'URL du site que je fais c'est http://www.les-menuisiers-reunis.com/

                Commentaire


                • #9
                  Re : Impossible de voir le site ( index.html )

                  Ah, du mouvement !
                  J'ai à présent ce message d'erreur :

                  "Not Found
                  The requested document was not found on this server.
                  "
                  Quand je cherche à visualiser le site, ma seule manipulation à été de renommer mon index.html ... :s

                  Commentaire


                  • #10
                    Re : Impossible de voir le site ( index.html )

                    Chez moi, en allant sur http://www.les-menuisiers-reunis.com/index.php c'est bien ton site.
                    Ça devrait fonctionner avec ce lien http://www.les-menuisiers-reunis.com/ mais il ne prend pas ton index.php par défaut comme il le devrait.

                    Peux-tu nous en dire plus sur ton hébergement ? C'est un mutalisé ?

                    Commentaire


                    • #11
                      Re : Impossible de voir le site ( index.html )

                      Je pense qu'il te manque ceci :

                      Définir index.php comme document par défaut sous IIS

                      Les documents par défaut IIS sont utilisés pour les requêtes HTTP qui ne spécifient pas un nom de document. Avec les applications PHP, index.php agit généralement comme document par défaut. Pour ajouter index.php à la liste des documents par défaut d'IIS, utilisez la commande suivante :

                      Exemple #6 Définir index.php comme document par défaut sous IIS

                      %windir%\system32\inetsrv\appcmd.exe set config ^
                      -section:system.webServer/defaultDocument /+"files.[value='index.php']" ^
                      /commit:apphost
                      Trouvé sur cette page : http://php.net/manual/fr/install.windows.iis7.php

                      Commentaire


                      • #12
                        Re : Impossible de voir le site ( index.html )

                        En effet j'ai bien ma page d'accueil, merci !!
                        Je suis en stage actuellement et mon patron n'est pas à disposition donc je ne sais pas du tout se qu'il en est pour l'hébergeur :O
                        Tout se que je sais, c'est que c'est chez netissime, sa se limite à peu près à ça ...

                        Commentaire


                        • #13
                          Re : Impossible de voir le site ( index.html )

                          D'après les en-têtes de page envoyées, il s'agit d'un serveur IIS.
                          C'est pourquoi je t'ai mis le lien dans le message ci-dessus...

                          Après si tu es chez Netissime, tu n'auras peut-être pas la main.
                          Reviens vers nous quand tu auras plus de détails...

                          Edit : quoique, on sait jamais, as-tu un fichier « web.config » à la racine, et si oui que contient-il ?

                          Commentaire


                          • #14
                            Re : Impossible de voir le site ( index.html )

                            Bonjour,

                            Afin de connaitre l'OS de votre serveur et la version de PHP, veuillez suivre cette procédure :

                            1- Créez un fichier phpinfo.php
                            2- Editez le avec Notepad++ par exemple
                            3- Insérez ce code dans le fichier phpinfo.php :
                            Code HTML:
                            <?php
                            phpinfo();
                            ?>
                            4- Enregistrez le, et envoyez le dans le dossier httpdocs de votre serveur
                            5- Accéder à ce fichier par votre navigateur http://les-menuisiers-reunis.com/phpinfo.php
                            ...
                            6- Pensez à supprimer le fichier après.
                            Besoin de debugguer votre site, pensez à Firebug : http://www.grafikart.fr/tutoriels/ht...ion-firefox-76
                            Vous avez trouvé une solution, mettez votre discussion en [Réglé] ? http://forum.joomla.fr/announcement.php?f=58
                            Je ne donne pas suite aux messages privés (MP) non sollicités !

                            Commentaire


                            • #15
                              Re : Impossible de voir le site ( index.html )

                              Oui j'ai un fichier web.config !
                              Voici se qu'il contient :

                              <?xml version="1.0" encoding="UTF-8"?>
                              <configuration>
                              <system.webServer>
                              <rewrite>
                              <rules>
                              <rule name="Joomla! Rule 1" stopProcessing="true">
                              <match url="^(.*)$" ignoreCase="false" />
                              <conditions logicalGrouping="MatchAny">
                              <add input="{QUERY_STRING}" pattern="base64_encode[^(]*\([^)]*\)" ignoreCase="false" />
                              <add input="{QUERY_STRING}" pattern="(&gt;|%3C)([^s]*s)+cript.*(&lt;|%3E)" />
                              <add input="{QUERY_STRING}" pattern="GLOBALS(=|\[|\%[0-9A-Z]{0,2})" ignoreCase="false" />
                              <add input="{QUERY_STRING}" pattern="_REQUEST(=|\[|\%[0-9A-Z]{0,2})" ignoreCase="false" />
                              </conditions>
                              <action type="CustomResponse" url="index.php" statusCode="403" statusReason="Forbidden" statusDescription="Forbidden" />
                              </rule>
                              <rule name="Joomla! Rule 2">
                              <match url="(.*)" ignoreCase="false" />
                              <conditions logicalGrouping="MatchAll">
                              <add input="{URL}" pattern="^/index.php" ignoreCase="true" negate="true" />
                              <add input="{URL}" pattern="/component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$" />
                              <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
                              <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
                              </conditions>
                              <action type="Rewrite" url="index.php" />
                              </rule>
                              </rules>
                              </rewrite>
                              </system.webServer>
                              </configuration>

                              Commentaire

                              Annonce

                              Réduire
                              Aucune annonce pour le moment.

                              Partenaire de l'association

                              Réduire

                              Hébergeur Web PlanetHoster
                              Travaille ...
                              X