Home arrow Forum Latest posts of: FinLy - Arifin
  Welcome, Guest. Please login or register.
Did you miss your activation email?
January 07, 2009, 03:33:51 PM
Home New Posts Search Calendar


Login with username, password and session length
  Show Posts
Pages: [1] 2
1  Joomla Hacks / Joomla-SMF 2.0.x / Mod SMF Login - XHTML Valid on: October 04, 2006, 06:12:38 AM
Hello,

I attach mod smf login that valids XHTML 1.0 http://validator.w3.org

2  Joomla Hacks / Joomla-SMF 2.0.x / Re: Customized Login Module on: September 18, 2006, 08:14:28 AM
Hello, Dario

I am happy that it works with you.
Actually I dont change anything in horizontal module, even more in my place I tested, I dont find anything wrong with the alignment.
I think it's the compability layout problem with your joomla template with the horizontal menu style.

I think the module will display Username not the real name.

I just guess, may be when you installed the JSMF Component and synchronized the users, you clicked "sync realnames" instead of "sync usernames"

To make the module dislpay username, when you synchronize the user, you must click sync usernames to synchronize usernames to SMF.
That's all.

Please correct me if I am wrong.

Thank You

Best Regards,

Arifin ( FinLy )
3  Joomla Hacks / Joomla-SMF 2.0.x / Re: Customized Login Module on: September 14, 2006, 01:43:17 PM
In RocketTheme Forum, there are some people already tested this mod and I got a good response.  Grin
4  Joomla Hacks / Joomla-SMF 2.0.x / Re: Log In Module on: September 14, 2006, 06:41:06 AM
I have made a customisation for JSMF Login Module
http://www.joomlahacks.com/component/option,com_smf/Itemid,94/topic,2340.0

5  Joomla Hacks / Joomla-SMF 2.0.x / Customized Login Module on: September 14, 2006, 06:34:12 AM
Based on this topics,
http://www.joomlahacks.com/component/option,com_smf/Itemid,94/topic,2313.0

I just made a customisation of JSMF Login Module.

In Module administrator of JSMF Login Module :
Menu Style :
* Customized
* Vertical
* Horizontal
* Flat List

Choose "Customized" if you want to use the horizontal layout of the login form.

I also add :
Registration Text
to change the default text ("No account yet? Register") for unregister user in the login form.

Sometimes, the module will look weird in some template. You must change the CSS file of the template to make it displayed well.

This is a modification of the JSMF Login Module by Kevin8020 and Wolverine.
And,
This version only works with SMF 1.1 RC2 or higher and the JSMF(Joomla-SMF) Bridge version 2.0 from JoomlaHacks.com!
6  Joomla Hacks / Joomla-SMF 2.0.x / Re: JSMF 2.0 Beta on: September 08, 2006, 07:15:49 AM
Hello,

when I access the forum, the following error occurs:
Code:
Fatal error: Cannot access protected property JCache_Lite_Function::$_cache in /home/netsh50050/html/includes/joomla.cache.php on line 38

Please check it on http://dev.inlinespeedskaten.info !

Running on:
Joomla v1.0.11
SMF v1.1rc3
Database Version: 4.1.13-standard-log
PHP Version: 5.1.1
Web Server: Apache

Are you using JACL ?
7  Joomla Hacks / Joomla-SMF 2.0.x / Re: JSMF 2.0 Beta on: September 08, 2006, 02:15:08 AM
Is there a CB plugin that will work with JSMF 2.0?

Of course there is.
Just download the package, unzip it, and you will find
joomla-smf_cb_plugin_2_0.zip

Cheers
8  Joomla Hacks / Joomla-SMF 1.1.x / Re: SMF's patched index.php on: August 13, 2006, 12:42:06 PM
Get the index.php from the SMF installation package, and Try to upload it
9  Joomla Hacks / Joomla-SMF 1.1.x / Re: Need help configuring SMF on: August 13, 2006, 12:36:52 PM
**What error did you get?

**Did you put your smf installation in the directory named "forum", and that directory is under your Joomla folder?

**Is your smf database same with the joomla database?
10  Joomla Hacks / Joomla-SMF 1.1.x / [ASK] Just Curious About JSMF 2.0 on: August 09, 2006, 04:38:39 AM
Hello Wolverine,

Just curious when JSMF 2.0 will be released?

And what is the difference with before version? What are the features?

I am waiting for the new release....  Grin
11  Joomla Hacks / Joomla-SMF 1.1.x / [Info] SMF Component & Multiple Forum on: July 20, 2006, 10:02:51 AM
Based on this forum :
Code:
http://www.simplemachines.org/community/index.php?topic=64492.0

Run multiple forums from :
1 database, 1 directory, 1 installation.

At first, I thought that the tricks will only work with Orstio's SMF component. However, I have been falling in love with Wolverine's SMF component and tried the tricks to his SMF component. The result is SUCCESS !!!
I can run Multiple forums only with 1 installation of SMF in 1 directory and only need 1 database.


For Information, I use :
* Joomla 1.0.10
* SMF 1.1 RC2
* Wolverine's JSMF Component v. 1.1.4.2 (The latest)

Here are the steps :
1. Run this in phpMyAdmin
Code:

Code:
CREATE TABLE IF NOT EXISTS `smf_forums` (
  `forumName` text NOT NULL,
  `catList` varchar(128) NOT NULL default ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;


2. Browse the tables you create and add your fields like the example below. forumName is the name you'll be passing in, catList are the category id's you want to display for that forum.

forumName       catList
computer        1,2,3,4,5
electronics     1,2,6,7,8
entertainment   1,2,9,10,11
and so on... (unlimited forum)

3. Go to your smf forum directory and search in Sources directory

In Load.php

Find:
Code:

Code:
$user_info['query_see_board'] = '(FIND_IN_SET(' . implode(', b.memberGroups) OR FIND_IN_SET(', $user_info['groups']) . ', b.memberGroups))';
   


Add After:
Code:

Code:
// Added for the multiple forum mod
    if(!empty($_REQUEST['forum']) && !isset($_REQUEST['action']) && !isset($_REQUEST['board']) &&!isset($_REQUEST['topic'])){
      $forumList = db_query("SELECT catList FROM {$db_prefix}forums WHERE forumName = '$_REQUEST[forum]'", __FILE__, __LINE__);
      $row_forumList = mysql_fetch_assoc($forumList);
      $user_info['query_see_board'] .= ' AND FIND_IN_SET(c.ID_CAT, "' . $row_forumList['catList'] . '")';     
   }


4. In BoardIndex.php (in Sources dir)

Find:
Code:
         
Code:
AND b.childLevel <= 1" : ''), __FILE__, __LINE__);

Replace with:
         
Code:
AND b.childLevel <= 1" : '') . " ORDER BY c.catOrder, b.boardOrder ASC" , __FILE__, __LINE__);


5. The following fix thanks to Kingconnor

Open "your_smf_forum_dir/Sources/BoardIndex.php" and find the following code

Code:
$result_boards = db_query (around line 71)

Add above that the following code (might look familiar)

Code:
   // Added for the multiple forum mod
    if(!empty($_REQUEST['forum']) && !isset($_REQUEST['board']) &&!isset($_REQUEST['topic'])){
      $forumList = db_query("SELECT catList FROM {$db_prefix}forums WHERE forumName = '$_REQUEST[forum]'", __FILE__, __LINE__);
      $row_forumList = mysql_fetch_assoc($forumList);
     $user_info['query_see_board'] .= ' AND FIND_IN_SET(c.ID_CAT, "' . $row_forumList['catList'] . '")';
   }


6. Create a link to your new forums!
* If you use SEF, your forum link will like this :
http://your_domain_name/component/option,com_smf/Itemid,26/forum,computer/
http://your_domain_name/component/option,com_smf/Itemid,26/forum,electronics/
http://your_domain_name/component/option,com_smf/Itemid,26/forum,entertainment/

* If you dont use SEF, your forum link will like this :
http://your_domain_name/index.php?option=com_smf&Itemid=26&forum=computer
http://your_domain_name/index.php?option=com_smf&Itemid=26&forum=electronics
http://your_domain_name/index.php?option=com_smf&Itemid=26&forum=entertainment

!! If your leave the forum part off like
http://your_domain_name/component/option,com_smf/Itemid,26/
or
http://your_domain_name/index.php?option=com_smf&Itemid=26
you will see all the boards of all your forums.

!! Works in unwrapped and also wrapped mode.

If you want to see the sample, just go to above links (The original creator of this tricks)

Best Regards,

FinLy

12  Joomla Hacks / Joomla-SMF 1.1.x / Joomla index.php Patch on: May 18, 2006, 03:55:35 AM
I install JSMF 1.1.02 and get this error when I patch the joomla index.php
Failed: Code to be patched not found in file: /home/*******/public_html/zone/index.php
I have tried to install the fresh index.php from joomla package. But still get the same error.
My joomla version is 1.0.8
and I use smf 1.1rc2

How to patch the index.php manually?

Thank You
13  Joomla Addon Discussion / Joomla Mambots / Re: discussbot v1.3 problem. on: April 02, 2006, 03:10:28 PM
hmm...
is that a patch for joomla 1.0.8?
How can I install the patch?
Must I overwrite all the files? Too dangerous
Is there any save way for it?
14  Joomla Addon Discussion / Joomla Mambots / Re: discussbot v1.3 problem. on: April 02, 2006, 01:56:09 PM
I just installed discuss bot 1.3.1
and give me this error

http://www.mysite.com/javascript:send_form(14)

Page not Found

What is this meaned?
15  Joomla Hacks / Joomla-SMF 1.1.x / Re: Problem SEF with Bridge on: April 01, 2006, 08:02:26 PM
well, if you are logged out from Joomla and you access a Forum page it should immediately log you out as well.  What link are you clicking to logout(inside SMF, joomla default login, jsmf login, cb?)

I can not log out from joomla if I click logout link from joomla default login (Give me error.), even I access the forum page again, it is still logged in.
but, if I click logout link inside SMF it is OK.
Pages: [1] 2


Login with username, password and session length

Powered by MySQL Powered by PHP Joomla Forum | Powered by SMF 1.1 RC1.
© 2001-2005, Lewis Media. All Rights Reserved.
Joomla Bridge by JoomlaHacks.com
Valid XHTML 1.0! Valid CSS!

Joomla Hacks is a Joomla Components, Joomla Modules, Joomla Templates, & Joomla Mambots resource portal. None of the text or images in this public website may be copied without the expressed written consent of the authors. Copyright 2005 by JoomlaHacks.com. Powered by Joomla. All rights reserved.
Terms of Use
Joomla Hacks



Joomla Hacks
German Lang French Lang Italian Lang Spanish Lang Japanese Lang Chinese Lang
i-Vibe.com
Search Contact About Advertise Blogs Topsites Submit News Register Login