Most important change in this release is the improved forum.
chapchap70
21 March 2021, 03:08
Thank you for continuing to release new versions for the public! At least one person is still using this. Working on upgrading from version 6.6.
I did need to change a couple default values from None to NULL in my database (I don't believe it was due to my errors)
127.0.0.1|Sat 20 Mar 2021 21:18:27|Database error while creating user. 127.0.0.1|Sat 20 Mar 2021 21:19:27|127.0.0.1|Sat 20 Mar 2021 21:19:27|/cms/user|SQL query: insert into `users` (`id`, `organisation_id`, `...snip Error message: Field 'signature' doesn't have a default value Same error with avatar Field
Hugo Leisink
21 March 2021, 11:25
Thanks for reporting. I fixed it in Gitlab.
Good to hear at least someone uses Banshee. May I ask what made you choose Banshee over the other frameworks / CMS's?
chapchap70
21 March 2021, 14:02
Short answer... Security. I'll send you an email later.
chapchap70
7 April 2021, 01:35
I think I found another error. I thought I might have messed up trying to upgrade so I tried with a fresh 7.2 installation and still got... "Banshee exception
Class 'Banshee\jpeg_image' not found
line 104 in /var/www/banshee/models/cms/photo.php."
I tried looking into it and saw that /libraries/image.php had changed from 6.6 in that /* JPEG image */ class jpeg_image extends image { public function __construct($filename = null) { $this->load_image = "imagecreatefromjpeg"; $this->save_image = "imagejpeg"; $this->mime_type = "image/jpeg";
parent::__construct($filename); } } was removed in 7.2 along with class png_image and class gif_image at the end of the file presumably replaced by the code change in the beginning of the file but I am unable to figure it out.
chapchap70
7 April 2021, 01:36
Sorry, should have mentioned that I was trying to upload photos.
Hugo Leisink
8 April 2021, 12:41
Thanks for reporting this issue. You can download a fixed version of models/cms/photo.php here.
I did need to change a couple default values from None to NULL in my database (I don't believe it was due to my errors)
127.0.0.1|Sat 20 Mar 2021 21:18:27|Database error while creating user.
127.0.0.1|Sat 20 Mar 2021 21:19:27|127.0.0.1|Sat 20 Mar 2021 21:19:27|/cms/user|SQL query: insert into `users` (`id`, `organisation_id`, `...snip
Error message: Field 'signature' doesn't have a default value
Same error with avatar Field
Good to hear at least someone uses Banshee.
Class 'Banshee\jpeg_image' not found
line 104 in /var/www/banshee/models/cms/photo.php."
I tried looking into it and saw that /libraries/image.php had changed from 6.6 in that /* JPEG image
*/
class jpeg_image extends image {
public function __construct($filename = null) {
$this->load_image = "imagecreatefromjpeg";
$this->save_image = "imagejpeg";
$this->mime_type = "image/jpeg";
parent::__construct($filename);
}
}
was removed in 7.2 along with class png_image and class gif_image at the end of the file presumably replaced by the code change in the beginning of the file but I am unable to figure it out.