Categories > TinyButStrong general >

Chargemnt de la page index

The forum is closed. Please use Stack Overflow for submitting new questions. Use tags: tinybutstrong , opentbs
By: MaxDev
Date: 2009-06-25
Time: 18:43

Chargemnt de la page index

Bonjour
Est ce que vous avez une idée lors du chargement de la page d 'accueil en utilisant LE IE7 un conteur qui apparaît dans le Browser au dessous de la page (xx éléments restant).
j'utilise le TBS la chargement de module est effectué par un switch case :
    if (isset($_GET['module'])) {   
        switch($_GET['module'])
        {           
            case 'inscription':
                $tmpl = 'modules/inscription/index.php';
                break;
            case 'offre':
                $tmpl = 'modules/offre/index.php';
                break;

ainsi la déclaration des variable globale dans la page même page ,
j'arrive pas a localiser ce problème de IE7 .
La page est chargé très vite sans aucun soucis mais le problème reste a dans ce compteur d'éléments restants .
Je cherche une piste pour localiser mon soucis . Merci .

MAX
By: RwD
Date: 2009-06-26
Time: 14:59

Re: Chargemnt de la page index

Try to minimize the output and see when the problem goes away. Is there any javascript on the page? This also sometimes gives some trouble. But if the page displays correctly I wouldn't be too worried...

ps, this is an english language forum. I have had two years of french and was bad at it... There is also a french forum for tbs, you should post there.
By: kle_py
Date: 2009-06-27
Time: 14:54

Re: Chargemnt de la page index

Just a guess..
Maybe some loop problem ?
What does modules/offre/index.php say or call ?

Can't You try a test with a static page like:
modules/offre/test.html
just to see if this ends loading.. ?
By: MaxDev
Date: 2009-06-27
Time: 17:53

Re: Chargemnt de la page index

Thanks for yours answer ,
This problem happened only in the index page , there are not JavaSript in the page, and it display correctly, i don't understand this counter of elements , from 300 to 0 that decrease ...

Thanks for your help .
(Sorry for asking in frensh )


MAX
By: RwD
Date: 2009-06-27
Time: 19:28

Re: Chargemnt de la page index

you should simply remove parts of the main template until the problem goes away. You need to eliminate the parts that cause this and home in on the actual problem. This is called debugging ;)