Open Comments allows your guests to post comments on your pages, just like registered users. The only difference is that guest have to provide an email address, and optionally a website address. This is similar to Wordpress. For security, the plugin can use reCAPTCHA. It also has the option to send an email to the administrator when a new guest comment is posted.
How's this different from com4guestsş
- Open Comments only supports
reCAPTCHA, while com4guests uses the captcha manager plugin so you can pick whichever captcha type you like. However, that does require some additional installation steps and configuration.
- Open Comments stores guest information (email/website) in the comments table. In order to do that it adds two columns to that table. com4guests doesn't store this information at all (just a name, no email or website).
Installation:
- Upload the plugin files
- Go to admin panel and install Open Comments
- If you want to use CAPTCHA, to to
reCAPTCHA and register a site. Then go to the Open Comments configuration area and copy your reCAPTCHA keys there.
- Look at the plugin page in the adminpanel for the tags you need to add to
comments.tpl
Commets.tpl yi aşşn alttakini bulun
Kod:
{COMMENTS_ROW_ADMIN}
Altşna ekleyin
Kod:
{COMMENTS_ROW_AUTHOREMAIL} {COMMENTS_ROW_AUTHORSITE}
Alttakini bulun
Kod:
<h4>{PHP.skinlang.comments.Comment}</h4>
Altşna ekleyin
Kod:
<!-- BEGIN: GUEST -->
<p>Your name:<br/>{COMMENTS_FORM_NAME}</p> <p>Email address:<br/>{COMMENTS_FORM_EMAIL}</p>
<p>Website:<br/>{COMMENTS_FORM_SITE}</p> <p>{COMMENTS_FORM_CAPTCHA}</p>
<!-- END: GUEST -->
reCAPTCHA Sitesine gidin
reCAPTCHA Public Key ve
reCAPTCHA Private Key alşn eklentinin Admin Paneldeki ayar bşlşmşne aldşşşnşz kodlarş ekleyin.
Phpmyadmin veya Dbtools ile Alttaki sorgularş şalşştşrşn.
:
ysql]UPDATE sed_auth SET auth_rights = 3, auth_rights_lock = 128 WHERE auth_code = 'comments' AND auth_groupid = 1;
ALTER TABLE sed_com ADD com_authoremail VARCHAR(100) NOT NULL AFTER com_authorip, ADD com_authorsite VARCHAR(100) NOT NULL AFTER com_authoremail;