Hi
Thanks for your enquiry.
This problem is to do with SEO URL rewriting. To verify this, turn of your SEO URL component and see if easyCommentz works.
If I'm right, then the problem is in this file:
catalog/ossCommentz.php
The message info is POSTed to this page for processing from the comment form on the product page. If I had direct access to your files via FTP I could probably sort it out quite quickly, but for now, try the following in the file above:
1) Comment out (don't delete in case we need to roll back) the following lines:
| Code: |
$action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : '');
AND
if($action == '')$action = $HTTP_POST_VARS['action'];
|
2) Below this line that you just commented out:
| Code: |
if($action == '')$action = $HTTP_POST_VARS['action'];
|
ADD this line:
| Code: |
$action = $HTTP_POST_VARS['action'];
|
Then save the file and try it again. And don't forget to let me know how you get on so others can benefit from your experience.
Thanks a lot.
Nick