Code: Select all
Browse to www.yoursite.com/simple_comment_intall.php and follow the steps!

.
.
Code: Select all
Browse to www.yoursite.com/simple_comment_intall.php and follow the steps!
phreakwars wrote:Just an FYI, it's not a big deal or anything, on line 677 of your install XML, it says
You mis-spelled install.Code: Select all
Browse to www.yoursite.com/simple_comment_intall.php and follow the steps!
![]()
.
.
1.5.0 has this feature[o0] wrote:I really like this Mod.. but there's imho one very important feature missing: If you get a new comment you dont' get informed about this, so getting an Email or a private Message would be very useful.
Yes in the Database under the users table you could set the default value to 1 as its at 0 rite now, that way new registrants will have the setting on by default. This will be default in the final version.[o0] wrote:Oh, sorry, I just looked in the ACP for that option =/
But if that option is set to "no" by default, is it possible to change that? So that new registered users already have this option switched to "yes". And for already registered users: Is it possible to change their settings to "yes"? Perhabs somehow directly in the database with phpMyAdmin oder sth like that.. sorry I'm not good at all in mySQL.
(By the way, great mod, thanks for developing it ;])
Code: Select all
UPDATE phpbb_users set allow_comment_email = 1 WHERE allow_comment_email = 0
I just had the same problem, I had to set the permission role to "never" I hope it stops it, but originally it was set to no anyway, so how the heck did they bypass it anyway40kforums wrote:Installed all this fine, and works well - great mod, thanks!
However, despite guests and bots not being able to physically see the comments (the comments themselves, the form, etc.) - I am still getting 1-2 bots commenting on users profiles per day (as "Anonymous" users). I have tested myself and guests do not see the comments system on the profile pages - is there somewhere else, or somehow that they could be submitting a comment regardless?
Code: Select all
<!-- IF SIGNATURE -->
<tr>
<td class="cat" colspan="2" align="center"><h4>{L_SIGNATURE}</h4></td>
</tr>
<tr>
<td class="row1" colspan="2"><div class="postbody" style="padding: 10px;">{SIGNATURE}</div></td>
</tr>
<!-- ENDIF -->
</table>
</form>
</div>
<br clear="all" />
<!-- IF SIMPLE_COMMENT_ENABLED -->
<!-- IF ALLOW_ALL_COMMENT -->
<!-- IF ALLOW_FRIEND_VIEW && not FRIEND -->
<!-- ELSE -->
<ul class="linklist">
<li class="rightside pagination">{TOTAL_COMMENT} • <!-- IF PAGINATION --><a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{PAGE_NUMBER}</a> • <span>{PAGINATION}</span><!-- ELSE -->{PAGE_NUMBER}<!-- ENDIF --></li>
</ul>
<div class="navbar">
<div class="inner"><span class="corners-top"><span></span></span>
<table class="tablebg" width="100%" cellspacing="0">
<th colspan="2"> {L_PROFILE_COMMENTS} </th>
<!-- BEGIN comment -->
<tr>
<td rowspan="3" width="23%" align="center">{comment.COMMENT_AUTHOR}<br /><a href="{comment.USER_URL}">{comment.COMMENT_AVATAR_THUMB}</a><br />{comment.COMMENT_DATE}
</td>
</tr>
<tr align="right">
<td colspan="2">
{comment.COMMENT_DATE_TIME}
</td>
</tr>
<tr align="center">
<td width="85%" rowspan="2"> <p align="right" > </p>
<p>{comment.COMMENT_TEXT}</p>
</td>
</tr>
<tr>
<!-- IF comment.CAN_DELETE or (U_MCP or U_ACP) -->
<td width="23%" colspan="2"><a href="{comment.DELETE_URL}"><span>{DELETE_IMG}</span></a>
</td>
<!-- ENDIF -->
</tr>
<tr>
<td colspan="2">
<hr style="border-top-style : dashed;" />
</td>
</tr>
<!-- END comment -->
</table>
<span class="corners-bottom"><span></span></span></div>
</div>
<!-- ENDIF -->
<p> </p>
<!-- IF S_USER_LOGGED_IN -->
<!-- IF ALLOW_FRIEND_ONLY && not FRIEND -->
<!-- ELSE -->
<table class="tablebg" width="100%" cellspacing="0">
<th> {L_PROFILE_COMMENT_SUB} </th>
<form action="{NEW_COMMENT}" method="post" id="postform" name="comment">
<tr align="center">
<td>
<textarea name="comment_text" id="message" cols="100" rows="5"></textarea>
<input name="comment_to_id" type="hidden" value="{COMMENT_TO_ID}" />
</td>
</tr>
<tr align="center">
<td>
<input name="submit" type="submit" id="submit" value="{L_SUBMIT}" />
</td>
</tr>
</form>
</table>
<!-- ENDIF -->
<!-- ENDIF -->
<!-- ENDIF -->
<!-- ENDIF -->
<!-- INCLUDE breadcrumbs.html -->
<br clear="all" />
<div style="float: {S_CONTENT_FLOW_END};"><!-- INCLUDE jumpbox.html --></div>
<!-- INCLUDE overall_footer.html -->
thesilmister wrote:Okay, I have to apologise profusely (i'm sorry i'm sorry i'm sorry ... etc.) as I actually had copied the code in memberlist.php twice, therefore gathering the data two times instead of just once. It's my fault and not the Mod's.
Thanks, though.