Dear All,
I have developed a web based data management system which containing some time consuming report generating and value calculating tasks. now I am suffering from a big problem of browsing the different web pages from the same browser while one page is generate a report.
Actual scenario is
1. log into the system and open a report generating page and submit data values to generate the report
2. now, while generating the report, try to open another link into new tab of the same browser.
3. new tab page is not loaded until finish the report generation.
I need to immediately solve this problem, Please any body help me to solve this problem. Any answer warmly welcome
Thanks.
Cannot browse multiple pages in my php web site.
Moderator: General Moderators
-
nishshanka
- Forum Newbie
- Posts: 1
- Joined: Fri Dec 09, 2011 5:20 am
Re: Cannot browse multiple pages in my php web site.
First of all could it be your browser that is causing this issue. Have you tried it using another browser and can you access say another website from the same browser while your code is executing your commands?
It sounds like basically your page is loading your commands and until finished will not allow your links to be clicked as it is busy. Have you tried opening two pages at the same time, setting your commands to run the report on one and clicking the second tab and loading another page from that window instead?
If PHP is loading or executing in the background it is common that your content will not react while the code is running although you can still see the page in front of you. By submitting your report to run your basically telling it to forget the content already there and load the new content. Not sure if this helps in any way or form but just my thoughts on the matter while having my coffee.
It sounds like basically your page is loading your commands and until finished will not allow your links to be clicked as it is busy. Have you tried opening two pages at the same time, setting your commands to run the report on one and clicking the second tab and loading another page from that window instead?
If PHP is loading or executing in the background it is common that your content will not react while the code is running although you can still see the page in front of you. By submitting your report to run your basically telling it to forget the content already there and load the new content. Not sure if this helps in any way or form but just my thoughts on the matter while having my coffee.