Your Portal Version: 1.0.4
Your phpBB Type: Standard phpBB3
MODs installed: Yes
Your knowledge: Beginner
Boardlink: http://www.border-forums.com
What have you done before the problem was there?
Nothing
What have you already tryed to solve the problem?
Nothing
Description and Message
Hi,
Having just updated my Portal, Gallery and installed the latest Gallery Block mod, I am not getting a message at the top of my gallery index page, in red, saying: Information: Gallery is not up to date
This has just suddenly appeared. Was ok just after all the updates
Also, when I click on an image, I cannot get the slideshow to launch. There doesn't seem to be an option for this in any of the configuration settings.
Regards
Foxy
Gallery - Gallery is not up to date!!!
Forum rules
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
-
- Site Admin
- Posts: 2989
- Joined: 7. January 2006 20:11
- phpBB.de User: Saint
- phpBB.com User: Saint_hh
- Location: Hamburg
- Contact:
Re: Gallery - Gallery is not up to date!!!
Best to ask at the mod authors site, as this seems to be an gallery issue: http://www.flying-bits.org/
~~~ They say the definition of madness is doing the same thing and expecting a different result ~~~
Kein Support per PN / No support via PM!
Kein Support per PN / No support via PM!
-
Topic author - Valued Contributor
- Posts: 60
- Joined: 8. January 2009 12:31
- phpBB.de User: Foxy
- phpBB.com User: fujcube
- Location: Scottish Borders
- Contact:
Re: Gallery - Gallery is not up to date!!!
Thanks Kevin.
Was a bit previous with my post. There is a fix for this bug over at flying-bits.org. Have just completed the fix on my site and it appears to be working ok.
The problem with the slideshow, Lytebox and Highslide JS is with the license. It is no longer included with the phpBB gallery mod. You have to download and install the files yourself. Again, Nick has made this easy for everyone and details can be found over at flying-bits.or
Regards
Foxy
Was a bit previous with my post. There is a fix for this bug over at flying-bits.org. Have just completed the fix on my site and it appears to be working ok.
The problem with the slideshow, Lytebox and Highslide JS is with the license. It is no longer included with the phpBB gallery mod. You have to download and install the files yourself. Again, Nick has made this easy for everyone and details can be found over at flying-bits.or
Regards
Foxy
Re: Gallery - Gallery is not up to date!!!
I also had this issue.
There seems to be a problem because board3portal and phpbb gallery is both using function version check file, but different code.
because both declared the same function mod_version_check(), and when the function is called, it either call the function to get gallery version or get board3portal version.
for example, the current release of board3 portal is 1.0.4 ,and the current release of phpbb gallery is 1.0.3
when the gallery asks for $return_version inside mod_version_check(), it gets the info from mod_version_check() that board3 portal has, and returns 1.0.4, and that is the reason why it gives gallery is not up to date.
since the function version check only updates once a day, you rarely see it unless you are using a testing board that nobody visits beside you for the whole day. unless you log all of phpBB errors.
my fix was to change every mod_version_check() for gallery to mod_version_check_gallery() and
change mod_version_check() for portal to mod_version_check_portal() it fixes the problem.
hope you guys can fix this in the next update to change mod_version_check() to mod_version_check_portal()
if you guys take a look at the top of the code for portal/includes/function_version_check, it says:
this version check is just implemented in board3 1.0.4, and my suggestion is to change the name of this function so that board3 will be more complatible with other mods.
I personally think this is the problem, but I am not a programmer, so let me know if I am wrong.
There seems to be a problem because board3portal and phpbb gallery is both using function version check file, but different code.
because both declared the same function mod_version_check(), and when the function is called, it either call the function to get gallery version or get board3portal version.
for example, the current release of board3 portal is 1.0.4 ,and the current release of phpbb gallery is 1.0.3
when the gallery asks for $return_version inside mod_version_check(), it gets the info from mod_version_check() that board3 portal has, and returns 1.0.4, and that is the reason why it gives gallery is not up to date.
since the function version check only updates once a day, you rarely see it unless you are using a testing board that nobody visits beside you for the whole day. unless you log all of phpBB errors.
my fix was to change every mod_version_check() for gallery to mod_version_check_gallery() and
change mod_version_check() for portal to mod_version_check_portal() it fixes the problem.
hope you guys can fix this in the next update to change mod_version_check() to mod_version_check_portal()
if you guys take a look at the top of the code for portal/includes/function_version_check, it says:
Code: Select all
/**
*
* @package phpBB Gallery
* @version $Id: functions_version_check.php 545 2009-09-13 13:04:14Z christian_n $
* @copyright (c) 2007 StarTrekGuide
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
I personally think this is the problem, but I am not a programmer, so let me know if I am wrong.