 | |
04-25-08, 01:33 PM
|
#41 (permalink)
| | Hey baby, scan my QR code
Join Date: Oct 2006 Location: Tampa/Gainesville, FL
Posts: 1,447
| Wait a second here... the prototype for the function that is causing the fatal error is:
function createJoomlaUsername($jname, $userid, $username, $email, $password, $usertype, $gid, $params = NULL, $email_conflict = 1)
But the call passes:
AbstractForum::createJoomlaUsername($username, $instance->get('email'), $instance->get('password'), $usertype, $gid)  That ain't right at all. This seems like some really alpha software. Considering the appropriate fix now...
__________________ '96 LX450, 33" Revos, OME lifted, etc, etc 
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde Right-click image transloading made blindingly easy. Quote:
Originally Posted by fsusteve What are you talking about bro, I'm a long time gator fan....... | WFC: 0473-9763-9112 |
| |
04-25-08, 02:24 PM
|
#42 (permalink)
| | Hey baby, scan my QR code
Join Date: Oct 2006 Location: Tampa/Gainesville, FL
Posts: 1,447
| One more change.
Change the line that reads:
AbstractForum::createJoomlaUsername($username, $instance->get('email'), $instance->get('password'), $usertype, $gid);
To:
AbstractForum::createJoomlaUsername($jname, $userinfo->userid, $username, $instance->get('email'), $instance->get('password'), $usertype, $gid, NULL, '1');
__________________ '96 LX450, 33" Revos, OME lifted, etc, etc 
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde Right-click image transloading made blindingly easy. Quote:
Originally Posted by fsusteve What are you talking about bro, I'm a long time gator fan....... | WFC: 0473-9763-9112 |
| |
04-25-08, 02:34 PM
|
#43 (permalink)
| | Pat McGroyn
Join Date: Aug 2004 Location: Glendale, AZ
Posts: 716
| Quote:
Originally Posted by NaterGator One more change.
Change the line that reads:
AbstractForum::createJoomlaUsername($username, $instance->get('email'), $instance->get('password'), $usertype, $gid);
To:
AbstractForum::createJoomlaUsername($jname, $userinfo->userid, $username, $instance->get('email'), $instance->get('password'), $usertype, $gid, NULL, '1'); |
OK done. Now it says this: Code: - Performing the JFusion Authentication function for user:tester1
- JFusion is enabled
- using the forum database to check the users password
- the forum filtered username is: tester1
stdClass Object ( [userid] => 4 [username] => tester1 [name] => tester1 [email] => highskydesign@yahoo.com [password] => df0376200e266b0b012ed788323dd21c83630a3d [password_salt] => 49a1 [block] => 0 ) - the userinfo object contains the array:1
found the user in the forum database
- starting to loop through the different password encryption methods
- database password: df0376200e266b0b012ed788323dd21c83630a3d and smf password: df0376200e266b0b012ed788323dd21c83630a3d
- found a matching password
- Performing the JFusion User function
- JFusion integration enabled
- no entry found in the lookup table, checking in the Joomls user table directly
- the user does NOT exist in the Joomla database
- auto user mirroring is turned on, therefore we will create a new Joomla user
- nate's debug output. tracking code location: 1, 2, 3, 4, 5, 6, 7
Fatal error: Call to undefined function: get() in /home/content/p/a/g/pageweb77/html/joomla/administrator/components/com_jfusion/admin.login_checker.php on line 394
This is line 394: Code: AbstractForum::createJoomlaUsername($jname, $userinfo->userid, $username, $instance->get('email'), $instance->get('password'), $usertype, $gid, NULL, '1');
|
| |
04-25-08, 03:05 PM
|
#44 (permalink)
| | Hey baby, scan my QR code
Join Date: Oct 2006 Location: Tampa/Gainesville, FL
Posts: 1,447
| Haha, their variable naming is crap!
Do me a favor, right before that AbstractForum::create... line add the following two lines and rerun and give me the output 
print_r($user);
print_r($userinfo);
__________________ '96 LX450, 33" Revos, OME lifted, etc, etc 
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde Right-click image transloading made blindingly easy. Quote:
Originally Posted by fsusteve What are you talking about bro, I'm a long time gator fan....... | WFC: 0473-9763-9112 |
| |
04-25-08, 03:37 PM
|
#45 (permalink)
| | Pat McGroyn
Join Date: Aug 2004 Location: Glendale, AZ
Posts: 716
| Now it say this: Code: - nate's debug output. tracking code location: 1, 2, 3, 4, 5, 6, 7Array ( [username] => tester1 ) stdClass Object ( [userid] => 4 [username] => tester1 [name] => tester1 [email] => highskydesign@yahoo.com [password] => df0376200e266b0b012ed788323dd21c83630a3d [password_salt] => 49a1 [block] => 0 [password_clear] => tester1 )
Fatal error: Call to undefined function: get() in /home/content/p/a/g/pageweb77/html/joomla/administrator/components/com_jfusion/admin.login_checker.php on line 396
Line 396 is: Code: AbstractForum::createJoomlaUsername($jname, $userinfo->userid, $username, $instance->get('email'), $instance->get('password'), $usertype, $gid, NULL, '1');
echo ', ',$i++;
|
| |
04-25-08, 03:42 PM
|
#46 (permalink)
| | Hey baby, scan my QR code
Join Date: Oct 2006 Location: Tampa/Gainesville, FL
Posts: 1,447
| Ok, replace the same old line with the following:
AbstractForum::createJoomlaUsername($jname, $userinfo->userid, $username, $userinfo->email, $userinfo->password, $usertype, $gid);
And get rid of those two print_r() lines.
__________________ '96 LX450, 33" Revos, OME lifted, etc, etc 
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde Right-click image transloading made blindingly easy. Quote:
Originally Posted by fsusteve What are you talking about bro, I'm a long time gator fan....... | WFC: 0473-9763-9112 |
| |
04-25-08, 03:49 PM
|
#47 (permalink)
| | Pat McGroyn
Join Date: Aug 2004 Location: Glendale, AZ
Posts: 716
| Success???? Code: - Performing the JFusion User function
- JFusion integration enabled
- no entry found in the lookup table, checking in the Joomls user table directly
- the user does NOT exist in the Joomla database
- auto user mirroring is turned on, therefore we will create a new Joomla user
- nate's debug output. tracking code location: 1, 2, 3, 4, 5, 6, 7, 8, 9- the userid for the newly created Joomla user is: 64
-The Joomla usergroup for this user is: Registered
|
| |
04-25-08, 03:57 PM
|
#48 (permalink)
| | Pat McGroyn
Join Date: Aug 2004 Location: Glendale, AZ
Posts: 716
| Yes!!
I just created a new acct on the message boards, then used the user sync function on joomla, and it brought it over -- AWESOME!!
Thank you!! |
| |
04-25-08, 04:04 PM
|
#49 (permalink)
| | Hey baby, scan my QR code
Join Date: Oct 2006 Location: Tampa/Gainesville, FL
Posts: 1,447
|
All I see on the front page is the standard com_user login module. Did you enable and use the JFusion one? I think you're supposed to do that
__________________ '96 LX450, 33" Revos, OME lifted, etc, etc 
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde Right-click image transloading made blindingly easy. Quote:
Originally Posted by fsusteve What are you talking about bro, I'm a long time gator fan....... | WFC: 0473-9763-9112 |
| |
04-25-08, 04:08 PM
|
#50 (permalink)
| | Pat McGroyn
Join Date: Aug 2004 Location: Glendale, AZ
Posts: 716
| Quote:
Originally Posted by NaterGator
All I see on the front page is the standard com_user login module. Did you enable and use the JFusion one? I think you're supposed to do that  | uh, i thought i did... lemme go check. |
| |
04-25-08, 04:13 PM
|
#51 (permalink)
| | Pat McGroyn
Join Date: Aug 2004 Location: Glendale, AZ
Posts: 716
| In the plugins, I have jfusion authentication enabled, and Joomla authentication disabled.
ahh... but I had user-jfusion disabled and user-joomla enabled. I just switched them.
is that right? |
| |
04-25-08, 05:01 PM
|
#52 (permalink)
| | Club 4X4 Panamá
Join Date: Apr 2003 Location: Panamá
Posts: 12,134
| Quote:
Originally Posted by NaterGator Tapage, nice site
I'm sure bluehost is fine and if it works for you and you like them, I don't see any reason you should change. "If it ain't broke don't fix it"
Where are you seeing MySQL connection issues? Is it randomly happening when browsing the forum? | thanks Nator ..
I never have a issue browsing the forum ( tiny compared to anyother forum ) but I randomly have reports ( mails ) from the forum, with a mysql conectivity issues ..
__________________ HJ-60 2H-T Intercooled Tencha
HDJ-80 1HD-T not stock at all ! Marilu
FZJ-80 1FZ-FE ready to Play ( wife rig ! )
Cruisers on my mind, blood and soul ! Join us at our local Panamá Off Road Forum Quote:
Originally Posted by crushers if you are achieveing the max boost then it isn't the boost that is going to kill your engine... it is your right foot. | |
| |
04-25-08, 05:42 PM
|
#53 (permalink)
| | Hey baby, scan my QR code
Join Date: Oct 2006 Location: Tampa/Gainesville, FL
Posts: 1,447
| Quote:
Originally Posted by grrlscout89FJ62 In the plugins, I have jfusion authentication enabled, and Joomla authentication disabled.
ahh... but I had user-jfusion disabled and user-joomla enabled. I just switched them.
is that right? | Yes, now you need to go under Extensions->Module manager and disable "Login Form" and enable "JFusion Login Module"
__________________ '96 LX450, 33" Revos, OME lifted, etc, etc 
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde Right-click image transloading made blindingly easy. Quote:
Originally Posted by fsusteve What are you talking about bro, I'm a long time gator fan....... | WFC: 0473-9763-9112 |
| |
04-25-08, 05:51 PM
|
#54 (permalink)
| | Hey baby, scan my QR code
Join Date: Oct 2006 Location: Tampa/Gainesville, FL
Posts: 1,447
| Quote:
Originally Posted by Tapage thanks Nator ..
I never have a issue browsing the forum ( tiny compared to anyother forum ) but I randomly have reports ( mails ) from the forum, with a mysql conectivity issues .. |  What do those emails say specifically?
__________________ '96 LX450, 33" Revos, OME lifted, etc, etc 
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde Right-click image transloading made blindingly easy. Quote:
Originally Posted by fsusteve What are you talking about bro, I'm a long time gator fan....... | WFC: 0473-9763-9112 |
| |
04-25-08, 08:56 PM
|
#55 (permalink)
| | Pat McGroyn
Join Date: Aug 2004 Location: Glendale, AZ
Posts: 716
| Quote:
Originally Posted by NaterGator Yes, now you need to go under Extensions->Module manager and disable "Login Form" and enable "JFusion Login Module" | Hmmm... I disabled "Login Form" but I don't see "JFusion Login Module" |
| |
04-25-08, 09:03 PM
|
#56 (permalink)
| | Hey baby, scan my QR code
Join Date: Oct 2006 Location: Tampa/Gainesville, FL
Posts: 1,447
| Quote:
Originally Posted by grrlscout89FJ62 Hmmm... I disabled "Login Form" but I don't see "JFusion Login Module"  |  Did you in fact install it? Filter them with the word login and see if it comes up. If not you may want to upgrade each part of the jfusion modules/plugins to the newest versions since installing just the login module from the new version may be risky.
__________________ '96 LX450, 33" Revos, OME lifted, etc, etc 
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde Right-click image transloading made blindingly easy. Quote:
Originally Posted by fsusteve What are you talking about bro, I'm a long time gator fan....... | WFC: 0473-9763-9112 |
| |
04-25-08, 09:10 PM
|
#57 (permalink)
| | Pat McGroyn
Join Date: Aug 2004 Location: Glendale, AZ
Posts: 716
| hrmm... there was an error during the install
however, now I'm in the laptop that has no webdev software. So this task will have to wait until tomorrow, at the earliest. |
| |
04-25-08, 09:18 PM
|
#58 (permalink)
| | Hey baby, scan my QR code
Join Date: Oct 2006 Location: Tampa/Gainesville, FL
Posts: 1,447
| Yeah, from playing around with it jfusion is pretty damn picky (maybe flaky is the right word)
I've had it lock me out of my joomla admin panel about 4 times now and I have to go into the joomla database and fix everything manually
It would almost be safer to simply hard-code the PHP source into joomla and smf that would add the user to the other upon registration. JFusion is adding this extra layer on top of joomla and totally messes with it's whole login system (despite claming no core modifications). 1.0.6c is also littered with programming mistakes I've had to correct on my local install before it would even work. When they say it's alpha they really mean it's alpha. It by no means deserves a 1.x version number that they gave it. A 0.2.x version number would be generous given the state of the code IMO.
__________________ '96 LX450, 33" Revos, OME lifted, etc, etc 
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde Right-click image transloading made blindingly easy. Quote:
Originally Posted by fsusteve What are you talking about bro, I'm a long time gator fan....... | WFC: 0473-9763-9112 |
| |
04-25-08, 09:56 PM
|
#59 (permalink)
| | Site Addict
Join Date: Sep 2005 Location: Los Gatos, California
Posts: 1,454
| Quote:
Originally Posted by NaterGator Haha, depends on the nature of the problem. What is it?  |
Actually my website problems are easy..............how should I create a cool website to put my photography on?
I suck |
| |
04-25-08, 10:21 PM
|
#60 (permalink)
| | Hey baby, scan my QR code
Join Date: Oct 2006 Location: Tampa/Gainesville, FL
Posts: 1,447
| Quote:
Originally Posted by nat
Actually my website problems are easy..............how should I create a cool website to put my photography on?
I suck  | Honestly the best bet for total newbies to get their feet wet is to use templates and open source content managers.
Here is a quick example of one I just google up real quick: Open Web Design - View Design
These are typically easy to drop onto your site and plug your content into. They look good out of the box, and many are fairly easy to customize. Once you start using them you'll get a feel for how everything works and eventually you'll be ready to at least partially DIY.
__________________ '96 LX450, 33" Revos, OME lifted, etc, etc 
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde Right-click image transloading made blindingly easy. Quote:
Originally Posted by fsusteve What are you talking about bro, I'm a long time gator fan....... | WFC: 0473-9763-9112 |
| |  | |
| Thread Tools | | | | Display Modes | Linear Mode |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | |