Thanks a bunch! Sure appreciate smaller updates and bug fixes.
A third party theme seems to have gone bonkers, though. Clean Canvas is stacking images on top of each other.
greebo
Joined: 2005-05-30
Posts: 5
Posted: Wed, 2012-04-11 17:02
I'm seeing the same stacking issue with the widewind theme. Have had to switch back to the default wind theme temporarily.
Other than that, thank you- very nice to see a new release
<? if (($thumb_proportion = $theme->thumb_proportion($theme->item())) != 1): ?>
This does also work for the Carrot Theme (Thumbs are not stacked anymore)
But there are still problems with this theme, which did not occur in 3.0.2. The gray boxes acting as a background for the thumbs are not fitting, also the album titles are not aligned.
I run 3 Gallery 3.0.2 sites...upgraded a test/development Gallery 3.0.2 to 3.0.3 and Every theme except Gallery Wind is stacking and simply put...broken. I have tested Grey Dragon and most others available and all seem to be somewhat strange. Most work under 3.0.2. I really need Grey Dragon W to work for 3 production installs!! So I am testing further and looking for a fix....I am holding off on upgrade.
rockedge
Joined: 2012-04-13
Posts: 4
Posted: Fri, 2012-04-13 21:32
inposure wrote:
Quick fix for Clean Canvas:
views/page.html.php line 26:
<? if ($thumb_proportion != 1): ?>
should read:
<? if (($thumb_proportion = $theme->thumb_proportion($theme->item())) != 1): ?>
I fixed the problem it seems using the code change listed above...whew and the upgraded version is running. I will upgrade the other installs from 3.0.2 to 3.0.3 now with confidence.
Topmagic
Joined: 2012-04-14
Posts: 1
Posted: Sat, 2012-04-14 12:48
I have upgrad from 3.0.2 to 3.0.3 an now all pictures overlapped in gallery, repair gallery bring no effect what can i do now? I have the same problem as samahita
It is correct:
<? if (($thumb_proportion = $theme->thumb_proportion($theme->item())) != 1): ?>
Now the view is okay.
Thanks a lot to rockedge.
somewhere2go
Joined: 2010-05-15
Posts: 8
Posted: Sat, 2012-04-14 14:12
The same here with Wind theme but the problem is not solve!
<? if (($thumb_proportion = $theme->thumb_proportion($theme->item())) != 1): ?> in line 27 of ../views/page.html.php does not work.
floridave
Joined: 2003-12-22
Posts: 25955
Posted: Sat, 2012-04-14 17:39
Quote:
The same here with Wind theme but the problem is not solve!
Then use the wind theme that came with G3.0.3!
you should not be modifying a core theme you should be creating a copy of the theme and modifying that copy.
I have just upgraded to v3.0.3 and I have found 2 problems. I'll try to explain:
1. When you are in tag dynamic album (when you click on tag link) and then you click on some photo that is not in active dynamic album (like random photo on sidebar), that photo somehow inserts itself in active dynamic album and Previous/Next buttons start behaving weird.
2. In search dynamic album when you click on some photo that is not part of the search results (like random photo on sidebar) gallery throws error 500
This is probably linked to tickets 1420 and 1760.
somewhere2go
Joined: 2010-05-15
Posts: 8
Posted: Sun, 2012-04-15 10:16
Quote:
Then use the wind theme that came with G3.0.3!
you should not be modifying a core theme you should be creating a copy of the theme and modifying that copy.
I use the wind theme that came with G3.0.3 (unchanged) but now all pictures overlapped in gallery!
snowcrash
Joined: 2012-04-15
Posts: 2
Posted: Sun, 2012-04-15 15:47
I just updated from 3.0.2 to 3.0.3 and now the complete admin area shows:
Kohana_Exception [ Framework Error ]: The requested views, admin.html, could not be found
I'm not using special theme for this.
Does anyone has a glue how to fix this?
Thanks,
Snowcrash
floridave
Joined: 2003-12-22
Posts: 25955
Posted: Sun, 2012-04-15 19:08
Quote:
I use the wind theme that came with G3.0.3 (unchanged) but now all pictures overlapped in gallery!
Then There is some other module or customization that is making this occur.
After upgrading, I now get the following error while trying to upload pictures: "Unable to process this photo". Thoughts anyone?
UPDATE
I needed to re-install the Square Thumbnails module. All is good now.
snackmaster
Joined: 2005-11-20
Posts: 135
Posted: Mon, 2012-04-16 01:59
Upgraded from 3.0.2 to 3.0.3 with Customized Theme (Wind based). I ran a WinMerge diff and it found 53 changed files: http://www.gfisk.com/images/g303v302.html
For my situation: screen.css and page.html.php are all I customize and only the latter was affected.
As Rockedge noted above:
Page.html.php (in my custom theme folder)
Change line 27 v302: <? if ($thumb_proportion != 1): ?>
To this from v303: <? if (($thumb_proportion = $theme->thumb_proportion($theme->item())) != 1): ?>
Presto! Everything is working perfectly. Thanks gTeam.
aster37
Joined: 2011-04-15
Posts: 4
Posted: Mon, 2012-04-16 06:08
Hello,
Is Gallery3 compatible with PHP 5.4 ?
For me Gallery3 don't work and I connot upgrade to 3.0.3
In consequence after the last Wheezy upgrade, I dowgraded PHP 5.4 to 5.3.8-1 +b1
JP
Gallery 3.02
Système d'exploitation : Linux 3.2.0-2-686-pae (Wheezy)
Apache: Apache/2.2.22 (Debian)
PHP: 5.3.8-1 +b1
MySQL: 5.1.61-2
inposure
Joined: 2010-04-23
Posts: 304
Posted: Mon, 2012-04-16 06:37
Edit system/core/Kohana.php and comment out the ob_end_clean() call on line 530. Then Gallery 3 works fine (and faster) with PHP 5.4.
What we would need now is a major update to Gallery 3.1, including Kohana 3.2, jQuery 1.7.2 and HTML 5 compliance, otherwise this app is soon gonna be obsolete.
aster37 wrote:
Is Gallery3 compatible with PHP 5.4 ?
somewhere2go
Joined: 2010-05-15
Posts: 8
Posted: Mon, 2012-04-16 09:20
Quote:
Then There is some other module or customization that is making this occur.
Sorry, I do a fresh install and the problem is the same, all pictures overlapped in a album!
snackmaster
Joined: 2005-11-20
Posts: 135
Posted: Mon, 2012-04-16 15:33
somewhere2go wrote:
Quote:
Then There is some other module or customization that is making this occur.
Sorry, I do a fresh install and the problem is the same, all pictures overlapped in a album!
Sounds like the Page.html.php issue described above. See line 27 Page.html.php in the new Wind Theme, and or update your other theme(s) to see if they have been updated.
Serge D
Joined: 2009-06-11
Posts: 2436
Posted: Mon, 2012-04-16 17:57
GDW beta was posted in associated forum thread before official release. give it a try
Hello,
I tried to upgrade Gallery 3.02 to Gallery 3.03 and nothing change !
Neverless I follow intructions (very simples)
I don't understand I am still now in 3.02.
Thanks for help
Aster 37
Gallery 3.02
Système d'exploitation : Linux 3.2.0-2-686-pae (Wheezy)
Apache: Apache/2.2.22 (Debian)
PHP: 5.3.8-1 +b1
MySQL: 5.1.61-2
wellensittich
Joined: 2011-07-14
Posts: 8
Posted: Thu, 2012-05-03 19:43
Is there no easy way to upgrade from 3.0.2 to 3.0.3 ??
Maybee just overwrite the old files with the new one, just like other CMS Webprogramms ?
or a One Click Upgrade like Joomla or Wordpress?
============
OK Update done... all work fine
jnash
Joined: 2004-08-02
Posts: 606
Posted: Fri, 2012-05-04 14:49
See here for the 'users' version of upgrading your G3 to the latest version:
Posts: 304
Thanks a bunch! Sure appreciate smaller updates and bug fixes.
A third party theme seems to have gone bonkers, though. Clean Canvas is stacking images on top of each other.
Posts: 5
I'm seeing the same stacking issue with the widewind theme. Have had to switch back to the default wind theme temporarily.
Other than that, thank you- very nice to see a new release
Posts: 606
what build number is this?
Posts: 5
Gallery is 3.0.3 , release version fresh from today's zip file. Widewind doesn't seem to have a version, but is the zip file linked from this page: http://codex.gallery2.org/Gallery3:Themes:widewind
Posts: 25955
I will fix the wide_wind theme later tonight.
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 5
Awesome, thank you.
Posts: 304
Quick fix for Clean Canvas:
views/page.html.php line 26:
<? if ($thumb_proportion != 1): ?>should read:
<? if (($thumb_proportion = $theme->thumb_proportion($theme->item())) != 1): ?>Posts: 45
Thank you, I recently installed the 3.0.2 version, these days I will install the new version
Posts: 5
Thanks - the same change seems to work for Widewind's page.html.php line 27.
Posts: 25955
http://codex.gallery2.org/images/2/2e/Widewind.zip
I've updated the codex as well.
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 16
This does also work for the Carrot Theme (Thumbs are not stacked anymore)
But there are still problems with this theme, which did not occur in 3.0.2. The gray boxes acting as a background for the thumbs are not fitting, also the album titles are not aligned.
Posts: 2
I upgraded to 3.0.3 via Softaculous script.
Now my album looks pretty weird:
http://what-buddha-said.net/gallery/
How can I fix this?
Posts: 25955
Custom theme?
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 4
I run 3 Gallery 3.0.2 sites...upgraded a test/development Gallery 3.0.2 to 3.0.3 and Every theme except Gallery Wind is stacking and simply put...broken. I have tested Grey Dragon and most others available and all seem to be somewhat strange. Most work under 3.0.2. I really need Grey Dragon W to work for 3 production installs!! So I am testing further and looking for a fix....I am holding off on upgrade.
Posts: 4
inposure wrote:
Quick fix for Clean Canvas:
views/page.html.php line 26:
<? if ($thumb_proportion != 1): ?>
should read:
<? if (($thumb_proportion = $theme->thumb_proportion($theme->item())) != 1): ?>
I fixed the problem it seems using the code change listed above...whew and the upgraded version is running. I will upgrade the other installs from 3.0.2 to 3.0.3 now with confidence.
Posts: 1
I have upgrad from 3.0.2 to 3.0.3 an now all pictures overlapped in gallery, repair gallery bring no effect what can i do now? I have the same problem as samahita
It is correct:
<? if (($thumb_proportion = $theme->thumb_proportion($theme->item())) != 1): ?>
Now the view is okay.
Thanks a lot to rockedge.
Posts: 8
The same here with Wind theme but the problem is not solve!
<? if (($thumb_proportion = $theme->thumb_proportion($theme->item())) != 1): ?> in line 27 of ../views/page.html.php does not work.
Posts: 25955
Then use the wind theme that came with G3.0.3!
you should not be modifying a core theme you should be creating a copy of the theme and modifying that copy.
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 1
I have just upgraded to v3.0.3 and I have found 2 problems. I'll try to explain:
1. When you are in tag dynamic album (when you click on tag link) and then you click on some photo that is not in active dynamic album (like random photo on sidebar), that photo somehow inserts itself in active dynamic album and Previous/Next buttons start behaving weird.
2. In search dynamic album when you click on some photo that is not part of the search results (like random photo on sidebar) gallery throws error 500
This is probably linked to tickets 1420 and 1760.
Posts: 8
I use the wind theme that came with G3.0.3 (unchanged) but now all pictures overlapped in gallery!
Posts: 2
I just updated from 3.0.2 to 3.0.3 and now the complete admin area shows:
Kohana_Exception [ Framework Error ]: The requested views, admin.html, could not be found
I'm not using special theme for this.
Does anyone has a glue how to fix this?
Thanks,
Snowcrash
Posts: 25955
Then There is some other module or customization that is making this occur.
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 25955
snowcrash,
I suspect that you have one of these hosts:
http://codex.gallery2.org/Gallery3:Host_specific_issues
and or you altered the .htaccess file to get 3.0.2 working in the first place and over wrote it with 3.0.3
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 27
After upgrading, I now get the following error while trying to upload pictures: "Unable to process this photo". Thoughts anyone?
UPDATE
I needed to re-install the Square Thumbnails module. All is good now.
Posts: 135
Upgraded from 3.0.2 to 3.0.3 with Customized Theme (Wind based). I ran a WinMerge diff and it found 53 changed files: http://www.gfisk.com/images/g303v302.html
For my situation: screen.css and page.html.php are all I customize and only the latter was affected.
As Rockedge noted above:
Page.html.php (in my custom theme folder)
Change line 27 v302: <? if ($thumb_proportion != 1): ?>
To this from v303: <? if (($thumb_proportion = $theme->thumb_proportion($theme->item())) != 1): ?>
Presto! Everything is working perfectly. Thanks gTeam.
Posts: 4
Hello,
Is Gallery3 compatible with PHP 5.4 ?
For me Gallery3 don't work and I connot upgrade to 3.0.3
In consequence after the last Wheezy upgrade, I dowgraded PHP 5.4 to 5.3.8-1 +b1
JP
Gallery 3.02
Système d'exploitation : Linux 3.2.0-2-686-pae (Wheezy)
Apache: Apache/2.2.22 (Debian)
PHP: 5.3.8-1 +b1
MySQL: 5.1.61-2
Posts: 304
Edit system/core/Kohana.php and comment out the ob_end_clean() call on line 530. Then Gallery 3 works fine (and faster) with PHP 5.4.
What we would need now is a major update to Gallery 3.1, including Kohana 3.2, jQuery 1.7.2 and HTML 5 compliance, otherwise this app is soon gonna be obsolete.
Posts: 8
Sorry, I do a fresh install and the problem is the same, all pictures overlapped in a album!
Posts: 135
Sounds like the Page.html.php issue described above. See line 27 Page.html.php in the new Wind Theme, and or update your other theme(s) to see if they have been updated.
Posts: 2436
GDW beta was posted in associated forum thread before official release. give it a try
Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter
Posts: 2
Hi Dave,
thanks for the hint, yes I use 1und1 and the .htaccess modification fixed the issue.
Snowcrash
Posts: 25955
please start a new thread with a link to your site.
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 34
Sorry, any idea what could happen here? http://gallery.menalto.com/node/106087
Posts: 4
Hello,
I tried to upgrade Gallery 3.02 to Gallery 3.03 and nothing change !
Neverless I follow intructions (very simples)
I don't understand I am still now in 3.02.
Thanks for help
Aster 37
Gallery 3.02
Système d'exploitation : Linux 3.2.0-2-686-pae (Wheezy)
Apache: Apache/2.2.22 (Debian)
PHP: 5.3.8-1 +b1
MySQL: 5.1.61-2
Posts: 8
Is there no easy way to upgrade from 3.0.2 to 3.0.3 ??
Maybee just overwrite the old files with the new one, just like other CMS Webprogramms ?
or a One Click Upgrade like Joomla or Wordpress?
============
OK Update done... all work fine
Posts: 606
See here for the 'users' version of upgrading your G3 to the latest version:
http://codex.gallery2.org/Gallery3:User_guide:Gallery3:Installing_and_upgrading#Upgrading