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?
FireBoard Manual Latest release discussions Download FireBoard Spread FireBoard!
Re:Latest SVN - getting ready for 1.0.5 alpha (1 viewing) (1) Guest
Go to bottom Favoured: 6
TOPIC: Re:Latest SVN - getting ready for 1.0.5 alpha
#53475
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 2 Weeks ago  
It seems so that sh404sef doesn't work with relative addressing.
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.  
#53494
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 2 Weeks ago  
does the 1.0.5 have support for Joomla 1.5.3 PLUGINS??


As we known mambots are enabled for Fireboard 1.0.4 with Joomla 1.0.x.

In this post I will show you some small modify so that you can use plugins in Fireboard 1.0.4 with Joomla 1.5.x.

This modify is tested with fireboard 1.0.4 and Joomla 1.5.3!

Two files will be modified /components/com_fireboard/template/default: view.php (2) and post.php (1).

Find:
Code:
//Joomla Mambot Support , Thanks hacksider
if ($fbConfig['jmambot'])
{
global $_MAMBOTS;
$row = new t();
$row->text = $sb_message_txt;
$_MAMBOTS->loadBotGroup( 'content' );
$params =& new mosParameters( '' );
$results = $_MAMBOTS->trigger( 'onPrepareContent', array( &$row, &$params, 0 ), true );
$msg_text = $row->text;
}
/* Fininsh Joomla Mambot Support */


Replaced by:
Code:
// Joomla Mambot Support
if ($fbConfig['jmambot'])
{
$row = new t();
$row->text = $fb_message_txt;
if(!defined( '_JEXEC' )){
global $_MAMBOTS;
$_MAMBOTS->loadBotGroup('content';
$params = &new mosParameters('';
$results = $_MAMBOTS->trigger('onPrepareContent', array
(
&$row,
&$params,
0
), true);
}
else //viet4777
{
JPluginHelper::importPlugin( 'content' );
$dispatcher =& JDispatcher::getInstance();
$params = & new JParameter('';
$results = $dispatcher->trigger('onPrepareContent', array(&$row,&$params,0));
}
$msg_text = $row->text;
}
// Finish Joomla Mambot Support


Now you can embed plugins in your fireboard contents!
subfighter (User)
Jiu Jitsu Techniques Online
Junior Boarder
Posts: 70
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Subfighter estrada_rick@hotmail.com Location: Oceanside, California Birthdate: 1971-05-13
Logged Logged
 
Database Version: 5.0.51a-community
Database Collation: utf8_general_ci
PHP Version: 5.2.5
Web Server: Apache/2.0.63 (Unix)
Joomla! Version: Joomla! 1.5.7
 
The administrator has disabled public write access.  
#53504
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 2 Weeks ago  
kingBT wrote:
I found a moderate problem:
in componentscom_fireboardtemplatedefault_exflat.php
could be same thing in componentscom_fireboardtemplatedefaultflat.php
@ line 75
Code:

<form action = "index.php" method = "post" name = "fbBulkActionForm">

sould be using a absolute url instead of an relative one to work with sh404sef
it should be:
Code:

<form action = "http://localhost/lipova/index.php" method = "post" name = "fbBulkActionForm">

I raised the problem on the sh404sef forum and this is the answer I got.
http://extensions.siliana.com/forums/index.php?topic=9582.0
I tested it on J1.5.3 with and without sh404sef and it worked.

This moderate problem caused the imposibility to delete/move topics (in Recent Discussions for example) with sh404sef enabled


I have sh404SEF enabled on my site on J1.0.15 and it works just fine. Maybe an issue with sh404SEF on J1.5.x?
The absolute path is not a fix and would break other things. Try clearing your URL cache. Thx!
fxstein (Moderator)
FB Core Team
starVmax
Moderator
Posts: 1210
graphgraph
User Offline Click here to see the profile of this user
Gender: Male fxstein starVmax Location: Silicon Valley, USA
Logged Logged
 
 
The administrator has disabled public write access.  
#53509
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 2 Weeks ago  
@fxstein
Maybe this is an issue with sh404SEF on J1.5.X.
Can confirm that the changes from relative to absolute urls affect negative J1.0.5.
We need confirmation from other J1.5.X & sh404sef users.
kingBT (User)
FB Quality & Testing Team
Senior Boarder
Posts: 181
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Location: Romania
Logged Logged
 
The best things are the things for free
 
The administrator has disabled public write access.  
#53515
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 2 Weeks ago  
On edit smiley, if you check more than 1 box to delete, anyway you end deleting just one smiley, and not first, not last, random one.

First time I tried delete 1 and 2: deleted 2
Tried one alone: deleted
3,4,5: deleted 4
3,5,6,7: deleted 7
...

I'm running on a JoomlaPC test server, with j1.5.2 and latest SVN
EDIT: I'm dumb and I installed on live server so this error is from a j1.5.2 running in siteground.com, apache&PHP5
EDIT 2: installed also on the JoomlaPC test server, with j1.5.2 and latest SVN and the error reproduces

Also, on edit, having same issue than rinuccio:
rinuccio wrote:
Edit smilies not work



And smileys cannot be edited cause of this... could be caused by being a test server? no SEO/SEF used
johnnydement (Moderator)
FB Quality & Testing Team
Moderator
Posts: 418
graphgraph
User Offline Click here to see the profile of this user
Voces del Vicio Location: Barcelona Birthdate: 1981-12-23
Logged Logged
 
Last Edit: 2008/07/10 15:00 By johnnydement.
 
"As a discussion over the net grows longer, the probability of a comparison involving Nazis or Hitler approaches one." - Godwin Law
 
The administrator has disabled public write access.  
#53516
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 2 Weeks ago  
No Sef no Seo
Server altervista (free)
rinuccio (User)
Junior Boarder
Posts: 34
graphgraph
User Offline Click here to see the profile of this user
Gender: Male indafun rinuccio@live.it Location: Crotone Birthdate: 1987-09-26
Logged Logged
 
The administrator has disabled public write access.  
#53535
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 2 Weeks ago  
what about with the additional Info icons with Community Builder

i know somewhere in the Forum is hack for that but its old i dont know if it works with this Version ??

Or is it poosible to integrate it in this Version ??

I think there are many who use Com-Builder and the new 1.2rc2 Version is really nice
JerryLeeLewis (User)
Senior Boarder
Posts: 257
graphgraph
User Offline Click here to see the profile of this user
Gender: Male My 'Page jerryleelewis@live.de Birthdate: 1971-11-07
Logged Logged
 
The administrator has disabled public write access.  
#53545
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 2 Weeks ago  
Find me the hack and I will make sure it gets included. Thx!

Still working on the db based config and the automatic upgrade.
fxstein (Moderator)
FB Core Team
starVmax
Moderator
Posts: 1210
graphgraph
User Offline Click here to see the profile of this user
Gender: Male fxstein starVmax Location: Silicon Valley, USA
Logged Logged
 
 
The administrator has disabled public write access.  
#53546
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 2 Weeks ago  
JerryLeeLewis (User)
Senior Boarder
Posts: 257
graphgraph
User Offline Click here to see the profile of this user
Gender: Male My 'Page jerryleelewis@live.de Birthdate: 1971-11-07
Logged Logged
 
The administrator has disabled public write access.  
#53571
Re:Latest SVN - getting ready for 1.0.5 alpha 4 Months, 2 Weeks ago  
Can this FB module positins made to work on J1.5.X?
fb_1, fb_2, fb_bottom, fb_top, fb_msg_1 (After first post), fb_msg_2 (After second post)
kingBT (User)
FB Quality & Testing Team
Senior Boarder
Posts: 181
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Location: Romania
Logged Logged
 
The best things are the things for free
 
The administrator has disabled public write access.  
Go to top