User Tools

Site Tools


admin:forum

Differences

This shows you the differences between two versions of the page.


Previous revision
admin:forum [2023/08/30 01:16] (current) rainerk
Line 1: Line 1:
 +====== Forum phpBB3 Modifications ======
  
 + \\
 +=====Site icon added=====
 +| 24-02-2014 |
 +**phpbb3/styles/prosilver/template/overall_header.php**
 +<code php>
 +<link rel="shortcut icon" href="http://forum.rocrail.net/images/favicon.ico" />
 +</head>
 +</code>
 +
 + \\
 +=====Extra links in header=====
 +| 24-02-2014 |
 +**phpbb3/styles/prosilver/template/overall_header.php**
 +<code php>
 +<p>{SITE_DESCRIPTION}</p>
 +<b><a href="http://wiki.rocrail.net" style="color: #CADCEB">Rocrail-Wiki</a> &bull; <a href="http://wiki.rocrail.net/doku.php?id=supportkey-en" style="color: #CADCEB">Support-Key</a> &bull; <a href="https://github.com/rocrail/Rocrail/commits/master" style="color: #CADCEB">Revisions</a> &bull; <a href="http://rocrail.net/software/rocrail-snapshot/" style="color: #CADCEB">Download</a> &bull; <a href="http://forum.rocrail.net/search.php?search_id=newposts&fid[]=95" style="color: #CADCEB">New EN-posts</a> &bull; <a href="http://forum.rocrail.net/search.php?search_id=active_topics&fid[]=95" style="color: #CADCEB">Active EN-topics</a></b>
 +</code>
 +
 + \\
 +
 +===== Spam Blocker for Registering =====
 +| 18-02-2014 |
 +Added AntiSpam Blocker from prophpBB:
 +  * http://support.prophpbb.com/topic3719.html
 +
 +====Install====
 +  * {{:admin:prophpbb_antispam.php.zip}}
 +<code php>
 +/*---------------------------------------------------------------
 + * PROPHPBB ANTISPAM
 + * VERSION 1.0.0
 + * BY JOE HAYES, FOR PROPHPBB.COM
 + *---------------------------------------------------------------
 + * INSTALLATION IS AS EASY AS 1-2-3
 + *---------------------------------------------------------------
 + *
 + * 1) Upload prophpbb_antispam.php to your phpBB includes/ucp/ directory
 + *
 + * 2) In the same directory, edit ucp_register.php
 + * find: // DNSBL check
 + * add above: include('prophpbb_antispam.php');
 + *
 + * 3) Edit language/en/common.php and, at end of the file, right before the closing ?>, add:
 + * $lang['PROPHPBB_ANTISPAM'] = '<strong>Spam registration stopped</strong><br />&raquo; %1$s';
 + *
 + * To test: go to http://stopforumspam.com and get the username and email of a top spammer, 
 + * and try registering with those credentials on your forum.
 + *
 + *---------------------------------------------------------------
 + * CONFIGURATION
 + *-------------------------------------------------------------*/
 +</code>
 +====Admin Protocol====
 +Proof of concept:\\
 +{{:admin:admin-protocol.png}}\\
 +
 +====Donation====
 +| 18-02-2014 |
 +Donated $25 to http://www.stopforumspam.com/donate; Keep up the good forum service!
 +
 +====Decreased threshold from 50 to 30====
 +| 22-02-2014 |
 +Once a day I still have to delete a registration manually although the IP address is known at http://stopforumspam.com/search.\\
 +includes/ucp/prophpbb_antispam.php Line 28:
 +<code php>
 + // Stop Forum Spam
 + $sfs_threshold = 30; // 0-300, 50 default, 0 to disable
 +</code>
 +
 + \\
 +
 +===== Rocrail Logo =====
 +| 15-02-2014 |
 +  * https://www.phpbb.com/kb/article/changing-your-board-logo/
 +
 +====Install====
 +Changed logo line in **styles/prosilver/imageset/imageset.cfg**:
 +<code php>
 +# Images
 +#img_site_logo = site_logo.gif*52*139
 +img_site_logo = rocrail.png*56*160
 +</code>
 +====Resource====
 +Copied new logo to **styles/prosilver/imageset/**.\\
 +{{:admin:rocrail.png}}
 +
 + \\