Home arrow Forum CB Plugins for SMF (v2.1)
  Welcome, Guest. Please login or register.
Did you miss your activation email?
December 05, 2008, 12:45:47 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)
| | | |-+  CB Plugins for SMF (v2.1)
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: 1 2 3 [4] 5 6 Go Down Print
Author Topic: CB Plugins for SMF (v2.1)  (Read 20980 times)
Mark
Joomla Newbie
*

Karma: +0/-4
Offline Offline

Posts: 13


View Profile
Re: CB Plugins for SMF (v2.1)
« Reply #45 on: November 24, 2006, 07:33:59 PM »

Sorry, I took a needed break from this for a couple of weeks, I got so frustrated I needed to get my mind off it for awhile.  I agree, I believe SMF is one of, if not the best free forum component available for Joomla.  And I would not mind paying or making a donation for a good product with good support.

Our last Mambo site was hacked and used to spoof pay pal accounts and I just finished installing Joomla from scratch a couple of weeks before the problems started happening.  And we just started to get our traffic to return to the site.  I never had so many problems with the old website running Joomlaboard, this time with SMF I had problems with synchronizing logins, photos, problems with user profiles, etc, etc.

As you said it could possibly be user error, although this is not a first time install for me, I've successfully setup and configured almost a dozen Mambo/Joomla websites, I am a computer consultant by trade, MCSE and Cisco certified and began my career programming in Applesoft Basic back in 1985.  Have programmed in Cobol, Pascal, RPG, Visual Basic, and so on, NOT to say I'm an expert, far from it, and I am certainly lacking in my PHP skills, my point is, I'm not an amateur or a noob.  Anyway, I wll try the suggestions you made and hopefullt with that and the mental break I took things can get back to working order.  Thanks Mike and Elite for your feedback and Wolverine, I know you do a good job here, I read the forums regularly, thanks for your help.

Regards,
Mark

Being unable to log into your admin backend has very little chance to be related to the JSMF bridge. If you cant uninstall CB normally, simply go to your FTP, remove the com_comprofiler both in the administrator/components and components folder, and remove any database table with "comprofiler" in it. You can also do that with JSMF, but make sure you reinstalled the same JSMF version, or know what you're doing with the files that JSMF modified and replace them with the original backups.

Also, make sure when you go to your site's admin backend, enter your site's url with the "www." prefix (if that's what you specify as your live site in your config, or vice versa).

If you still cant enter the backend, download the full installation copy of the joomla version you're using, unzip it into a folder, and overwrite the folder administrator/includes of your site with the one you downloaded, together with index.php and index2.php.

If all fails, then i guess the simplest way is to restart everything, but theelite is correct in pointing out that SMF is by far the best forum (it is almost as capable as vbulletin, and it's free), and that the bridge here at joomlahacks is the best bridge for joomla and smf. In 90% of the cases whereby things dont work, the software is rarely the problem. The user is Wink So being a tad bit polite when requesting help from an open community help, especially when the problem seems only to happen to you. That usually point to the user at fault.

Rgds, Mike
« Last Edit: November 24, 2006, 07:36:19 PM by Mark » Logged
asteroidjay
Joomla Newbie
*

Karma: +3/-1
Offline Offline

Posts: 47


View Profile
Re: CB Plugins for SMF (v2.1)
« Reply #46 on: November 25, 2006, 10:37:25 AM »

Is the Postition category on SMFinfo and SMFprofile supposed to show membergroups? Because it doesn't show up for anyone but the admin.
Logged

Joomla! 1.0.11
SMF 1.1 RC3
Database Version:  5.0.18-standard-log 
PHP Version:  4.4.2 
Web Server:  Apache/1.3.33 (Unix)
Cornickle
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 9


View Profile
Re: CB Plugins for SMF (v2.1)
« Reply #47 on: November 26, 2006, 09:25:42 AM »

Hello i installed the component and modules without problems for
joomla 1.0.11 + SMF 1.1 RC3 + CB 1.0 RC2
But i have 3 problems with the plugins.

1.
plugin_smfForumPosts - when u hide/show a post item content.(Double slashes)
Code:
http://xxx.com/bbs/Smileys//cry.gif

2.
plugin_smfProfile has also a broken avatar link -a quick fix inside
/components/com_comprofiler/plugin/user/plug_smfprofile/smf_profile.php on line 204
 
Code:
$thumb_path = JPATH_BASE . '/images/comprofiler/tn' . $file;
TO
Code:
$thumb_path = JPATH_BASE . '/images/comprofiler/' . $file;
ALSO
Code:
$av_url = $mosConfig_live_site . '/images/comprofiler/tn' . $member['avatar'];
TO
Code:
$av_url = $mosConfig_live_site . '/images/comprofiler/' . $member['avatar'];
3.
I can access the modify Forum profil form, but when i submit changes i get a
Quote
The page you are trying to access does not exist.
Any ideas?
Logged
p9939068
Joomla Expert
****

Karma: +18/-5
Offline Offline

Posts: 173


View Profile WWW
Re: CB Plugins for SMF (v2.1)
« Reply #48 on: November 26, 2006, 11:01:41 AM »

2.
plugin_smfProfile has also a broken avatar link -a quick fix inside
/components/com_comprofiler/plugin/user/plug_smfprofile/smf_profile.php on line 204
 
Code:
$thumb_path = JPATH_BASE . '/images/comprofiler/tn' . $file;
TO
Code:
$thumb_path = JPATH_BASE . '/images/comprofiler/' . $file;
ALSO
Code:
$av_url = $mosConfig_live_site . '/images/comprofiler/tn' . $member['avatar'];
TO
Code:
$av_url = $mosConfig_live_site . '/images/comprofiler/' . $member['avatar'];
the above original codes are actually correct. the "tn" you see is the thumbnail of the avatar. check your images folder if the thumbnails actually exist. they have the same filenames as their original-sized avatars, just with a "tn" in front.
Logged

-----
Owner of http://mike.simbunch.com
Creator of ParaInvite, AJAX Sandbox, AJAX SMF Polls, Profile URL etc..
Cornickle
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 9


View Profile
Re: CB Plugins for SMF (v2.1)
« Reply #49 on: November 26, 2006, 12:42:35 PM »

Thx, i changed it back ...
Logged
Cornickle
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 9


View Profile
Re: CB Plugins for SMF (v2.1)
« Reply #50 on: November 26, 2006, 01:31:00 PM »

3.
I can access the modify Forum profil form, but when i submit changes i get a
Code:
The page you are trying to access does not exist.

The link url in the address browser status bar shows something like this:
http://xxx.com/index.php?index.php?option=com_smf&Itemid=99&action=profile2

When i fix this to
http://xxx.com/index.php?option=com_smf&Itemid=99&action=profile2

i get:" This profil dioes not exist".
Logged
p9939068
Joomla Expert
****

Karma: +18/-5
Offline Offline

Posts: 173


View Profile WWW
Re: CB Plugins for SMF (v2.1)
« Reply #51 on: November 26, 2006, 02:07:35 PM »

open up your joomla's configuration.php and look for $mosConfig_live_site. it should contain a value similar to http://www.domain.com, with the www and without the index.php
Logged

-----
Owner of http://mike.simbunch.com
Creator of ParaInvite, AJAX Sandbox, AJAX SMF Polls, Profile URL etc..
Cornickle
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 9


View Profile
Re: CB Plugins for SMF (v2.1)
« Reply #52 on: November 26, 2006, 02:35:22 PM »

open up your joomla's configuration.php and look for $mosConfig_live_site. it should contain a value similar to http://www.domain.com, with the www and without the index.php
No it doesn't contain an index.php - the live_site setting.
Logged
-Wolverine
Moderator
Joomla Guru
*****

Karma: +376/-34
Offline Offline

Posts: 3393


Lead Developer


View Profile WWW
Re: CB Plugins for SMF (v2.1)
« Reply #53 on: November 26, 2006, 04:49:38 PM »

could be your SMF forum url, what is it set to?
Logged

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

Karma: +0/-0
Offline Offline

Posts: 9


View Profile
Re: CB Plugins for SMF (v2.1)
« Reply #54 on: November 26, 2006, 05:14:36 PM »

could be your SMF forum url, what is it set to?
Hello,
it's set correctly http://domain/forum

Also i thought u on this from reading this reply.
http://www.joomlahacks.com/component/option,com_smf/Itemid,94/topic,2554.msg12641#msg12641

And i checked the Bridge Guide from settings, beside the modify profile and account all other things seem to work.
Disabled htaccess didnt solved it either.


« Last Edit: November 26, 2006, 05:25:50 PM by Cornickle » Logged
-Wolverine
Moderator
Joomla Guru
*****

Karma: +376/-34
Offline Offline

Posts: 3393


Lead Developer


View Profile WWW
Re: CB Plugins for SMF (v2.1)
« Reply #55 on: November 26, 2006, 05:44:43 PM »

the urls are cached, so after you make a change make sure to click save in the JSMF config to purge the cache.
Logged

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

Karma: +0/-0
Offline Offline

Posts: 9


View Profile
Re: CB Plugins for SMF (v2.1)
« Reply #56 on: November 26, 2006, 05:58:04 PM »

Deleted cache and saved again checked with 3 diffrent browsers.
Still same error.
Logged
Cornickle
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 9


View Profile
Re: CB Plugins for SMF (v2.1)
« Reply #57 on: November 26, 2006, 08:38:27 PM »

Maybe this helps i found a working link.

current link(non working):
http://xxx.com/index.php?index.php?option=com_smf&Itemid=99&action=profile2

working link:
http://xxx.com/forum/index.php?action=profile;u=20;sa=forumProfile

A fast fix is:
Creating a menu wrapper item eg. Profile with: http://xxx.com/forum/index.php?action=profile

I add this on the bottom of smf_profile.html.php
Code:
  <b><a class="cb_plug_smfprofile" href="<?php echo $jsmf->fixLink('index.php?option=com_wrapper&Itemid=99;u='.$user->smf_id.';sa=forumProfile');?>" title="<?php echo $txt['profileEdit'];?>" target="_blank"><?php echo $txt['profileEdit'];?></a></b>&nbsp;::&nbsp;
                         
« Last Edit: November 26, 2006, 08:56:33 PM by Cornickle » Logged
peter mee
Joomla Newbie
*

Karma: +0/-1
Offline Offline

Posts: 27


View Profile
Re: CB Plugins for SMF (v2.1)
« Reply #58 on: December 04, 2006, 04:40:36 PM »

I have exactly the same issue as Cornickle.

Cornickle: where is smf_profile.html.php?
I'd like to try your fix.

Also, is it normal for Modify Profile and Account Related Settings from CB to open in a new window? Where could this behavious be changed??

Peter
Logged


Did you find this post helpful? If you saved time or money, you might like to make a small contribution.
GlingGlo
Joomla Pro
**

Karma: +1/-1
Offline Offline

Posts: 99


View Profile
Re: CB Plugins for SMF (v2.1)
« Reply #59 on: December 06, 2006, 06:59:34 PM »

hi people Smiley

i have:

SMF 1.1
CB 1.0.1
JSMF 2.0 RC3
Latest CB plugins
CBAuthorBot 1.0

i have the author bot that displays the username in "Written by johndoe" as a link to its profile. It has allways worked, but i just decided to use an Alias instead of the username.

When i click on that alias link(which should take me to the uprofile of the user that submitted the article) i get the error that you can see in the image i attach.

Any ideas?

Cheers,
NiCo

Logged
Pages: 1 2 3 [4] 5 6 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
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