| Author |
Message |
yamada
Beginner


Joined: Jan 23, 2005 Posts: 3
|
Posted: Sat Sep 08, 2007 3:59 pm Post subject: Absolutely not compatible with phpbb3 rc5 -do not use |
|
|
well cost me a lot of time and realy sucks...
if you use phpbb3 rc5 then the integration sucks and shouldnt be used.
In the beginning of the edits all goes ok )still few mismatches...
But when its time to edit includes/functions_user.php you will go on your ass cause when you search for if ($group_id) , then you will see that the code is complete different..
but there are also a few mistakes in the mod install txt.
And support doesnt look very active as well....guess this site is close to being dead. |
|
| Back to top |
|
|
AdBot
|
| Post subject: Absolutely not compatible with phpbb3 rc5 -do not use |
|
|
|
|
|
| Back to top |
|
 |
hazmat
Beginner


Joined: Aug 24, 2007 Posts: 11
|
Posted: Sun Sep 09, 2007 2:27 am Post subject: Re: Absolutely not compatible with phpbb3 rc5 -do not use |
|
|
| The integration stuff is behind in phpBB3 releases and we're waiting for it to be updated, but comments like this won't make them update stuff any faster. |
|
| Back to top |
|
|
yamada
Beginner


Joined: Jan 23, 2005 Posts: 3
|
Posted: Sun Sep 09, 2007 6:24 am Post subject: Re: Absolutely not compatible with phpbb3 rc5 -do not use |
|
|
| i know but atleast nobody else will make the same mistake.... |
|
| Back to top |
|
|
IngerK
Wizard


Joined: Jan 19, 2006 Posts: 120 Location: Oslo, Norway
|
Posted: Sun Sep 09, 2007 6:28 am Post subject: Re: Absolutely not compatible with phpbb3 rc5 -do not use |
|
|
The phpBB3 code in RC5 is a bit different from the beta (this mode was made for beta!), but if you have the code from phpBB3 beta to compare, you will find where to modify the code in RC5 as well.
I have not tried to use most of the code for styles/templates, but my phpBB3-RC5 testforum with G2 works. It does not look so nice in Gallery2, but what can you expect? phpBB3 isn't "gold" yet, and the mod code we use is not for RC5.
Keep up the good work with this mod, hope jettyrat will be back soon as well  |
|
| Back to top |
|
|
yamada
Beginner


Joined: Jan 23, 2005 Posts: 3
|
Posted: Sun Sep 09, 2007 6:43 am Post subject: Re: Absolutely not compatible with phpbb3 rc5 -do not use |
|
|
well thats not all...
also codes that had to be added were wrong ... |
|
| Back to top |
|
|
dari
Site Admin


Joined: Mar 03, 2003 Posts: 6287 Location: Washington Township, NJ, USA
|
Posted: Mon Sep 24, 2007 10:23 am Post subject: Re: Absolutely not compatible with phpbb3 rc5 -do not use |
|
|
i haven't been able to contact jettyrat, the dev who made the phpbb3 integration. see if you can get ahold of him his profile is here:
http://www.nukedgallery.net/forums-prof ... 27098.html |
|
| Back to top |
|
|
timnsal
Novice


Joined: Aug 08, 2007 Posts: 20
|
Posted: Tue Sep 25, 2007 10:47 am Post subject: Re: Absolutely not compatible with phpbb3 rc5 -do not use |
|
|
I have it working with RC5, apart from the user's posts in profiles. I wouldn't like to make any guarantees, as it hasn't had any real testing, but if you want the files I used, please let me know.
Sally |
|
| Back to top |
|
|
dari
Site Admin


Joined: Mar 03, 2003 Posts: 6287 Location: Washington Township, NJ, USA
|
Posted: Tue Sep 25, 2007 11:29 am Post subject: Re: Absolutely not compatible with phpbb3 rc5 -do not use |
|
|
| can you PM me? I'd like to include this for download here.... |
|
| Back to top |
|
|
youforceme2register
Beginner


Joined: Oct 05, 2007 Posts: 1
|
Posted: Fri Oct 05, 2007 4:57 am Post subject: Re: Absolutely not compatible with phpbb3 rc5 -do not use |
|
|
| update on this? |
|
| Back to top |
|
|
timnsal
Novice


Joined: Aug 08, 2007 Posts: 20
|
Posted: Sat Oct 06, 2007 4:19 am Post subject: Re: Absolutely not compatible with phpbb3 rc5 -do not use |
|
|
Looking at the phpBB site, it won't be long before the next version RC6 is out, and they are saying that it will have significant changes which might break a lot of mods. So the integration will probably need reworking again then
I did send the RC5 integration to Dari. Don't know if it got through or not. He seems to be very busy these days.
Sally |
|
| Back to top |
|
|
IngerK
Wizard


Joined: Jan 19, 2006 Posts: 120 Location: Oslo, Norway
|
Posted: Sat Oct 06, 2007 5:51 am Post subject: Re: Absolutely not compatible with phpbb3 rc5 -do not use |
|
|
I have tried this mod phpBB3/G2 with some adjustments, most mentioned here [nukedgallery.net]. I guess timnsal have included all of this. It works fine.
I use a modified phpBB2 with G2 and use rewrite. I will have to use rewrite with phpBB3/G2 as well, but this did not work. I had problems with header/footer from prosilver. I tried to find out how this was solved in phpBB2/G2, and I managed to get it to work.
Here are the changes I did to get rewrite to work properly (if you want to include this in a new version of the integration package):
Code: › #
#-----[ OPEN ]------------------------------------------
#
gallery2.php
#
#-----[ FIND ]------------------------------------------
#
$template->assign_vars(array(
'GALLERY2_BODY' => $bodyHtml,
'GALLERY2_CSS' => $css,
'GALLERY2_JAVASCRIPT' => $javascript)
);
#
#-----[ AFTER, ADD ]------------------------------------------
#
$template->assign_block_vars('switch_phpbb_base', array(
'PHPBB_BASE' => strtolower(substr($_SERVER['SERVER_PROTOCOL'], 0, strpos($_SERVER['SERVER_PROTOCOL'], '/'))) . '://' . $_SERVER['HTTP_HOST'] . substr($_SERVER['SCRIPT_NAME'], 0, strrpos($_SERVER['SCRIPT_NAME'], '/') + 1))
);
#
#-----[ OPEN ]------------------------------------------
#
styles/prosilver/template/overall_header.html
#
#-----[ FIND ]------------------------------------------
#
<title>{SITENAME} • <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE}</title>
#
#-----[ AFTER, ADD ]------------------------------------------
#
<!-- BEGIN switch_phpbb_base -->
<base href="{switch_phpbb_base.PHPBB_BASE}">
<!-- END switch_phpbb_base -->
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
|
|
| Back to top |
|
|
mrmikehammond
Novice


Joined: Jun 12, 2007 Posts: 21 Location: U.K.
|
Posted: Tue Oct 09, 2007 4:14 pm Post subject: Re: Absolutely not compatible with phpbb3 rc5 -do not use |
|
|
Any chance of a download with some instructions for us mortals guys and gals
Mike  |
|
| Back to top |
|
|
|
|
|
|
|