Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
The FireBoard forum component development is still going on. In order to get better, FireBoard will be moved from the Best of Joomla website.
During this transition period, the forum in Best of Joomla will be closed to new posts.
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard
(SOLVED!)Loads forum page then reloads once again? (1 viewing) (1) Guest
TOPIC: (SOLVED!)Loads forum page then reloads once again?
#8644
(SOLVED!)Loads forum page then reloads once again? 1 Year, 7 Months ago  
##
damianeastwood (User)
Fresh Boarder
Posts: 4
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/06/05 15:50 By damianeastwood.
 
 
#8662
Re:Loads forum page then reloads once again? 1 Year, 7 Months ago  
If you'd payed any attention to this site, it will also do the same, probably something to do with cache or sessions or something. It will probably be a small error that will be ironed out in future releases, I wouldnt worry about it, although it is fustrating
ChrisB123 (User)
Junior Boarder
Posts: 29
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#8718
Re:Loads forum page then reloads once again? 1 Year, 7 Months ago  
This has been discussed before. It is an issue with Joomla. Search for 'refresh twice' if you want to read more.
palebluedot (Moderator)
FB Documentation Team
Template Documentation Project
Moderator
Posts: 622
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Location: Minneapolis, MN US Birthdate: 1973-01-12
Logged Logged
 
 
 
#9117
Re:Loads forum page then reloads once again? 1 Year, 7 Months ago  
There is a fix that you have to pay for to stop this. I feel it is a big problem that should have been looked at quite a while back.
jasonrhl (User)
Junior Boarder
Posts: 53
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#9218
Re:Loads forum page then reloads once again? 1 Year, 7 Months ago  
my site is doing this too. strange thing is that it only started to do it the other day...
azenis (User)
Junior Boarder
Posts: 55
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Nige
 
 
#10766
Re:Loads forum page then reloads once again? 1 Year, 7 Months ago  
This is definitely NOT Joomla problem. Problem is that simpleboard -> joomlaboard -> and now FireBoard maintain their own sessions for users, not using Joomla sessions, here is the code:

file: fireboard.php
Session maintaining code starts at line 226, later on you will find line responsible for reload

[code:1]line 265: echo 'setTimeout("window.location.reload( true )",100);';[/code:1]Why set timeout instead of direct reload in original code? Reload must happen after database update in next lines (out of if statement) otherwise there is endless loop of redirection.

FireBoard guys should definitely get a rid of their own session table and use Joomla session table to identify visitor. Or do dual system, in case of joomla installation use joomla sessions, in case of stand alone installation use fireboard sessions.

I replaced mentioned code with quick and dirty fix (may be not too dirty). Code odes exactly same but "reload" is happening "on background":
[code:1]global $mosConfig_live_site;
$database->setQuery("UPDATE #__fb_sessions SET lasttime=$systime where userid=$my->id"«»);
$database->query();
mosRedirect($mosConfig_live_site.$_ENV["REQUEST_URI"]);[/code:1]Works very nice.
Prutkar (User)
Fresh Boarder
Posts: 17
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/06/09 10:51 By Prutkar.
 
 
 
#10928
Re:Loads forum page then reloads once again? 1 Year, 7 Months ago  
This fixes this problem?

If yes, this is huge, why this isnt sticky!?

(i have FB 1.0 so i guess thats why i cant find that line in my fireboard.php so i cant try this...)
Bojan1983 (User)
Fresh Boarder
Posts: 13
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#10935
Re:Loads forum page then reloads once again? 1 Year, 7 Months ago  
This "fix" really works. Any problem reported after applying this hack ? :/
kuato (User)
OpEn YoUr MiNd
Moderator
Posts: 309
graphgraph
User Offline Click here to see the profile of this user
Gender: Male kuato@puntaltenses.com.ar Location: Argentina Birthdate: 1978-07-24
Logged Logged
 
OpEn YoUr MiNd ---> Correct my english please! i wish to learn.
 
 
#10947
Re:Loads forum page then reloads once again? 1 Year, 7 Months ago  
No problems.
Prutkar (User)
Fresh Boarder
Posts: 17
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
 
#10948
Re:Loads forum page then reloads once again? 1 Year, 7 Months ago  
FB 1.0 has same line of code in fireboard.php file
[code:1]echo 'setTimeout("window.location.reload( true )",100);';[/code:1]I bet you find this in Simpleboard as well as in Joomlaboard.
Prutkar (User)
Fresh Boarder
Posts: 17
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
 
Go to top