| Author |
Message |
Mahonni
Beginner


Joined: Aug 24, 2007 Posts: 2
|
Posted: Sat Aug 25, 2007 7:35 pm Post subject: Is it possible to integrate with phpBB RC5? |
|
|
| Hi, I've been trying to do the integration with phpBB3 RC5 and there are things I don't know how to change, for example, in memberlist.php I can't find: Code: › $i = 0;
foreach ($id_cache as $user_id => $row)
so I don't know where do I have to add Code: › // Grab Gallery link permission
$sql = 'SELECT link FROM ' . GALLERY2_TABLE;
$row = $db->sql_fetchrow($db->sql_query_limit($sql, 1));
$gallery_link = $row['link'];
I also had problems when going to acp->general->board config - gallery2 settings, I get a page where there's nothing to change.
Do you know if it's possible to do the integration with what I have or should I wait for a newer version?
Thank you. |
|
| Back to top |
|
|
AdBot
|
| Post subject: Is it possible to integrate with phpBB RC5? |
|
|
|
|
|
| Back to top |
|
 |
twaldher
Beginner


Joined: Aug 29, 2007 Posts: 4
|
Posted: Fri Aug 31, 2007 9:20 am Post subject: Re: Is it possible to integrate with phpBB RC5? |
|
|
I would say, not right now.
I just attempted this last night, I got past your problem by finding that the foreach statement was changed to a while loop. I also wandered across a couple other minor changes in other files. But what stopped me dead cold was that subsilver no longer exists in phpbb3, and it's called subsilver2.
That in and of itself wasn't a major issue, but some of the code around membershiplists changed dramatically and I could no longer find what needed to be replaced. (referring to s_search_user section)
I'm not a programmer, I know enough to understand what code is doing, but not enough to understand it enough to make the last changes that were necessary.
So, I'm starting over and just going to phpbb2. If I don't get this going for my wife's MOPS organization, I'll get stringed up. I can deal with the upgrade later when things are stable. |
|
| Back to top |
|
|
Mahonni
Beginner


Joined: Aug 24, 2007 Posts: 2
|
Posted: Fri Aug 31, 2007 9:36 am Post subject: Re: Is it possible to integrate with phpBB RC5? |
|
|
I was pretty sure it wasn't as easy as it seemed at the start . Thank you, twaldher, for your answer. |
|
| Back to top |
|
|
hazmat
Beginner


Joined: Aug 24, 2007 Posts: 11
|
Posted: Fri Aug 31, 2007 9:54 am Post subject: Re: Is it possible to integrate with phpBB RC5? |
|
|
| The member script stuff is where I got hung up too. I did the best I could, so it sort of works now, but it's not pretty. I'm looking forward to a new release. Maybe they're waiting for the official 3.0 release? |
|
| Back to top |
|
|
mrmikehammond
Novice


Joined: Jun 12, 2007 Posts: 21 Location: U.K.
|
Posted: Sat Sep 01, 2007 2:55 pm Post subject: Re: Is it possible to integrate with phpBB RC5? |
|
|
No reason to be waiting now, Beta is finished with and RC means all major changes are completed and now it will only be bug fix's so the fundementals of the phpbb3 files won't change. Mods are starting to be released for it on phpbb.com and it is fully supported so it's about time the G2 guru's got on the case it's such a shame it's taking so long. I've even been looking at alternatives like coppermine but the webmaster over there has a seriously bad attitude so it put me right off it even thought the gallery looks OK.
Come on guru's do your thing like only you can, lets have a package released
Mike  |
|
| Back to top |
|
|
timnsal
Novice


Joined: Aug 08, 2007 Posts: 20
|
Posted: Tue Sep 04, 2007 9:21 am Post subject: Re: Is it possible to integrate with phpBB RC5? |
|
|
In memberlist.php, add the grab gallery link permission section before
Code: › $template->assign_vars(show_profile($member));
Sally |
|
| Back to top |
|
|
|
|
|
|
|