Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
Welcome, Guest
Please Login or Register.    Lost Password?
Go to bottom Post Reply Favoured: 8
TOPIC:
#8644
(SOLVED!)Loads forum page then reloads once again? 1 Year, 1 Month ago  
##
damianeastwood (User)
Fresh Boarder
Posts: 4
graphgraph
User Offline Click here to see the profile of this user
 
Last Edit: 2008/06/05 15:50 By damianeastwood.
 
The administrator has disabled public write access.  
#8662
Re:Loads forum page then reloads once again? 1 Year, 1 Month 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
 
The administrator has disabled public write access.  
#8718
Re:Loads forum page then reloads once again? 1 Year, 1 Month 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
 
 
The administrator has disabled public write access.  
#9117
Re:Loads forum page then reloads once again? 1 Year, 1 Month 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: 39
graphgraph
User Offline Click here to see the profile of this user
 
The administrator has disabled public write access.  
#9218
Re:Loads forum page then reloads once again? 1 Year, 1 Month ago  
my site is doing this too. strange thing is that it only started to do it the other day...
azenis (User)
Senior Boarder
Posts: 55
graphgraph
User Offline Click here to see the profile of this user
 
Nige
 
The administrator has disabled public write access.  
#10766
Re:Loads forum page then reloads once again? 1 Year 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:

line 265: echo 'setTimeout("window.location.reload( true )",100);';
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:

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"]);
Works very nice.
Prutkar (User)
Fresh Boarder
Posts: 17
graphgraph
User Offline Click here to see the profile of this user
 
Last Edit: 2007/06/09 10:51 By Prutkar.
 
 
The administrator has disabled public write access.  
#10928
Re:Loads forum page then reloads once again? 1 Year 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
 
The administrator has disabled public write access.  
#10935
Re:Loads forum page then reloads once again? 1 Year 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
 
OpEn YoUr MiNd ---> Correct my english please! i wish to learn.
 
The administrator has disabled public write access.  
#10947
Re:Loads forum page then reloads once again? 1 Year ago  
No problems.
Prutkar (User)
Fresh Boarder
Posts: 17
graphgraph
User Offline Click here to see the profile of this user
 
 
The administrator has disabled public write access.  
#10948
Re:Loads forum page then reloads once again? 1 Year ago  
FB 1.0 has same line of code in fireboard.php file
Code:

echo 'setTimeout("window.location.reload( true )",100);';
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
 
 
The administrator has disabled public write access.  
Go to top Post Reply
Powered by FireBoardget the latest posts directly to your desktop