Home arrow Forum JSMF 2.0.2 Released
  Welcome, Guest. Please login or register.
Did you miss your activation email?
May 15, 2008, 10:38:54 PM
Home New Posts Search Calendar


Login with username, password and session length
+  Joomla Forum
|-+  Joomla Hacks
| |-+  Joomla-SMF Forum Support
| | |-+  Joomla-SMF 2.0.x (Moderators: -Wolverine, kai920)
| | | |-+  JSMF 2.0.2 Released
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: 1 2 [3] 4 5 ... 9 Go Down Print
Author Topic: JSMF 2.0.2 Released  (Read 37733 times)
ulas
Joomla Newbie
*

Karma: +0/-1
Offline Offline

Posts: 3


View Profile WWW
Re: JSMF 2.0.2 Released
« Reply #30 on: February 17, 2007, 06:14:42 AM »

AFAIK the OpenSEF guys are working on a new release somewhere mid (or end) February. More information on JSMF and OpenSEF can be found on the OpenSEF forum:
http://forum.j-prosolution.com/smf/2569-jsmf-opensef.html

Too bad the demo is offline Sad

thanks for the answer . i'm a member of opensef test team . i'm testing with opensef_rc6 and latest bridge on my site. i got error Sad
Logged
v-mann
Joomla Newbie
*

Karma: +0/-1
Offline Offline

Posts: 8


View Profile
Re: JSMF 2.0.2 Released
« Reply #31 on: February 17, 2007, 05:55:37 PM »

GREAT it fixed all my problems with the 2.0,* Version... so i can finaly change from 1.1.4.2 :-))

Very Good Work!!!  Shocked Shocked


the only thing i nam missing is the OpenSEF support... Embarrassed
Logged
-Wolverine
Moderator
Joomla Guru
*****

Karma: +373/-34
Offline Offline

Posts: 3393


Lead Developer


View Profile WWW
Re: JSMF 2.0.2 Released
« Reply #32 on: February 18, 2007, 11:26:14 PM »

Hello,

i have a problem with the bridge when using the lost password function.

first my configuration:

joomla 1.0.12
jsmf: 2.0.2a | jsmf cb plugin 2.0.3
SMF: 1.1.1
CB: 1.0.2

I'm using cb login to log on to the site, if a user has forgotten his password and want to order a new one he get the following error:

JSMF CB Plugin error:: Failed to update password to SMF:: Table 'databasename.members' doesn't exist SQL= UPDATE members SET= passwd='a string' Where id=11
From:: /path/to/webroot/administrator/component/com_smf/admin.smf.class.php || updatepass || 1201

Seems that the function can't read the var {$jsmfConfig->smf_prefix} properly although it is set correctly in backend and correctly displayed in mysql.

If you want to see it live just pm me i'll give you account informations with which you can test.

rgds,
gripster
This is a bug with a very simple fix.  Surprisingly it has never failed on me in testing for unknown reasons.  The fix is straightforward.  On line 1178 of administrator/components/com_smf/admin.smf.class.php you will fine this line:

Code:
global $database;

The fix is to append one line after that one, like this:

Code:
global $database;
global $jsmfConfig;
  That should solve your problem.  This will be corrected in the next release.
Logged

Need help?  Check Here First!
Get the JSMF User Guide
SEARCH this forum.
gripster
Joomla Newbie
*

Karma: +0/-1
Offline Offline

Posts: 9


View Profile
Re: JSMF 2.0.2 Released
« Reply #33 on: February 19, 2007, 10:04:32 AM »

This is a bug with a very simple fix.  Surprisingly it has never failed on me in testing for unknown reasons.  The fix is straightforward.  On line 1178 of administrator/components/com_smf/admin.smf.class.php you will fine this line:

Code:
global $database;

The fix is to append one line after that one, like this:

Code:
global $database;
global $jsmfConfig;
  That should solve your problem.  This will be corrected in the next release.


Sorry, but i have to disappoint you. Now i get the following error message:

JSMF CB Plugin error: Failed to update password to SMF:: Unknown column id in where clause SQL= Update smf_members Set passwd=a long string Where id = 34 From:: /path/to/webroot/administrator/components/com_smf/admin.smf.class.php || updatepass || 1202

rgds,
gripster
« Last Edit: February 19, 2007, 10:11:40 AM by gripster » Logged
-Wolverine
Moderator
Joomla Guru
*****

Karma: +373/-34
Offline Offline

Posts: 3393


Lead Developer


View Profile WWW
Re: JSMF 2.0.2 Released
« Reply #34 on: February 19, 2007, 11:24:01 AM »

wow, this must have never worked.  I'm not sure how in the *&#@ I didn't catch this.  Thanks.  Here is the fix.

On or around line 1197 find this line:
Code:
"WHERE id = '$smf_id' ";

And change it to be:

Code:
"WHERE ID_MEMBER = '$smf_id' ";
Logged

Need help?  Check Here First!
Get the JSMF User Guide
SEARCH this forum.
gripster
Joomla Newbie
*

Karma: +0/-1
Offline Offline

Posts: 9


View Profile
Re: JSMF 2.0.2 Released
« Reply #35 on: February 19, 2007, 02:34:00 PM »

wow, this must have never worked.  I'm not sure how in the *&#@ I didn't catch this.  Thanks.  Here is the fix.

On or around line 1197 find this line:
Code:
"WHERE id = '$smf_id' ";

And change it to be:

Code:
"WHERE ID_MEMBER = '$smf_id' ";

Hi Wolverine,

yes i can confirm the problem is solved now. Thank you very much for your work on this.

rgds,
gripster
Logged
fabs
Joomla Newbie
*

Karma: +1/-0
Offline Offline

Posts: 18


View Profile
Re: JSMF 2.0.2 Released
« Reply #36 on: February 21, 2007, 08:22:16 AM »

The only problem now after applying the two hacks is that the latest forum posts module displays this:
CODE:
error fetching ID_MEMBER:

instead of the posted messages.


sorry it was no bug.... i had issues with sync of smf and joomla. for some reason the db password got lost in smf settings.php...
« Last Edit: February 21, 2007, 09:03:27 AM by fabs » Logged
ChesTeR_Z
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 1


View Profile
Re: JSMF 2.0.2 Released
« Reply #37 on: February 21, 2007, 08:37:31 AM »

click to patch  Patch Joomla Source Files. 

Failed: Code to be patched not found in file: header( 'Expires/usr/local/apache/data/htdocs/index.php

joomla 1.0.12
Logged
Livebox
Guest
Re: JSMF 2.0.2 Released
« Reply #38 on: February 21, 2007, 09:11:12 AM »

Does the index.php the right permissions to patch? Yoy can also use the pre patched Joomla! file

Please follow the user guide
http://www.joomlahacks.com/component/option,com_remository/Itemid,41/func,fileinfo/id,448/
Logged
ranKoto
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 7


View Profile
Re: JSMF 2.0.2 Released
« Reply #39 on: February 21, 2007, 11:47:34 AM »

Hi all I am running Joomla 1.0.12 and smf 1.1.2 with the newest joomla-smf bridge ( 2.0.2 ). Everything seemed good during installation, but after patching the index file of J! i couldn't access my main joomla page, what should i do? ( i used the joomla_index_patched_1_0_12.zip file )

thanks
Logged
Livebox
Guest
Re: JSMF 2.0.2 Released
« Reply #40 on: February 21, 2007, 11:59:01 AM »

Check in the backend if all files are patched.
Please read the User Guide this is covert in this Guide
Logged
ranKoto
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 7


View Profile
Re: JSMF 2.0.2 Released
« Reply #41 on: February 21, 2007, 08:38:02 PM »

Check in the backend if all files are patched.
Please read the User Guide this is covert in this Guide


all of them aare patched..btw i didnt had this problem when i used the 2.0 bridge  Huh
Logged
-Wolverine
Moderator
Joomla Guru
*****

Karma: +373/-34
Offline Offline

Posts: 3393


Lead Developer


View Profile WWW
Re: JSMF 2.0.2 Released
« Reply #42 on: February 21, 2007, 09:07:59 PM »

does that mean your main joomla page was a blank page?  If so, as Livebox said, check the JSMF user guide and the help topic for diagnosing those problems.
Logged

Need help?  Check Here First!
Get the JSMF User Guide
SEARCH this forum.
ranKoto
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 7


View Profile
Re: JSMF 2.0.2 Released
« Reply #43 on: February 21, 2007, 09:50:05 PM »

does that mean your main joomla page was a blank page?  If so, as Livebox said, check the JSMF user guide and the help topic for diagnosing those problems.

yes, it was blank, i read the user guide, i did all the instruction correctly

but i got the filling that the problem was my index joomla patch, i used the patch from version 2.0 as my 2.0.2 package didnt have it, but it still the joomla 1.0.12 patch right ?
« Last Edit: February 21, 2007, 09:53:37 PM by ranKoto » Logged
-Wolverine
Moderator
Joomla Guru
*****

Karma: +373/-34
Offline Offline

Posts: 3393


Lead Developer


View Profile WWW
Re: JSMF 2.0.2 Released
« Reply #44 on: February 21, 2007, 09:52:51 PM »

thats teh correct patch, what we were referring to is there is help available for blank pages and it tells you what to do.  Chances are you have misconfigured something if it worked in 2.0.
Logged

Need help?  Check Here First!
Get the JSMF User Guide
SEARCH this forum.
Pages: 1 2 [3] 4 5 ... 9 Go Up Print 
« previous next »
Jump to:  



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