(french version below) Hi all, I've just released the first release candidate of Galette 1.1.0 :) See https://galette.eu/site/post/2024/05/08/galette-1-1-0rc1.html Salut, Je viens juste de sortir la première release candidate pour Galette 1.1.0 :) Voir https://galette.eu/site/fr/post/2024/05/08/galette-1-1-0rc1.html ++ -- Johan
On Wed, 2024-05-08 at 20:59 +0200, Johan Cwiklinski wrote:
(french version below)
Hi all,
I've just released the first release candidate of Galette 1.1.0 :)
See https://galette.eu/site/post/2024/05/08/galette-1-1-0rc1.html
Salut,
Je viens juste de sortir la première release candidate pour Galette 1.1.0 :)
Voir https://galette.eu/site/fr/post/2024/05/08/galette-1-1-0rc1.html
++ -- Johan _______________________________________________ Galette-users mailing list -- galette-users@mailman3.com To unsubscribe send an email to galette-users-leave@mailman3.com
Hello Tried it out of curiosity. Installation went smoothtly. I happen to try the 'Core fields' pressing save without any changes ( though I did try to make changes with same result) got me this. " Undefined array key "titre_adh_width_in_forms" .../GaletteController.php Line: 533 " My setup on a virtual machine: Apache2 Mariadb 10.6.16 PHP 8.1.2 It may not be a big deal since most hosting provider doesn't upgrade to the latest and greatest version right away. My use case is just for testing and will be offline whenever it get finished.
Hello, Le 09/05/2024 à 10:35, Mhel Marcelo a écrit :
I happen to try the 'Core fields' pressing save without any changes ( though I did try to make changes with same result) got me this.
" Undefined array key "titre_adh_width_in_forms"
.../GaletteController.php
Line: 533 "
Thanks for the feedback :) I cannot reproduce on my local instance, but I can on demo. Problem is the new "Width in forms" column is missing on demo. I first think it was a cache issue, but it's not. I'm looking for a fix, I'll keep you in touch. ++ -- Johan
Hello again, Le 09/05/2024 à 10:59, Johan Cwiklinski a écrit :
I cannot reproduce on my local instance, but I can on demo. Problem is the new "Width in forms" column is missing on demo.
I first think it was a cache issue, but it's not.
I'm looking for a fix, I'll keep you in touch.
This column is not shown when form is configured to be displayed on one column; which is the default. On my local instance, it was configured on two columns, therefore I cannot see this bug. The fix is quite simple: https://github.com/galette/galette/commit/5cf8741217f5b70f195ddafbf8782c670d... ++ -- Johan
On Thu, 2024-05-09 at 11:07 +0200, Johan Cwiklinski wrote:
Hello again,
Le 09/05/2024 à 10:59, Johan Cwiklinski a écrit :
I cannot reproduce on my local instance, but I can on demo. Problem is the new "Width in forms" column is missing on demo.
I first think it was a cache issue, but it's not.
I'm looking for a fix, I'll keep you in touch.
This column is not shown when form is configured to be displayed on one column; which is the default. On my local instance, it was configured on two columns, therefore I cannot see this bug.
The fix is quite simple: https://github.com/galette/galette/commit/5cf8741217f5b70f195ddafbf8782c670d...
++ -- Johan
_______________________________________________ Galette-users mailing list -- galette-users@mailman3.com To unsubscribe send an email to galette-users-leave@mailman3.com
Thanks, I'll give it a try.
On Thu, 2024-05-09 at 11:07 +0200, Johan Cwiklinski wrote:
Hello again,
Le 09/05/2024 à 10:59, Johan Cwiklinski a écrit :
I cannot reproduce on my local instance, but I can on demo. Problem is the new "Width in forms" column is missing on demo.
I first think it was a cache issue, but it's not.
I'm looking for a fix, I'll keep you in touch.
This column is not shown when form is configured to be displayed on one column; which is the default. On my local instance, it was configured on two columns, therefore I cannot see this bug.
The fix is quite simple: https://github.com/galette/galette/commit/5cf8741217f5b70f195ddafbf8782c670d...
++ -- Johan
_______________________________________________ Galette-users mailing list -- galette-users@mailman3.com To unsubscribe send an email to galette-users-leave@mailman3.com
Yep, it works ;-)
Hi, So updated to nightly, with strict declaration. Re-installation hangs. Apache log complains about 'includes/sql_parse.php' line 151. I found out this: " if (($i != ($token_count - 1)) || (strlen($tokens[$i] > 0))) { " should be this? " if (($i != ($token_count - 1)) || (strlen($tokens[$i]) > 0)) { " the closing parenthesis for the "strlen" should not be included in the comparison ? Install went fine, but the homepage now complains can't find the database and wants to install or upgrade :-( fun time :) On Thu, 2024-05-09 at 11:07 +0200, Johan Cwiklinski wrote:
Hello again,
Le 09/05/2024 à 10:59, Johan Cwiklinski a écrit :
I cannot reproduce on my local instance, but I can on demo. Problem is the new "Width in forms" column is missing on demo.
I first think it was a cache issue, but it's not.
I'm looking for a fix, I'll keep you in touch.
This column is not shown when form is configured to be displayed on one column; which is the default. On my local instance, it was configured on two columns, therefore I cannot see this bug.
The fix is quite simple: https://github.com/galette/galette/commit/5cf8741217f5b70f195ddafbf8782c670d...
++ -- Johan
_______________________________________________ Galette-users mailing list -- galette-users@mailman3.com To unsubscribe send an email to galette-users-leave@mailman3.com
Hello, Le 15/05/2024 à 06:13, Mhel Marcelo a écrit :
Hi,
So updated to nightly, with strict declaration.
Re-installation hangs. Apache log complains about 'includes/sql_parse.php' line 151. I found out this:
" if (($i != ($token_count - 1)) || (strlen($tokens[$i] > 0))) {"
should be this? " if (($i != ($token_count - 1)) || (strlen($tokens[$i]) > 0)) {"
Yes, but it's already been fixed: https://github.com/galette/galette/commit/911800df75fc8c9adadfe562dc5d416375...
Install went fine, but the homepage now complains can't find the database and wants to install or upgrade :-(
I do not reproduce :/ I the "galette/config/config.inc.php" properly created? Is it possible you had a file transfer issue or something like that? The "sql_parser.php" issue looks very strange. Just to make sure, nightly version should be "2452856517 (2024-05-13 23:29:29 GMT+0200)". ++ -- Johan
Hello, Thanks, I delete all my old directories and re-downloaded the nightly again. Installation is now ok. On Wed, 2024-05-15 at 07:37 +0200, Johan Cwiklinski wrote:
Hello,
Le 15/05/2024 à 06:13, Mhel Marcelo a écrit :
Hi,
So updated to nightly, with strict declaration.
Re-installation hangs. Apache log complains about 'includes/sql_parse.php' line 151. I found out this:
" if (($i != ($token_count - 1)) || (strlen($tokens[$i] > 0))) {"
should be this? " if (($i != ($token_count - 1)) || (strlen($tokens[$i]) > 0)) {"
Yes, but it's already been fixed: https://github.com/galette/galette/commit/911800df75fc8c9adadfe562dc5d416375...
Install went fine, but the homepage now complains can't find the database and wants to install or upgrade :-(
I do not reproduce :/ I the "galette/config/config.inc.php" properly created?
Is it possible you had a file transfer issue or something like that? The "sql_parser.php" issue looks very strange.
Just to make sure, nightly version should be "2452856517 (2024-05-13 23:29:29 GMT+0200)".
++ -- Johan
_______________________________________________ Galette-users mailing list -- galette-users@mailman3.com To unsubscribe send an email to galette-users-leave@mailman3.com
participants (2)
-
Johan Cwiklinski
-
Mhel Marcelo