Complete jFusion / phpBB 3 / Community Builder Thread

Support specific to the phpBB 3 plugin.
Forum rules
Please post all the bugs you encounter on our issue tracker.

Re: Complete jFusion / phpBB 3 / Community Builder Thread

Postby vellatechie on Mon Jun 08, 2009 5:48 am

Man i cant wait for 1.2.0 release :mrgreen: :mrgreen: ... My main site will have use CB and i want the profile integrated with phpbb3.. Thanks a million for making such great plugin
User avatar
vellatechie
JFusion Newbie
JFusion Newbie
 
Posts: 1
Joined: Sat Jan 17, 2009 8:06 pm

Re: Complete jFusion / phpBB 3 / Community Builder Thread

Postby ssnobben on Mon Jun 15, 2009 8:43 am

Any updates when this release is estimated to be? are we talking about weeks..?

rgds
Success in the long run Its not about the code its about the people and community that's make it!
Its not what you say its what you do that matters!
User avatar
ssnobben
JFusion Advanced II
JFusion Advanced II
 
Posts: 196
Joined: Wed Jan 30, 2008 7:45 am

Re: Complete jFusion / phpBB 3 / Community Builder Thread

Postby Monclee on Tue Jun 16, 2009 3:50 pm

Firs of all, thanks for a great component as JFusion, I love it, i think it do a great job, i was a user of a famous bridge, but JFusion its a great step for joomla and phpBB to be more compatible than ever.

(Sorry about my english, :lol: ,)

I already read a lot of topics, But i have a lot of doubts about some points, maybe cause im newbie. I hope you can help me, the site is working fine¡¡, thats why i dont want to mess with the code, without taking a previews advice from de pros.

First: I Have Joomla 1.5, PhPBB 3. and CB component with JFusion 1.1.3

I think this topic solve my problem, as i just want the CB avatar and profile to be the main profile even in PHPBB3

Even if i just modify the AVATAR, i would love to do that. So the users can manage just one avatar.

MY PROBLEM FOR THIS TOPIC IS I USE SEPARETE DB, and I DONT KNOW HOW TO "MIX" THEM, OR PUT THEM INTO ONE.I dont want to destroy mi site jaja

there are also old users who put an avatar on PHPBB3, ¿can that be a problem or a conflict if i change to CB avatar?

Is there any other more detailed tutorial for achieving this?.. thanks and i suere i look like 3 days before posting, great forum by the way i solve a lot of doubts.

Thanks. Hope somebody can help me
User avatar
Monclee
JFusion Newbie
JFusion Newbie
 
Posts: 2
Joined: Tue Jun 16, 2009 3:37 pm

Re: Complete jFusion / phpBB 3 / Community Builder Thread

Postby cohenu on Sat Jul 04, 2009 12:17 pm

Hi ,

first of all thank u very much it's great component

every thing works except from the profile link I tried

$profile_url = "http://mydomain/index.php?option=com_comprofiler&Itemid=4&lang=en&task=userProfile&user=".$user_id.".php \" target=\"_parent\"";

but it's keep telling me the profile doesn't exist I think he takes .$user_id. and change it to the user id from the forum and not from cb how can I fix that
now I tried to change the user id from 56 to 66 and it's fine how can I make it take the cb user id ?

thanks a lot :D
User avatar
cohenu
JFusion Newbie II
JFusion Newbie II
 
Posts: 12
Joined: Sat Jun 20, 2009 5:09 pm

Re: Complete jFusion / phpBB 3 / Community Builder Thread

Postby safeburn on Sat Jul 18, 2009 9:57 pm

Hi

I need help about this error
Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /hsphere/local/home/urumaya/urumaya.us/forum/index.php on line 116 Parse error: syntax error, unexpected T_FOR, expecting ')' in /hsphere/local/home/urumaya/urumaya.us/forum/index.php on line 116

I tried to solve and i could not find why im getting this error, JFusion Plugin Configuration showing good configuration on phpbb3 and joomla_int

Please help
Thank you
User avatar
safeburn
JFusion Newbie
JFusion Newbie
 
Posts: 1
Joined: Sat Jul 18, 2009 2:40 pm

Re: Complete jFusion / phpBB 3 / Community Builder Thread

Postby aisvo on Thu Jul 23, 2009 6:25 am

safeburn wrote:Hi

I need help about this error
Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /hsphere/local/home/urumaya/urumaya.us/forum/index.php on line 116 Parse error: syntax error, unexpected T_FOR, expecting ')' in /hsphere/local/home/urumaya/urumaya.us/forum/index.php on line 116

I tried to solve and i could not find why im getting this error, JFusion Plugin Configuration showing good configuration on phpbb3 and joomla_int

Please help
Thank you


Maybe you forgot to 'escape' the code.
Did you edit your forum/index.php?
User avatar
aisvo
JFusion Newbie
JFusion Newbie
 
Posts: 1
Joined: Wed Jul 22, 2009 2:01 pm

Re: Complete jFusion / phpBB 3 / Community Builder Thread

Postby Pepper on Sat Aug 15, 2009 11:56 am

ssnobben wrote:Any updates when this release is estimated to be? are we talking about weeks..?

rgds


This would be very interesting indeed ;)
User avatar
Pepper
JFusion Newbie II
JFusion Newbie II
 
Posts: 15
Joined: Sat Jun 20, 2009 5:08 pm

Re: Complete jFusion / phpBB 3 / Community Builder Thread

Postby piegus on Mon Aug 17, 2009 8:18 am

I also wait for this wonderfull plugin
User avatar
piegus
Official Tester
Official Tester
 
Posts: 157
Joined: Fri Jun 13, 2008 9:26 pm
Location: Poland

Re: Complete jFusion / phpBB 3 / Community Builder Thread

Postby Will on Mon Aug 17, 2009 9:49 am

For those still interested in a hack that works fine without sh404SEF.

After having a look into the jfusion database tables I don't fully understand why a synchronisation is absolutely necessary, although it'd make life a few keystrokes easier.

Line 1116 in phpBB 3.0.5
Code: Select all
// Only show the link if not anonymous
   if ($mode != 'no_profile' && $user_id && $user_id != ANONYMOUS)
   {
      // Do not show the link if the user is already logged in but do not have u_viewprofile permissions (relevant for bots mostly).
      // For all others the link leads to a login page or the profile.
      if ($user->data['user_id'] != ANONYMOUS && !$auth->acl_get('u_viewprofile'))
      {
         $profile_url = '';
      }
      else
      {

   $result = mysql_query("SELECT * FROM jos_jfusion_users_plugin WHERE userid=".$user_id);
   $row = mysql_fetch_array($result);
      
         $profile_url = "index.php?option=com_comprofiler&task=userProfile&user=".$row['id']." \" target=\"_parent\"";

      }
   }


This compares the two IDs which are conveniently stored in the same table and retrieves the Joomla ID after sourcing the corresponding phpBB ID. A crude hack but easily removed come update season.
User avatar
Will
JFusion Newbie
JFusion Newbie
 
Posts: 1
Joined: Sun Aug 16, 2009 10:46 pm
Location: Aberdeen, Scotland

Re: Complete jFusion / phpBB 3 / Community Builder Thread

Postby Pepper on Sat Aug 22, 2009 1:07 am

Yes, but this is no question to the answer ;) .

Are there any news about the upcoming release and the integration of CB?
User avatar
Pepper
JFusion Newbie II
JFusion Newbie II
 
Posts: 15
Joined: Sat Jun 20, 2009 5:08 pm

PreviousNext

Return to phpBB 3

Who is online

Users browsing this forum: No registered users and 2 guests