| HaKsiu | | June 04, 2009, 10:08:51 am | | I have to question whether this was a bridge between Joomla 1.5 and SMF 2.0 runs in both directions, smf 2.0 ---> Joomla 1.5 and Joomla 1.5 ---> smf 2.0 | 1 comment | Write Comment | |
|
|
|
| smfadmin | | May 01, 2009, 10:32:02 pm | Hello,
changelog
Nicola Ferruzzi: Issue97: pop-up for PM messages are properly redirected Nicola Ferruzzi: Its possible to disable/enable the warnings regarding expired sessions Nicola Ferruzzi: Added autotask support, to avoid strict errors Nicola Ferruzzi: Issue99: do not attempt to call a mysql function with mysqli Nicola Ferruzzi: Issue93: queryless value is properly reported Pax24: French translation
| 1 comment | Write Comment | |
| smfadmin | | April 08, 2009, 01:14:48 am | And everything looks fine.
If your installation has problems with SJSB 1.0.14a please open me a bug or send me a request for support.
| 0 comments | Write Comment | |
| smfadmin | | April 01, 2009, 05:33:39 pm | Just added few new boards to reflect the attempt to provide a forum for support requests not just for testing.
PS: last month I had to rush to release the final version of one of my commercial softwares so I was not able to concentrate on SJSB. This month I do expect to have more free time to work on 1.0.15a | 1 comment | Write Comment | |
| Pax24 | | March 23, 2009, 02:58:22 am | When you have a bridged forum, you don't want people and bots use it unbridged ! So there is way to auto redirect in case of direct link to your forum. It should be cool to put it in the mod too.
To do it you need to add some lines in your forum/index.php First of all, look at your forum url when bridge is on. Example : forum not bridged = http://www.yoursite.com/smf/index.php forum with bridge = http://www.yoursite.com/forum or if you don't use SEF = http://www.yoursite.com/index.php?option=com_smf&Itemid=2
So you need to add at the very start of your SMF forum index.php file, let's say line 36 just before or after this line :
$forum_version = 'SMF 2.0 RC1';add :
// Redirect users who try to access /forum directly except for some case if (strpos($_SERVER['QUERY_STRING'], 'dlattach') === false && strpos($_SERVER['QUERY_STRING'], 'action=admin') === false) { if(!defined('_JEXEC')) header("Location: /forum?".$_SERVER['QUERY_STRING']); }!!Remind to adapt to your url this : "Location: /forum?" or if you don't use SEF = "Location: /index.php?option=com_smf&Itemid=2&" (don't forget to change to the right Itemid also !)
So know if someone try to access directly to your forum he will be auto redirect to the version with bridge and full layout.
As you guess, you can disable this redirection for some action like in this example when downloading attacment or when going to admin panel (usefull when you need admin without bridge !). | 3 comments | Write Comment | |
| smfadmin | | March 16, 2009, 08:18:16 am | Hello,
1.0.14 changelog:
Nicola Ferruzzi: Issue61 part A: the remember me plugin is ignored by SJSB auth/user plugins. See http://code.google.com/p/sjsb/issues/detail?id=61 for a detailed description. Nicola Ferruzzi: Issue63: emails links are bridged. Nicola Ferruzzi: Issue62: declare compatible UTF-8 functions to avoid function name conflicts between Joomla! and SMF. Nicola Ferruzzi: Fixed anchored links Nicola Ferruzzi: Compatible with Joomla! internal SEF Nicola Ferruzzi: Shows SMF page titles Nicola Ferruzzi: Its possible to install packages
| 23 comments | Write Comment | |
| smfadmin | | February 07, 2009, 08:10:09 pm | Here
http://code.google.com/p/sjsb/downloads/list
the theme has been generated creating a copy of the default theme, adding all the CSS files from the default CSS folder (even the ones that do not get used..) and calling "stylizator" for each one.
Let me know if it looks good with IE/Chrome too because I've no access to it.
It also fixes the topic body with IE as reported in this forum
ty | 12 comments | Write Comment | |