Home | Support Forums | Your Account | Gallery [2] | Downloads | News | Site Map ]
Nuked Gallery
  Create a FREE account or Login   As a guest, you don't have access to our FULL navigation system.
 Forum FAQForum FAQ   StatisticsStatistics   SearchSearch   UsergroupsUsergroups   FavoritesFavorites  

phpBB3 Integration Bugs

 
Post new topic   Reply to topic    NukedGallery.net Forum Index » phpBB Issues » Olympus (phpBB3) / Gallery 2 Integration View previous topicPrinter friendly versionView next topic
Author Message
dari

Site Admin
Site Admin


Joined: Mar 03, 2003
Posts: 6199
Location: Washington Township, NJ, USA

PostPosted: Wed Jun 28, 2006 12:45 pm    Post subject: phpBB3 Integration Bugs Reply with quote

Post all your bug reports here.
_________________
Back to top
Offline View user's profile Send private message Visit poster's website
AdBot
   Post subject: phpBB3 Integration Bugs  

Back to top
jettyrat

Moderator
Moderator


Joined: Nov 28, 2005
Posts: 900

PostPosted: Sun Jul 02, 2006 4:01 pm    Post subject: Re: phpBB3 Integration Bugs Reply with quote

Here's a few bugs I've come across and fixes...

Open g2helper.inc

Find:
Code: ›       $phpbbDefaultGroups = array('"GUESTS"', '"INACTIVE"', '"INACTIVE_COPPA"', '"REGISTERED"', '"REGISTERED_COPPA"', '"SUPER_MODERATORS"', '"ADMINISTRATORS"', '"BOTS"');


Replace with:
Code: ›       $phpbbDefaultGroups = array('"GUESTS"', '"INACTIVE"', '"INACTIVE_COPPA"', '"REGISTERED"', '"REGISTERED_COPPA"', '"GLOBAL_MODERATORS"', '"ADMINISTRATORS"', '"BOTS"');


Find:
Code: ›       elseif (isset($ret) && $ret->getErrorCode() & ERROR_MISSING_OBJECT) {
         /*
         * Group already exists in gallery, so do nothing!


Replace with:
Code: ›       elseif (isset($ret)) {
         /*
         * Group already exists in gallery, so do nothing!


Open includes/acp/acp_gallery2.php

Find: (this removes the commented section and fixes an issue with double $ at versionData[0]
Code: › /*            if ($fp = @fopen($this->_integrationVersionUrl, 'r')) {
               $versionData = fread($fp, 4096);

               fclose($fp);

               $versionData = explode("\n", $versionData);

               $integrationVersion = explode('.', $this->_integrationVersion);

               if ($$versionData[0] == $integrationVersion[0] && $versionData[1] == $integrationVersion[1] && $versionData[2] == $integrationVersion[2]) {   
                  $versionText = $user->lang['GALLERY2_TO_DATE'];
               }
               else {
                  $versionText = sprintf($user->lang['GALLERY2_NOT_TO_DATE'], "$versionData[0].$versionData[1].$versionData[2]") . sprintf($user->lang['GALLERY2_VIEW_CHANGES'], $this->_integrationChangeLog, $this->_integrationDownload);
               }
            }
            else {
               $versionText = sprintf($user->lang['GALLERY2_URL_FAILED'], $this->_integrationVersionUrl);
            }
*/


Replace with:
Code: ›             if ($fp = @fopen($this->_integrationVersionUrl, 'r')) {
               $versionData = fread($fp, 4096);

               fclose($fp);

               $versionData = explode("\n", $versionData);

               $integrationVersion = explode('.', $this->_integrationVersion);

               if ($versionData[0] == $integrationVersion[0] && $versionData[1] == $integrationVersion[1] && $versionData[2] == $integrationVersion[2]) {   
                  $versionText = $user->lang['GALLERY2_TO_DATE'];
               }
               else {
                  $versionText = sprintf($user->lang['GALLERY2_NOT_TO_DATE'], "$versionData[0].$versionData[1].$versionData[2]") . sprintf($user->lang['GALLERY2_VIEW_CHANGES'], $this->_integrationChangeLog, $this->_integrationDownload);
               }
            }
            else {
               $versionText = sprintf($user->lang['GALLERY2_URL_FAILED'], $this->_integrationVersionUrl);
            }
Back to top
Offline View user's profile Send private message
Kudlaty

Beginner
Beginner


Joined: Mar 26, 2007
Posts: 3

PostPosted: Tue Mar 27, 2007 2:28 pm    Post subject: Re: phpBB3 Integration Bugs Reply with quote

Hi!

I use PhpBB3 Beta5. Only with the intergrated version I get to big letters, standalone works fine.

so what i must to do to correct this??
Back to top
Offline View user's profile Send private message Visit poster's website
jettyrat

Moderator
Moderator


Joined: Nov 28, 2005
Posts: 900

PostPosted: Sat Mar 31, 2007 12:05 am    Post subject: Re: phpBB3 Integration Bugs Reply with quote

I just installed a fresh copy of gallery 2.2.1 and phpbb3.0b5, then went through the integration. There were a few changes to the php code, but nothing to do with page rendering and I don't see this problem.

Have you changed something in the phpbb3 layout? Try leaving out the changes in the integration to the gallery theme.css. ie, instead of changing the font-size to 100%, leave it at 62.5%.
Back to top
Offline View user's profile Send private message
Kudlaty

Beginner
Beginner


Joined: Mar 26, 2007
Posts: 3

PostPosted: Sat Mar 31, 2007 1:55 am    Post subject: Re: phpBB3 Integration Bugs Reply with quote

I eliminate this when i change all of em to px.
But something still is bad...

www.kudlaty.frihost.net/check/board/

This is a polish forum...
Back to top
Offline View user's profile Send private message Visit poster's website
andrepl

Beginner
Beginner


Joined: May 11, 2007
Posts: 2

PostPosted: Fri May 11, 2007 12:51 pm    Post subject: Re: phpBB3 Integration Bugs Reply with quote

I installed the mod today and everything seems to have installed correctly, but when i got to 'synchronize users' i just get a blank white page. if I try to visit the gallery it tells me that the admin id isn't valid and i should run the synchronization at least once before proceeding, but again, the synchronization only gives me a blank white page.
Back to top
Offline View user's profile Send private message
chriushikas

Beginner
Beginner


Joined: Jun 17, 2007
Posts: 1

PostPosted: Mon Jun 18, 2007 2:24 am    Post subject: Re: phpBB3 Integration Bugs Reply with quote

Hello,
Just installed fresh phpBB3 and Gallery 2 but i get a strange error when i try to go to forum administration -> General -> gallery2 settings...
All i see is { Integration title } but nothing more... so basically i cant set up...

Maybe any help possible on this one?
Back to top
Offline View user's profile Send private message
hazmat

Beginner
Beginner


Joined: Aug 24, 2007
Posts: 10

PostPosted: Tue Aug 28, 2007 11:44 am    Post subject: Re: phpBB3 Integration Bugs Reply with quote

phpBB3 RC4 / Gallery 2.2.2

I'll reserve most comments since I realize that the integration package hasn't been updated for the most recent versions of phpBB3. The one thing is that the link to the forum links to the root of the web site.
Back to top
Offline View user's profile Send private message
mckooter

Beginner
Beginner


Joined: Jul 30, 2004
Posts: 3

PostPosted: Wed Nov 21, 2007 8:21 pm    Post subject: Re: phpBB3 Integration Bugs Reply with quote

tiny one but noticed it during my convert:

prosilver_mods.txt
Lines: 115-118
Code: ›
#
#-----[ OPEN ]------------------------------------------
#
styles/subSilver/template/memberlist_view.html


should say:
Code: ›
#
#-----[ OPEN ]------------------------------------------
#
styles/prosilver/template/memberlist_view.html



tiny one, but figured id point it out

thx
McK
Back to top
Offline View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    NukedGallery.net Forum Index » phpBB Issues » Olympus (phpBB3) / Gallery 2 Integration View previous topicPrinter friendly versionView next topic

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT - 5 Hours

Powered by phpBB © phpBB Group



Sponsors: Web HostingDomain NamesDedicated ServersDedicated Web HostingDomain Name RegistrationWeb hosting AustraliaSEO Web DesignWeb Design New YorkSearch Engine OptimizationSearch Engine Optimisation

6th year online! 2003-2008
Legal • Use of this site consitutes agreement to the Acceptable Use Policy
Hosted by Implosion WorksSourceForge.net Logo • Theme by TonicMedia