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?
Re:Fireboard 1.0.4 Bug thread (1 viewing) (1) Guest
Go to bottom Favoured: 5
TOPIC: Re:Fireboard 1.0.4 Bug thread
#54839
Re:Fireboard 1.0.4 Bug thread 4 Months ago  
I start new thread and I delete it but on this picture it showing that topics are still here


But when I open forum topics are not there


PLEASE help me
dada (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#54840
Re:Fireboard 1.0.4 Bug thread 4 Months ago  
dada wrote:
I start new thread and I delete it but on this picture it showing that topics are still here


But when I open forum topics are not there


PLEASE help me


this is an issue in 1.0.4... please go to the FireBoard backend and click on "Recount Categories Stats"
racoon (User)
FB Core Team
Senior Boarder
Posts: 355
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#54848
Re:Fireboard 1.0.4 Bug thread 4 Months ago  
I've already posted a fix for that in this topic ...
addicted2sex (User)
Junior Boarder
Posts: 20
graphgraph
User Offline Click here to see the profile of this user
Gender: Male ironcortain Iron Team Limited
Logged Logged
 
The administrator has disabled public write access.  
#54945
Re:Fireboard 1.0.4 Bug thread 4 Months ago  
Hi there,

I use Joomla 1.0.x and Fireboard 1.0.4. The problem was, that when moving a topic, the title of the topic in the old thread, which should link to its new location, was double url-encoded, resulting in something like
...&id=12&ItemID=13... which of course didn't work.

I use the flat layout, so the fix was to edit

/components/com_fireboard/template/default/flat.php on line 355 and change

Code:


<a  class = "fb-topic-title fbm" href = "<?php echo htmlspecialchars(sefRelToAbs(JB_LIVEURLREL.'&amp;func=view&amp;'.$newURL));?>"><?php echo stripslashes($leaf->subject); ?></a>



to either

Code:


<a  class = "fb-topic-title fbm" href = "<?php echo sefRelToAbs(JB_LIVEURLREL.'&amp;func=view&amp;'.$newURL);?>"><?php echo stripslashes($leaf->subject); ?></a>


hoping that JB_LIVEURLREL and the result of sefRelToAbs() are url-encoded, or

Code:


<a  class = "fb-topic-title fbm" href = "<?php echo htmlspecialchars(sefRelToAbs(htmlspecialchars_decode(JB_LIVEURLREL.'&amp;func=view&amp;'.$newURL)));?>"><?php echo stripslashes($leaf->subject); ?></a>



which does some double work but produces valid results independently of the previous question.

This may be an issue when using another layout as well, so the appropriate file(s) should be changed.

Hope this helps someone. As I am not a Joomla/Fireboard expert, better solutions are welcome.

Many thanx to the delelopers !
pavlos (User)
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#54964
Re:Fireboard 1.0.4 Bug thread 4 Months ago  
I am using an Fireboard1.0.4 on Joomla 1.5.4

running captcha, appear captcha image,,,but can't work.

I was tried posting, error message.(when no login)
"wrong code"

pls tell me this problems.

example:
www.dos-v.biz/forum/post-reply/2-pc.html
retro (User)
Fresh Boarder
Posts: 16
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#59782
Re:Fireboard 1.0.4 Bug thread 1 Month, 3 Weeks ago  
emstalk wrote:
I guess the favorite/unfavorite, subscribe/unsubscribe redirect to fb profile bug is just not that important is it? Still patiently waiting. Doesn't someone have a fix?

Thanks


Here is a fix for CB 1.1, FB 1.0.4. I checked out the code for FB 1.0.5 RC2, and it "fixes" this issue by doing a redirect to the forum topic instead of trying to go to the profile page, so I replicated that behaviour here (post.php).

I couldn't download CB 1.2 RC3 (as I'm a not a CB documentation subscriber) to see whether it has the fixes for cb.simpleboardtab.php.

I haven't fixed favorite/unfavorite because this feature is not present in the CB plugin, so I've disabled it on my websites (via the FB config page).

Code:


Compare: (<)C:Projectsbackupcomponentscom_comprofilerpluginuserplug_cbsimpleboardtabcb.simpleboardtab.php (21897 bytes)
   with: (>)C:Projectsxampplitehtdocscomponentscom_comprofilerpluginuserplug_cbsimpleboardtabcb.simpleboardtab.php (22004 bytes)

263a263
>      $cids = ""; //dansari
273c274
<     .sefRelToAbs('index.php?option='.$this->com_name.($Itemid ? '&amp;Itemid='.$Itemid : '').'&amp;func=userprofile&amp;do=unsubscribe&amp;thread='.$subs->thread)
---
>     .sefRelToAbs('index.php?option='.$this->com_name.($Itemid ? '&amp;Itemid='.$Itemid : '').'&amp;func=userprofile&amp;do=unsubscribeitem&amp;thread='.$subs->thread) //dansari
278,282c279,284
<     }
<     $return .= "nt<tr>ntt<td colspan="2"><form action=""
<         .sefRelToAbs('index.php?option='.$this->com_name.($Itemid ? '&amp;Itemid='.$Itemid : '').'&amp;func=userprofile&amp;do=update')
<         .'" method="post" name="postform" id="postform">'
<         .'<input type="hidden" name="do" value="update" />'
---
>     $cids .= "&amp;cid[]={$subs->thread}"; //dansari
>     }
>     $return .= "nt<tr>ntt<td colspan="2"><form action=""
>         .sefRelToAbs('index.php?option='.$this->com_name.($Itemid ? '&amp;Itemid='.$Itemid : '').'&amp;func=userprofile&amp;do=unsubscribe'.$cids) //dansari
>         .'" method="post" name="postform" id="postform">'
>         .'<input type="hidden" name="do" value="unsubscribe" />'


Compare: (<)C:Projectsbackupcomponentscom_fireboardtemplatedefaultpost.php (77561 bytes)
   with: (>)C:Projectsxampplitehtdocscomponentscom_fireboardtemplatedefaultpost.php (77591 bytes)

1121c1121
<                 setTimeout("location='<?php echo sefRelToAbs(JB_LIVEURLREL.'&func=userprofile&do=show'); ?>'", 3500);
---
>                 setTimeout("location='<?php echo sefRelToAbs(JB_LIVEURLREL . '&amp;func=view&amp;catid=' . $catid . '&amp;id=' . $id); ?>'", 3500);

dansari (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/10/10 06:38 By dansari.
 
The administrator has disabled public write access.  
Go to top