Search found 2828 matches
- Mon Jul 14, 2025 11:01 pm
- Forum: Bugs
- Topic: Static Frontpage does not work after upgrade -- SOLVED
- Replies: 9
- Views: 18400
Re: Static Frontpage does not work after upgrade -- SOLVED
Please give the new version 4.15.12 a try. It changes how the static page is picked, using the internal id instead of the pagetitle. That might help, it helped in my test environment at least. https://github.com/s9y/additional_plugins/commit/8e2ffada59500e59ed2c9a0b992ea3d78d337bc8 is the commit, sh...
- Mon Jul 14, 2025 10:32 pm
- Forum: Bugs
- Topic: Static Frontpage does not work after upgrade -- SOLVED
- Replies: 9
- Views: 18400
Re: Static Frontpage does not work after upgrade -- SOLVED
I can confirm that something is off there. I marked two pages as frontpage, and indeed both stayed on that setting - which is already strange. And then when disabling the frontpage status of the first static page, that one stayed the frontpage - disabling both worked, the blog showed the entries aga...
- Mon Jul 14, 2025 8:33 am
- Forum: Bugs
- Topic: 2.5.0: No new StaticPages can be created // NOT SOLVED
- Replies: 5
- Views: 133
Re: 2.5.0: No new StaticPages can be created // NOT SOLVED
Given the solved/unsolved switch, please don't forget to check the log. A error message might help a lot.
- Mon Jul 14, 2025 7:23 am
- Forum: Bugs
- Topic: Static Frontpage does not work after upgrade -- SOLVED
- Replies: 9
- Views: 18400
Re: Static Frontpage does not work after upgrade -- SOLVED
Two pages marked as frontpage, that's something I can check for. I will have a look at the code and try to debug this.
- Fri Jul 11, 2025 2:20 pm
- Forum: Bugs
- Topic: 2.5.0: No new StaticPages can be created // NOT SOLVED
- Replies: 5
- Views: 133
Re: 2.5.0: No new StaticPages can be created // NOT SOLVED
Hm, then let's investigate. But I can't reproduce it here. Is there something in the PHP error log for the moments the statig page editor breaks like this? Alternatively, is there an error message at https://YOURURL/serendipity_admin.css?v=123, as it is linked in the head of the backend html?
- Wed Jul 09, 2025 12:13 pm
- Forum: Bugs
- Topic: 2.5.0: No new StaticPages can be created // NOT SOLVED
- Replies: 5
- Views: 133
Re: 2.5.0: No new StaticPages can be created // SOLVED
So it works with a different static page template?
- Mon Jul 07, 2025 6:05 pm
- Forum: Bugs
- Topic: no posted comments
- Replies: 36
- Views: 968
Re: no posted comments
Maybe also a s9y bug in there, if the .htaccess was not properly recreated. If you stumble over that again please let me know.
For now I'll be very happy that the site is working :)
For now I'll be very happy that the site is working :)
- Thu Jul 03, 2025 10:04 pm
- Forum: Bugs
- Topic: no posted comments
- Replies: 36
- Views: 968
Re: no posted comments
To avoid the encoding error, try replacing the print_r line with this: ob_start(); $output = file_get_contents($serendipity['serendipityPath'] . 'templates_c/testlog.txt'); print_r($serendipity['POST']); $output .= ob_get_contents(); ob_end_clean(); file_put_contents($serendipity['serendipityPath'] ...
- Thu Jul 03, 2025 10:24 am
- Forum: Bugs
- Topic: no posted comments
- Replies: 36
- Views: 968
Re: no posted comments
I don't really understand why just having the print_r in the file causes the encoding error - on my servers that is not a problem. https://stackoverflow.com/questions/14039804/error-330-neterr-content-decoding-failed suggests that either gzip or an unicode issue might be the source of the problem th...
- Wed Jul 02, 2025 11:49 pm
- Forum: Bugs
- Topic: no posted comments
- Replies: 36
- Views: 968
Re: no posted comments
If the entry itself is blank there likely is a PHP error, though there definitely would be an entry in the error log then. It all works again if you remove the ?
Code: Select all
print_r($serendipity['POST']);
- Wed Jul 02, 2025 2:46 pm
- Forum: Bugs
- Topic: no posted comments
- Replies: 36
- Views: 968
Re: no posted comments
In the include/functions_routing.inc.php is this line 350: if (!empty($serendipity['POST']['submit']) && !isset($_REQUEST['serendipity']['csuccess'])) { Please change it so there is one line on top of it: print_r($serendipity['POST']); if (!empty($serendipity['POST']['submit']) && !i...
- Wed Jul 02, 2025 11:19 am
- Forum: Bugs
- Topic: no posted comments
- Replies: 36
- Views: 968
Re: no posted comments
Okay, how strange! I noticed the preview is also not working, you just see the regular article. It is as if something is filtering out all the form parameters the comment formular set for the POST request before the serendipity code can react to it. Is there something between visitor and server that...
- Wed Jul 02, 2025 11:02 am
- Forum: Bugs
- Topic: no posted comments
- Replies: 36
- Views: 968
Re: no posted comments
Okay, there is something off there. I also get no feedback message after submitting the comment, as if the comment flow did not engage. There is still this message: "Submitted comments will be subject to moderation before being displayed." Is that coming from the entry settings? Can you di...
- Wed Jul 02, 2025 10:53 am
- Forum: Bugs
- Topic: no posted comments
- Replies: 36
- Views: 968
Re: no posted comments
I still see the "Multiple DNSBL checks will be performed on submission of your comments" message, while the captcha is gone. I think you are missing one :)
- Wed Jul 02, 2025 10:50 am
- Forum: Bugs
- Topic: no posted comments
- Replies: 36
- Views: 968
Re: no posted comments
Yes, that would be best.