Well we do not use sessions in GS, so we must have broken something else. We did restore functionality of the $data_index in 3.2.2, maybe you are using some global that changed, maybe 3.2.2 fixes it.
Hey there.
I installed this plugin and unfortunately I don't see anything where the form should be (front-end).
In code-view there is an empty <p> and two script elements below. But there is no form or anything else.
I've put all pages to the news section (Add button) and enabled commenting. However, no matter what settings I use (with or without captcha, moderating, etc.) there is no output I can see.
I am using 3.2.1 and downloaded just the latest plugin from this site.
Hope someone can help. Any advice appreciated. Thanks!
Ill try to install this tomorrow and see if there is something in this release that is broken.
I have an install of about 30 plugins I try to test a bunch now and then do not think this is on dev install.
(2013-06-15, 03:44:31)suntrop Wrote: Hey there.
I installed this plugin and unfortunately I don't see anything where the form should be (front-end).
In code-view there is an empty <p> and two script elements below. But there is no form or anything else.
I've put all pages to the news section (Add button) and enabled commenting. However, no matter what settings I use (with or without captcha, moderating, etc.) there is no output I can see.
I am using 3.2.1 and downloaded just the latest plugin from this site.
Hope someone can help. Any advice appreciated. Thanks!
Hi suntrop,
Have you activated the plugin in admin >plugin?
This weekend i upload a new version with the problems fixed ( I think :) )
Yes, plugin was activated. A couple hours ago I just deleted all files and installed it again. Now it works :-) Perhaps there was an error on save/read the files?!
Anyhow, thanks!
… and cool you made this plugin :-)
2013-07-06, 01:23:18 (This post was last modified: 2015-02-20, 22:21:43 by Oleg06.)
in the form of answers to receive this
Code:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/website.ru/gs321/theme/Innovation/header.inc.php:18) in /home/website.ru/gs321/plugins/pages_comments.php on line 1070
Hello Cumbe.
First of all, I wanna thank you for your great work!
But i also have a question:
Is there a way to disable the "Reply to Comments" function?
...so that people can leave a new comment on the page, but they should not be able to reply to any other comments.
2013-09-14, 04:23:44 (This post was last modified: 2013-09-14, 05:16:00 by zhivko.)
Hi,
I did a small update to make comments working with plugins like News Manager and GS Blog where all posts content is displayed in a page with the same slug.
Example: for News Manager I define a page with a slug 'news'. Current pages & comments version rely on slug to store and show comments. Therefore all comments for all news are stored in news.xml, i.e. we cannot have separate comments for different news.
The update is to store news related comments to separated xml files like 'newspost1.xml', 'newspost2.xml, etc.
1. In pages_comments.php, function sv_pages_first, line 249
In addition, if we don't need comments on search page (slug 'news' without 'post' parameter) we have to disable comments in code
3. In pages_comments.php, function sv_pages_first, line 277
PHP Code:
if ($com =='Y') {
change to
PHP Code:
if ($com =='Y' && isset($_GET['post'])) {
Note that point 3 disables comments on all regular pages which do not manage parameter 'post', therefore it can be ignored.
If you find it useful you may add this beahviour in next version.
Best regards,
Zhivko
P.S. I forgot to mention that this update works with Friendly URL disable. I'll try to figure out how to make it wuork with Friendly URL soon.