<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Phorum Support Forums - Phorum Hack/Mod Requests</title>
        <description>Post and discuss requests for new hacks and modules in here.</description>
        <link>https://www.phorum.org/phorum5/list.php?20</link>
        <lastBuildDate>Fri, 13 Mar 2026 04:50:24 -0400</lastBuildDate>
        <generator>Phorum 5.2.22</generator>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,162513,162513#msg-162513</guid>
            <title>Module request - Is there any way for users to block PM&#039;s from other individual users? (3 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,162513,162513#msg-162513</link>
            <description><![CDATA[ We&#039;re seeing a situation where users are taking heated discussions to PM&#039;s and harassing others.  We don&#039;t want to have to ban users over this.  It would be better to have a feature where individual users can block incoming PM&#039;s from other specific individual users.<br />
<br />
I&#039;d be willing to assist in the development of this with testing and functionality suggestions, but I wouldn&#039;t be able to fully code this as I don&#039;t have that level of coding skills.  I can often tweak existing code, but I wouldn&#039;t be able to develop this from scratch.]]></description>
            <dc:creator>stargazer77</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Fri, 25 Sep 2020 19:59:43 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,161810,161810#msg-161810</guid>
            <title>Trace IP of poster (3 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,161810,161810#msg-161810</link>
            <description><![CDATA[ IS there anyway with Phorum for me to trace the IP address of a poster.  I get that it will come back to their router, but that is fine.  Additionally, how about MAC addresses?  Thanks]]></description>
            <dc:creator>Quick_Question</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Wed, 13 Dec 2017 20:34:10 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,161617,161617#msg-161617</guid>
            <title>Add a background to the Phorum (7 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,161617,161617#msg-161617</link>
            <description><![CDATA[ I am sorry that I am so dumb. I promise to learn quickly. Can someone please tell me how I can add a background image to the Phorum pages?<br />
<br />
Thank you.]]></description>
            <dc:creator>btcbtc</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Thu, 23 Mar 2017 03:53:15 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,161543,161543#msg-161543</guid>
            <title>BBCode Request (2 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,161543,161543#msg-161543</link>
            <description><![CDATA[ <b>Hello There</b><br />
I&#039;d like to request the bbcode for columns and font size in numeral values from 1 to 200.]]></description>
            <dc:creator>destinystwilight</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Mon, 20 Feb 2017 06:59:13 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,161398,161398#msg-161398</guid>
            <title>HTTPS on load balancer (4 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,161398,161398#msg-161398</link>
            <description><![CDATA[ We&#039;re terminating SSL encryption on the load balancer, communication between the LB and the web servers is unencrypted. The LB adds a HTTP header &quot;isSSL: true&quot; on imcoming HTTPS requests. To make Phorum work in this setup, I added a file include/phorum_get_protocol.php and made a few changes to common.php and include/phorum_get_url.php.<br />
<br />
I&#039;ld like to append the files here, but this doesn&#039;t seem to be possible, so I put it this way:<br />
<br />
get_protocol. php:<br />
<br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div><span class="kw2">&lt;?php</span>
&nbsp;
<span class="re0">$allheaders</span><span class="sy0">=</span> <a href="http://www.php.net/getallheaders"><span class="kw3">getallheaders</span></a><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span>
<span class="kw1">if</span> <span class="br0">&#40;</span><a href="http://www.php.net/isset"><span class="kw3">isset</span></a><span class="br0">&#40;</span><span class="re0">$allheaders</span><span class="br0">&#123;</span><span class="st_h">';isSSL'</span><span class="sy0">;</span><span class="br0">&#125;</span><span class="br0">&#41;</span> and <span class="re0">$allheaders</span><span class="br0">&#123;</span><span class="st_h">';isSSL'</span><span class="sy0">;</span><span class="br0">&#125;</span> <span class="sy0">==</span> <span class="st_h">';true'</span><span class="sy0">;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span>
   <span class="re0">$protocol</span> <span class="sy0">=</span> <span class="st_h">';https'</span><span class="sy0">;;</span>
<span class="br0">&#125;</span>
<span class="kw1">else</span> <span class="br0">&#123;</span>
 <span class="re0">$protocol</span> <span class="sy0">=</span> <span class="st_h">';http'</span><span class="sy0">;;</span>
<span class="br0">&#125;</span>
<span class="sy1">?&gt;</span></pre>
<br />
<br />
In common.php, I added <br />
<br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div><span class="kw1">require_once</span><span class="br0">&#40;</span><span class="st0">&quot;include/phorum_get_protocol.php&quot;</span><span class="br0">&#41;</span><span class="sy0">;</span></pre>
<br />
after the other includes and <br />
<br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div><span class="re0">$PHORUM</span><span class="br0">&#91;</span><span class="st_h">';http_path'</span><span class="sy0">;</span><span class="br0">&#93;</span> <span class="sy0">=</span> <a href="http://www.php.net/preg_replace"><span class="kw3">preg_replace</span></a> <span class="br0">&#40;</span><span class="st0">&quot;!^https?!&quot;</span> <span class="sy0">,</span> <span class="re0">$protocol</span> <span class="sy0">,</span> <span class="re0">$PHORUM</span><span class="br0">&#91;</span><span class="st_h">';http_path'</span><span class="sy0">;</span><span class="br0">&#93;</span><span class="br0">&#41;</span><span class="sy0">;</span></pre>
<br />
after <br />
<br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div>phorum_db_load_settings<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span></pre>
<br />
and in phorum_get_url.php I put<br />
<br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div><span class="kw2">global</span> <span class="re0">$protocol</span><span class="sy0">;</span>
 <span class="re0">$url</span><span class="sy0">=</span> <a href="http://www.php.net/preg_replace"><span class="kw3">preg_replace</span></a> <span class="br0">&#40;</span><span class="st0">&quot;!^https?!&quot;</span> <span class="sy0">,</span> <span class="re0">$protocol</span> <span class="sy0">,</span> <span class="re0">$url</span><span class="br0">&#41;</span><span class="sy0">;</span></pre>
<br />
just before <br />
<br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div><span class="kw1">return</span> <span class="re0">$url</span><span class="sy0">;</span></pre>
<br />
in each of the functions phorum_get_url,  phorum_get_url_no_uri_auth and  phorum_get_current_url.<br />
<br />
This refers to version 5.2.20.<br />
<br />
Would somebody integrate that in proper form in Phorum, perhaps as a module? The name and value of the header sent by the LB should probably be configurable.]]></description>
            <dc:creator>Schurki</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Sat, 10 Dec 2016 15:54:18 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,156726,156726#msg-156726</guid>
            <title>Facebook or socialmedias (no replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,156726,156726#msg-156726</link>
            <description><![CDATA[ Is there a hack where Phorum supports socialmedia as login? So a user can login with there social profile as Twitter, Facebook, Google+ or somethink like that?]]></description>
            <dc:creator>sif4ever</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Tue, 15 Mar 2016 15:57:46 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,156583,156583#msg-156583</guid>
            <title>how to show 10 newest post outside forums directory (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,156583,156583#msg-156583</link>
            <description><![CDATA[ Hi,<br />
<br />
How to show 10 newest post outside forums directory ? <br />
<br />
Thanks.]]></description>
            <dc:creator>rian</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Mon, 07 Mar 2016 12:51:58 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,156484,156484#msg-156484</guid>
            <title>English Language Development Help? (no replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,156484,156484#msg-156484</link>
            <description><![CDATA[ Hi :)<br />
<br />
I am not a developer and barely understand much of what is written in the docs here. I do know what I want in a forum and searched a long time to find Phorum. <br />
<br />
It is installed but as far as customization, I&#039;m wondering if there is any fee-based support for English-language customization of the site.<br />
<br />
Thanks in advance!]]></description>
            <dc:creator>wishadoo</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Fri, 25 Dec 2015 09:18:31 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,156230,156230#msg-156230</guid>
            <title>Modify Ignore Mod (no replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,156230,156230#msg-156230</link>
            <description><![CDATA[ Love the ignore mod but would like to see it modified so that it hid the subject line as well as the body of the post. And since my forum is a thread view forum, a lot of folks just put their post in the subject line and not the body. I&#039;ve taken a crack at it and have modified my read_threads.tpl file to get it to work. Can&#039;t figure out how to modify my list_threads,tpl file to get it to hide the subject line however. Anybody want to take a crack at it? Thanks.]]></description>
            <dc:creator>ToddUGA</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Fri, 20 Nov 2015 13:22:43 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,155159,155159#msg-155159</guid>
            <title>Majordomo Mailing Lists subscribe/unsubscribe/etc (no replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,155159,155159#msg-155159</link>
            <description><![CDATA[ I found a fairly easy way to implement mailing list subscription on a forum.  I pasted the following code into the Forum Description box for a forum.<br />
<br />
<span style="color:#FF0000"><b>[I have edited this message.  Please note I have removed the &lt;form&gt; tag as this was preventing the Admin to move/merge/edit any topic/message.]</b></span><br />
<br />
&lt;input type=&quot;button&quot; value=&quot;Subscribe&quot; onClick=&quot;window.location.href=&#039;mailto:majordomo@domain.com?Subject=Subscribing to a Message Forum&amp; body=Subscribe Listname&#039;&quot;&gt; &lt;input type=&quot;button&quot; value=&quot;Unsubscribe&quot; onClick=&quot;window.location.href=&#039;mailto:majordomo@domain.com?Subject=Subscribing to a Message Forum&amp; body=Unsubscribe Listname&#039;&quot;&gt; &lt;input type=&quot;button&quot; value=&quot;Subscribe Digest&quot; onClick=&quot;window.location.href=&#039;mailto:majordomo@domain.com?Subject=Subscribing to a Message Forum&amp; body=Subscribe Listname-digest&#039;&quot;&gt; &lt;input type=&quot;button&quot; value=&quot;Unsubscribe Digest&quot; onClick=&quot;window.location.href=&#039;mailto:majordomo@domain.com?Subject=Subscribing to a Message Forum&amp; body=Unsubscribe Listname-digest&#039;&quot;&gt; <br />
&lt;p&gt;&lt;/p&gt;<br />
Whatever else you want to say about the Forum Description.]]></description>
            <dc:creator>Beery</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Sat, 28 Jun 2014 21:26:27 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,155154,155154#msg-155154</guid>
            <title>embed_images file size conundrum (3 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,155154,155154#msg-155154</link>
            <description><![CDATA[ With embed_images on my installation (most) image uploads result in an error message saying no image can be larger than 614.4kb.  General case uploads for my apache web server can be much larger (upload_max_filesize in php.ini)<br />
<br />
<b>admin.php =&gt; mods =&gt; embed_images =&gt; settings</b> has a setting for &quot;maximum width for showing&quot; that seems to have no effect, regardless set to 0 or some large pixel number.<br />
<br />
 <b>find ./phorum -name &quot;*php&quot; |  xargs -i grep -H 614 {}</b>   ... finds no sources with 614 in the php file<br />
<br />
 <b>find ./phorum -type f  |  xargs -i grep -H 614 {}  2&gt;/dev/null</b> turned up no regular file of any kind containing 614 either<br />
<br />
If the 614.4kb upload size limit  isn&#039;t set by the web server where and how is it being enforced?  How do I allow uploading larger image files?  614.4 is not a reasonable file size limit anymore.]]></description>
            <dc:creator>spittendrigh</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Fri, 27 Jun 2014 14:20:29 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,155148,155148#msg-155148</guid>
            <title>BBCode [pdf]: embedded PDF viewer (no replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,155148,155148#msg-155148</link>
            <description><![CDATA[ Request for a mod that would add a BBCode for embedded viewing of pdf files.<br />
<br />
The syntax could be:<br />
[pdf]{url-of-pdf-file}[/pdf]<br />
<br />
That would be translated to:<br />
&lt;iframe src=&quot;ht­tp://docs.google.com/viewer?url={url-of-pdf-file}&amp;embedded=true&quot; style=&quot;width:600px; height:500px;border: none;&quot;&gt;&lt;/iframe&gt;<br />
<br />
(See [<a href="https://docs.google.com/gview" target="_blank"  rel="nofollow">docs.google.com</a>] for more info about the Google document viewer.<br />
If there is an other/better pdf viewer that could be used in stead of Google&#039;s that would be fine by me too.)<br />
<br />
It would be especially nice if it would also work with attachments, like:<br />
[pdf][attachment 999 some.pdf][/pdf]]]></description>
            <dc:creator>Mac­</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Thu, 26 Jun 2014 20:20:31 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,154932,154932#msg-154932</guid>
            <title>MAC Address (3 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,154932,154932#msg-154932</link>
            <description><![CDATA[ It would be nice if I could block a user by computer or router MAC Address.  Currently if booted, they just create more user IDs and start up again.  Even moderated I don&#039;t want some of these users on the site.  I can&#039;t block them by IP address as their IPs are not static.]]></description>
            <dc:creator>NancyKP</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Mon, 24 Feb 2014 15:04:44 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,154929,154929#msg-154929</guid>
            <title>Resizing of attachments (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,154929,154929#msg-154929</link>
            <description><![CDATA[ Hello all,<br />
<br />
I searched throughout all mods and threads here, but was not able to find some mod that could automatically do resizing of uploaded images? The idea is that usually people upload images directly from their smartphone, and nobody needs 5MB of JPEG file when it can be resized to a predefined maximum height and width to either save space and bandwidth.<br />
<br />
Any idea if there is some mod that can do that for me?<br />
<br />
Thanks in advance!]]></description>
            <dc:creator>haz23</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Sat, 14 Nov 2015 00:03:43 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,154919,154919#msg-154919</guid>
            <title>Soundcloud embedding (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,154919,154919#msg-154919</link>
            <description><![CDATA[ Has anyone recently been able to get Soundcloud embedding working on a Phorum? <br />
I realize there&#039;s been a thread about this but the last post is from 2011, maybe there has been a breakthrough :)<br />
<br />
Then again Phorum itself is also almost an adult right? Our site has been running Phorum since 2000 or so if I remember well and it&#039;s still being used today.]]></description>
            <dc:creator>kswift</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Mon, 25 Aug 2014 16:15:42 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,154884,154884#msg-154884</guid>
            <title>Static Pages: Reporting outside database data? (no replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,154884,154884#msg-154884</link>
            <description><![CDATA[ Teetering on my inexpereince with template files, PHP, and MySql, can outside database data be reported within the static pages?  Possible?  Difficult?]]></description>
            <dc:creator>Grayson</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Fri, 17 Jan 2014 10:09:37 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,154451,154451#msg-154451</guid>
            <title>help request for coloured usernames (5 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,154451,154451#msg-154451</link>
            <description><![CDATA[ Hello,<br />
<br />
I hope I am posting in the correct forum.<br />
The situation:<br />
I got hands on a little mod which allows the users to set a custom colour for their usernames at login. This mode is working with Phorum 5.1 branch. Unfortunately the author is not known to me.<br />
<br />
The users would like to have this feature in the upgraded version of 5.2.19 as well. I am a bit at a loss here, as I have VERY little php knowlegde. I have managed to get the search function for 5.2 working but I am not able to get the statements following the search working.<br />
<br />
If there is someone willing and interested to help me, how would we go from here ? <br />
<br />
Help would be very appreciated. Thank you in advance.]]></description>
            <dc:creator>gelbeseiten</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Fri, 25 Oct 2013 10:22:41 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,153962,153962#msg-153962</guid>
            <title>Flat or Hybrid with Tree? (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,153962,153962#msg-153962</link>
            <description><![CDATA[ Hi @ll,<br />
<br />
since this is my first posting in this forum, i&#039;d like to express my respect and thanx to the dev-team and all (mod) contributors!<br />
<br />
I&#039;ve been running forums since middle of the Nineties, and it was always the &quot;fully threaded view&quot; that made the difference. My oldest forum needs a facelifting and after intense comparison, i choose Phorum as a starting base because of the three viewing styles offered.<br />
What i need now, is a hint into what direction to look, to have a tree - as in Threaded View - also on the Flat or Hybrid style Views. I&#039;d like to display the first posting, then the tree-structure, and then all follow-up postings on the read page.<br />
<br />
I guess, this could be accomplished by calling the LOOP MESSAGES loop twice ...?<br />
<br />
Best regards from Hamburg, Germany,<br />
Thomas]]></description>
            <dc:creator>medialogix</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Fri, 09 Aug 2013 15:56:23 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,153699,153699#msg-153699</guid>
            <title>How to go to the requested page after authorization? (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,153699,153699#msg-153699</link>
            <description><![CDATA[ The truoble: <br />
Loading &#039;/&#039; page after loggin to phorum.<br />
<br />
Wanna:<br />
Loading the page to what was the authorization request.<br />
<br />
How to make that changes? Or there is a hack to do like that?]]></description>
            <dc:creator>userball</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Tue, 11 Jun 2013 10:07:02 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,153633,153633#msg-153633</guid>
            <title>Looking for a most recent posts plug-in/script for main index page... (no replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,153633,153633#msg-153633</link>
            <description><![CDATA[ Hello! I have been using Phorum software for about a month. . . and... I LOVE IT.<br />
<br />
<br />
<br />
However I am trying to create on the main index page of my site a listing of all posts.  Regardless of where, when or who posted them. <br />
<br />
Basically a long list of posts made by users in one long up to date list.  Easy to scroll, and simultaneously updated.  <br />
<br />
I am using mysql as a database system. And the latest version of phorum software. <br />
<br />
<br />
<br />
<br />
Any pointers in the right direction would be really helpful. <br />
Open source means a lot to me, and continues to inspire me, and it truly is the way of the future.<br />
<br />
Thank you so much in advance...<br />
<br />
<br />
=Flannel]]></description>
            <dc:creator>Flannel</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Wed, 22 May 2013 02:07:37 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,153617,153617#msg-153617</guid>
            <title>Security - strong passwords (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,153617,153617#msg-153617</link>
            <description><![CDATA[ I was looking for a mod to increase security for phorum.<br />
<br />
Specifically, something to:<br />
- require stronger passwords.<br />
  (options for minimum password length, require numbers and symbols, exclude dictionary words, etc)<br />
- set expirations on passwords to force periodic password change<br />
  (needed to force existing users to update to a new strong password)<br />
<br />
I searched and didn&#039;t find any prior discussion of this?]]></description>
            <dc:creator>Steve H</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Fri, 10 May 2013 03:16:50 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,153488,153488#msg-153488</guid>
            <title>Was wondering if there was a a log in box like this? (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,153488,153488#msg-153488</link>
            <description><![CDATA[ <img src="http://postimg.org/image/ohlzvqr5z/" class="bbcode" border="0" /><br />
[<a href="http://postimg.org/image/ohlzvqr5z/" target="_blank"  rel="nofollow">postimg.org</a>]<br />
<br />
I would like it to be in the header to the right.]]></description>
            <dc:creator>White_Rabbit</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Fri, 22 Mar 2013 12:50:57 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,153433,153433#msg-153433</guid>
            <title>Mod: Notifications (no replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,153433,153433#msg-153433</link>
            <description><![CDATA[ The idea for this is a simple mod that adds a &quot;New post count&quot; for followed topics. If there is a new post in a followed topic, the numeric counter would increase by 1.<br />
<br />
Essentailly, when you click on &quot;Followed Topics&quot; you are presented with a list of followed topics. Some of these have new-flags. This mod would display numerically how many new-flags there are, being the equivalent of fresh replies to topics your following.<br />
<br />
<br />
This would automatically work with my other idea for mentioning and tagging that I posted here...<br />
[<a href="http://www.phorum.org/phorum5/read.php?20,153432" target="_blank" >www.phorum.org</a>]]]></description>
            <dc:creator>Robert Angle</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Tue, 12 Mar 2013 22:17:52 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,153432,153432#msg-153432</guid>
            <title>MOD: Mention Alerts - @mention username in posts (no replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,153432,153432#msg-153432</link>
            <description><![CDATA[ I am interested in a module that will allow a person to be &quot;mentioned&quot; or &quot;tagged&quot; by another user in their post or reply, and upon submitting the post the user that got tagged will get an email notification. The tag or mention displays the username as a clickable link to their profile.<br />
<br />
Integration with &quot;My Followed Topics&quot; would be nice as well, that is, the user who got tagged will be automatically following that topic.<br />
<br />
Of course, Control Center options to not receive emails when tagged and to not automatically follow the topic should exist so that each user can opt out of such emails.<br />
<br />
<br />
Any thoughts?]]></description>
            <dc:creator>Robert Angle</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Tue, 12 Mar 2013 22:14:35 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,153413,153413#msg-153413</guid>
            <title>Do we need you guys to write code to allow us to embed other video services besides Youtube? (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,153413,153413#msg-153413</link>
            <description><![CDATA[ If so what is involved and if not where do you make the changes?<br />
<br />
I want to be able to embed videos from Wistia as Youtube floods my site with Google ads I don&#039;t want. I also have Clipbucket on our own server. One of our advertisers wants us to be able to embed the Wistia.<br />
<br />
Thanks... Gary]]></description>
            <dc:creator>Guvner</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Tue, 12 Mar 2013 22:20:22 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,153277,153277#msg-153277</guid>
            <title>No mark forum read and no new count (4 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,153277,153277#msg-153277</link>
            <description><![CDATA[ I would like to remove or hide two things:<br />
<br />
1. Remove or hide the &quot;Mark Forum Read&quot;<br />
<br />
2. Remove or hide (3 new), (1 new) etc in both posts and topic count-<br />
<br />
And add:<br />
<br />
1. Instead of saying how many unread posts or topics there are, if the topic is unread; id like the topic title to become bold and the font color slightly changed.<br />
<br />
2. Show a distinct icon next to any topic title if you have posted any posts in that topic or created it. (To quickly see in which topics you have participated)<br />
<br />
3. Mark all topics that are older than 1 month as read<br />
<br />
If there is already any modules that i have missed that do any of these things, please let me know.]]></description>
            <dc:creator>houndchaser</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Sat, 09 Feb 2013 05:52:45 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,153274,153274#msg-153274</guid>
            <title>Mass delete messages. (2 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,153274,153274#msg-153274</link>
            <description><![CDATA[ Spammers are fast nowadays and there could be hudreds of spam messages to deltete on just one forum. Deleteing spam one by one is really frustrating. So... if there was a checkbox for every message and button that deletes all marked messages the work would be much much easier.]]></description>
            <dc:creator>Fenix</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Wed, 06 Feb 2013 06:01:18 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,153182,153182#msg-153182</guid>
            <title>login problem (2 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,153182,153182#msg-153182</link>
            <description><![CDATA[ hello im a new user. i need help about template customize<br />
<br />
i customize my template. i added the code below in my &quot;template/header.tpl&quot;  when i wanna login so i enter my username and password to log in then i submit button but i cant login. why was that ?<br />
<br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div><span class="sy0">&lt;</span>form action<span class="sy0">=</span><span class="st0">&quot;{URL-&gt;ACTION}&quot;</span> method<span class="sy0">=</span><span class="st0">&quot;post&quot;</span><span class="sy0">&gt;</span>
                    <span class="br0">&#123;</span>POST_VARS<span class="br0">&#125;</span>
                    <span class="br0">&#123;</span>LANG<span class="sy0">-&gt;</span><span class="me1">Username</span><span class="br0">&#125;</span><span class="sy0">:</span>
                    <span class="sy0">&lt;</span>input type<span class="sy0">=</span><span class="st0">&quot;text&quot;</span> id<span class="sy0">=</span><span class="st0">&quot;username&quot;</span> name<span class="sy0">=</span><span class="st0">&quot;username&quot;</span> size<span class="sy0">=</span><span class="st0">&quot;15&quot;</span> value<span class="sy0">=</span><span class="st0">&quot;{LOGIN-&gt;username}&quot;</span> <span class="sy0">/&gt;&lt;</span>br <span class="sy0">/&gt;</span>
                    <span class="sy0">&lt;</span>br <span class="sy0">/&gt;</span>
                    <span class="br0">&#123;</span>LANG<span class="sy0">-&gt;</span><span class="me1">Password</span><span class="br0">&#125;</span><span class="sy0">:</span>
                    <span class="sy0">&lt;</span>input type<span class="sy0">=</span><span class="st0">&quot;password&quot;</span> id<span class="sy0">=</span><span class="st0">&quot;password&quot;</span> name<span class="sy0">=</span><span class="st0">&quot;password&quot;</span> size<span class="sy0">=</span><span class="st0">&quot;15&quot;</span> value<span class="sy0">=</span><span class="st0">&quot;&quot;</span> <span class="sy0">/&gt;</span>
                    <span class="sy0">&lt;</span>br <span class="sy0">/&gt;</span>
                    <span class="sy0">&lt;</span>input type<span class="sy0">=</span><span class="st0">&quot;submit&quot;</span> value<span class="sy0">=</span><span class="st0">&quot;{LANG-&gt;Submit}&quot;</span> <span class="sy0">/&gt;</span>
                <span class="sy0">&lt;/</span>form<span class="sy0">&gt;</span></pre>
<br />
<img src="http://i47.tinypic.com/nyd7wx.jpg" class="bbcode" border="0" />]]></description>
            <dc:creator>rebelpirate</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Wed, 23 Jan 2013 07:09:58 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,153011,153011#msg-153011</guid>
            <title>How to create message in mysql (1 reply)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,153011,153011#msg-153011</link>
            <description><![CDATA[ Hi all, how do I create message in mysql ?, I want to automatically create message for my phorum, from a sistersite I have.]]></description>
            <dc:creator>tabby2</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Thu, 03 Jan 2013 07:20:30 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?20,152804,152804#msg-152804</guid>
            <title>Hot Topics (11 replies)</title>
            <link>https://www.phorum.org/phorum5/read.php?20,152804,152804#msg-152804</link>
            <description><![CDATA[ Hi,<br />
<br />
Is there any mod or any edit files to show the hot topics with a small icon if the topic has more than 10 Replies.]]></description>
            <dc:creator>Toni</dc:creator>
            <category>Phorum Hack/Mod Requests</category>
            <pubDate>Thu, 27 Dec 2012 13:17:08 -0500</pubDate>
        </item>
    </channel>
</rss>
