grav-plugin-comments icon indicating copy to clipboard operation
grav-plugin-comments copied to clipboard

Solved plugin problems?

Open jeremycherfas opened this issue 6 years ago • 4 comments

I think I may have solved the problem of the plugin not working.

Line 192 originally read $post = isset($_POST['data']) ? $_POST['data'] : [];

However, $_POST as received from the form did not contain any element data. I replaced that line with the admittedly simpler

If (isset($_POST)){
  $post = $_POST;
}

The plugin now works in my installation. I didn't actually fork the plugin, and so am not sure how to file a PR.

I also reversed email and addComment in the process section of comments.yaml to avoid the problem of receiving an email even though the comment was not saved.

This fix works even without language being set.

jeremycherfas avatar Jan 15 '19 14:01 jeremycherfas

@jeremycherfas Just tried all what you said, and it doesn't work for me. Nothing is saved in the /data folder.

Heraes-git avatar Aug 02 '19 13:08 Heraes-git

I'm afraid I cannot help you. But let me test the comment function on my own site. I get so few comments that I can never be sure that it still works after upgrading Grav.

Later: you're right, I am not receiving comments from my site and nothing is being saved. I need to check first that email sending works, and will then look elsewhere.

Email works fine.

@Romarain have you raised the question in Discord?

jeremycherfas avatar Aug 02 '19 15:08 jeremycherfas

@jeremycherfas Yes, I talked about that. But you know, for third-party plugins, people tend to ignore requests that seem more a consequence of our own config that of the plugin itself.

Heraes-git avatar Aug 04 '19 15:08 Heraes-git

Not sure what you mean about 3rd party. This plugin is made by the Grav team.

jeremycherfas avatar Aug 05 '19 07:08 jeremycherfas