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
1.0.5 RC1 Bug mambot with parameters (1 viewing) (1) Guest
TOPIC: 1.0.5 RC1 Bug mambot with parameters
#58388
1.0.5 RC1 Bug mambot with parameters 3 Months, 3 Weeks ago  
Hi,
I just installed 1.0.5 RC1 (on Joomla 1.0.15) and tested a amazon-mambot with Fireboard.
The mambot includes one parameter to be included in the output code:
Example: {amazon aid='3896871382'}

I used the following code:
Code:

$output = '<iframe src="http://rcm-de.amazon.de/e/cm?t=xxxxxxxx-21&amp;o=3&amp;p=8&amp;l=as1&amp;asins='.$ids.'&amp;fc1=000000&amp;IS2=1&amp;lt1=_blank&amp;lc1=0000FF&amp;bc1=000000&amp;bg1=FFFFFF&amp;f=ifr" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" width="120" height="240" style="width: 120px; height: 240px"></iframe>';


This works fine in Joomla content, but in fireboard the parameters are not correct substituted:

In Joomla: asins=3896871382
In Fireboard: asins=;3896871382&

In fireboard the mambot fails because of the additional charcters ; and &

Any hints how to solve this?

erich
tmp (User)
Fresh Boarder
Posts: 14
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/09/19 00:14 By tmp.
 
 
#58706
Re:1.0.5 RC1 Bug mambot with parameters 3 Months, 3 Weeks ago  
To get this Mambot running on 1.05 RC1 (build 178) I added a simple string-function in the Mambot:

Code:

$ids   = str_replace(";","",$ids);
$ids   = str_replace("&","",$ids);



It is now ok for this Mambot but does not solve the problem for other mambots.


erich
tmp (User)
Fresh Boarder
Posts: 14
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/09/19 00:14 By tmp.
 
 
Go to top