Hi
Im developing a migration system, vBulletin to Fireboard, and i had some problems with customers:
Problem #1:
1. example of ": if post title have a " the metaKeys and metaDesc is closed there and the page show the rest above.
but.......
But you have to had " on your database not " ????
well, fireboard reads that textually and you have ugly titles with ", on posts and categories (" is replaced by something like ", then youll see " )
Can work decode html entities on messages and categories, also can work use " on database but adding replace of " by " on view.php because that cause a close of the tag on metaKeys and metaDesc, and also can work modify the html entities calls.
Problem #2:
Redundancy on Database tables:
Why fireboard needs the mail on each message??
jos_fb_messages
id parent thread catid name userid email
1 0 1 13 Felipe 64
This e-mail address is being protected from spam bots, you need JavaScript enabled to view it
id parent thread catid name userid email
2 0 2 13 Felipe 64
This e-mail address is being protected from spam bots, you need JavaScript enabled to view it
Problem #3:
Why my mail is showed like 3 times when im watching a post??
source code:
<input type = "hidden" name = "email" size = "35" class = "inputbox" maxlength = "35" value = "
This e-mail address is being protected from spam bots, you need JavaScript enabled to view it
"/>
Problem #4
Why fireboard show numbers above messages on subcategories??
Code of fb_sub_category_list.php:
if ($lastPosttime != 0)
{
unset($obj_lp);
$database->setQuery("SELECT id, thread, catid,name, subject, userid from #__fb_messages WHERE time=$lastPosttime and hold='0' and moved!='1' LIMIT 1"

;
$database->loadObject($obj_lp);
$latestname = $obj_lp->name;
$latestcatid = $obj_lp->catid;
$latestid = $obj_lp->id;
$latestsubject = stripslashes($obj_lp->subject);
$latestuserid = $obj_lp->userid;
$latestthread = $obj_lp->thread;
// count messages in thread
$database->setQuery("SELECT count(id) from #__fb_messages WHERE thread=$latestthread AND hold=0"

;
$latestcount = $database->loadResult();
$latestpage = ceil($latestcount / $fbConfig->messages_per_page);
echo($latestpage); //
here!!!!!!!!!!!
}
Problem #5:
Why Fireboard redirect to homepage when login??
Problem #6:
Why Fireboard do image attachments like this??
[im g size=511]
myimage.jpg[/img]
Resized, but sometimes look ugly or bad, and you cant view the full image
What i had to do?
[u rl="http:\myimage.jpg"][ im g size=100]
myimage.jpg[/img][/url]
Example of a thumbnail with link to full image
Problem #7:
testing under windows, attachment was added (image) and the table:
jos_fb_attachment table
mesid filelocation
36501 C:AppServ
wwwjom/images/fbfiles/images/before.jpg
where are the \?
attachment table working for view referer post on administrator but replace with dummy doesnt work here (img erased)
Problem #8 while posting this:
Why i have to write two \?
1.
2. \
Soon more.........