<?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 - 5.2 Modules/Add-Ons</title>
        <description>All modules known to work or written for 5.2.0 and up. Modules are small packages that increase or change the functionality of Phorum in some way, without changing any of the main Phorum code.  You can find a list of Phorum 5.2 Modules --&gt; Here </description>
        <link>https://www.phorum.org/phorum5/list.php?62</link>
        <lastBuildDate>Thu, 21 May 2026 09:33:45 -0400</lastBuildDate>
        <generator>Phorum 5.2.22</generator>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,123477,162774#msg-162774</guid>
            <title>Re: Module: Topic Poll</title>
            <link>https://www.phorum.org/phorum5/read.php?62,123477,162774#msg-162774</link>
            <description><![CDATA[ Hi<br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>Oliver Riesen-Mallmann</strong><br />
<br />
since there are few other passages with &quot;each&quot; in the source code and perhaps also in other modules, I think we should use a funtion to replace &quot;each()&quot; like in polyfill-each: [<a href="https://github.com/ChristiaanBye/polyfill-each" target="_blank"  rel="nofollow">github.com</a>]</div></blockquote>
<br />
You mean in the source code of phorum itself, I assume. Because there is only one instance of each() in topic_poll. <br />
<br />
Anyway, I have a somewhat unusual setup, with phorum on a distributed glusterfs filesystem on three machines. So each of these three machines sees <i>one and the same</i> filesystem and files on it. But machine A runs almalinux 8.x with PHP 7.4 and machines B and C run almalinux 9.x with PHP 8.3. All three run a webserver. This means that I can switch back and fro between the same (5.2.23) phorum installation on PHP 7.4 or 8.3 just by toggling /etc/hosts on my workstation. <br />
<br />
So I added &#039;require_once(&quot;./include/polyfill-each.php&quot;);&#039; in common.php. polyfill-each does nothing if each() already exists, so 7.4 still works fine. 8.3 however breaks elsewhere with <br />
<pre class="bbcode">
PHP Fatal error:  Array and string offset access syntax with curly braces is no longer supported in /path/to/phorum/include/upload_functions.php on line 107</pre>
That raises two questions:<br />
<ol type="1"><li> Will phorum be updated for PHP 8.x? </li><li> Should we move this discussion to the main 5.2 support forum? </li></ol>
<br />
Cheers]]></description>
            <dc:creator>zenon</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Thu, 26 Sep 2024 07:42:48 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,123477,162773#msg-162773</guid>
            <title>Re: Module: Topic Poll</title>
            <link>https://www.phorum.org/phorum5/read.php?62,123477,162773#msg-162773</link>
            <description><![CDATA[ Hi Zenon,<br />
<br />
since there are few other passages with &quot;each&quot; in the source code and perhaps also in other modules, I think we should use a funtion to replace &quot;each()&quot; like in polyfill-each: [<a href="https://github.com/ChristiaanBye/polyfill-each" target="_blank"  rel="nofollow">github.com</a>]<br />
<br />
Copy the content of polyfill-each.php to common.php after line 72.<br />
<br />
Regards<br />
Oliver]]></description>
            <dc:creator>Oliver Riesen-Mallmann</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 24 Sep 2024 09:11:17 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,123477,162772#msg-162772</guid>
            <title>Re: Module: Topic Poll</title>
            <link>https://www.phorum.org/phorum5/read.php?62,123477,162772#msg-162772</link>
            <description><![CDATA[ Hi Zenon,<br />
<br />
I try to publish a new version of the module.<br />
<br />
Regards<br />
Oliver]]></description>
            <dc:creator>Oliver Riesen-Mallmann</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 24 Sep 2024 04:05:12 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,123477,162771#msg-162771</guid>
            <title>Re: Module: Topic Poll</title>
            <link>https://www.phorum.org/phorum5/read.php?62,123477,162771#msg-162771</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Scott Finegan</strong><br />
<br />
You can try the following.  Pretty much do it yourself.</div></blockquote>
<br />
Thanks, but if I fix my own the module will still be broken. And it is an active and useful module. And it&#039;s only this one line of code that breaks it. Everywhere else foreach() is used, so I suspect that this one instance of each() is purely accidental. So from every point of view it would be much better to have it fixed at the source.]]></description>
            <dc:creator>zenon</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 24 Sep 2024 03:40:43 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,123477,162770#msg-162770</guid>
            <title>Re: Module: Topic Poll</title>
            <link>https://www.phorum.org/phorum5/read.php?62,123477,162770#msg-162770</link>
            <description><![CDATA[ You can try the following.  Pretty much do it yourself.<br />
<br />
[<a href="https://github.com/ChristiaanBye/polyfill-each" target="_blank"  rel="nofollow">github.com</a>]<br />
<br />
[<a href="https://stackoverflow.com/questions/46492621/how-can-i-update-code-that-uses-the-deprecated-each-function" target="_blank"  rel="nofollow">stackoverflow.com</a>]<br />
<br />
[<a href="https://www.google.com/search?q=each+replacement+php" target="_blank"  rel="nofollow">www.google.com</a>]]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Mon, 23 Sep 2024 22:36:18 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,123477,162769#msg-162769</guid>
            <title>Re: Module: Topic Poll</title>
            <link>https://www.phorum.org/phorum5/read.php?62,123477,162769#msg-162769</link>
            <description><![CDATA[ (Copying this here from the <a href="https://www.phorum.org/phorum5/read.php?16,116288,162768#msg-162768" target="_blank" >wrong place</a>)<br />
<br />
Hi<br />
<br />
Moving from PHP 7.4 to 8.3,<br />
<pre class="bbcode">
[23-Sep-2024 12:31:10 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function each() in /path/to/phorum/mods/topic_poll/topic_poll.php:389
Stack trace:
#0 /path/to/phorum/common.php(1909): phorum_mod_topic_poll_read()
#1 /path/to/phorum/read.php(754): phorum_hook()
#2 {main}
  thrown in /path/to/phorum/mods/topic_poll/topic_poll.php on line 389</pre>
The offending line is<br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div><a href="http://www.php.net/list"><span class="kw3">list</span></a> <span class="br0">&#40;</span><span class="re0">$message_id</span><span class="sy0">,</span> <span class="re0">$message</span><span class="br0">&#41;</span> <span class="sy0">=</span> <a href="http://www.php.net/each"><span class="kw3">each</span></a><span class="br0">&#40;</span><span class="re0">$messages</span><span class="br0">&#41;</span><span class="sy0">;</span></pre>
and the cause is that each() was deprecated in PHP 7.2 and was removed in 8.0. <br />
<br />
I just checked 1.0.22 and it still uses each().]]></description>
            <dc:creator>zenon</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Mon, 23 Sep 2024 10:06:56 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133303,162697#msg-162697</guid>
            <title>Re: Module: Event Logging = IPV6 IP addresses truncated to 15  chars</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133303,162697#msg-162697</link>
            <description><![CDATA[ I solved my own problem. It was a client issue. My web browser was blocking them with the Ghostery extension.]]></description>
            <dc:creator>Steve H</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 19 Jul 2022 23:18:34 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133303,162696#msg-162696</guid>
            <title>Re: Module: Event Logging = IPV6 IP addresses truncated to 15  chars</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133303,162696#msg-162696</link>
            <description><![CDATA[ I am having an issue with the latest version of this module (and phorum)<br />
<br />
The small icons for Debug/Info/Warning/Error/Alert which reside in mods/event_logging/images/loglevels/ are not displaying on the &quot;view logged events&quot; and &quot;filter logged events&quot; pages.  However, if I right-click the broken links and select &quot;open image in new tab&quot; they open up fine.<br />
<br />
???]]></description>
            <dc:creator>Steve H</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 19 Jul 2022 19:58:03 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,127035,162671#msg-162671</guid>
            <title>Re: Module: HTML Purifier</title>
            <link>https://www.phorum.org/phorum5/read.php?62,127035,162671#msg-162671</link>
            <description><![CDATA[ Got some great examples here, thanks for share ! <span style="color:#FFFFFF"><a href="https://www.surveyzop.com/mcdvoice/" target="_blank"  rel="nofollow">mcdvoice con</a> <a href="https://www.surveyzop.com/tellculvers/" target="_blank"  rel="nofollow">tellculvers.com survey</a></span>]]></description>
            <dc:creator>eternalsur</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 25 Jan 2022 02:38:48 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,126835,162651#msg-162651</guid>
            <title>Re: Module: Private Message Restrictions</title>
            <link>https://www.phorum.org/phorum5/read.php?62,126835,162651#msg-162651</link>
            <description><![CDATA[ Thanks! I will give it a try.]]></description>
            <dc:creator>Terradon</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Thu, 30 Dec 2021 09:23:00 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,162622,162624#msg-162624</guid>
            <title>Re: New User Password Complexity</title>
            <link>https://www.phorum.org/phorum5/read.php?62,162622,162624#msg-162624</link>
            <description><![CDATA[ No. You would need to do it yourself.]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Wed, 20 Oct 2021 13:56:07 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,162622,162622#msg-162622</guid>
            <title>New User Password Complexity</title>
            <link>https://www.phorum.org/phorum5/read.php?62,162622,162622#msg-162622</link>
            <description><![CDATA[ Is there a module that will require strong passwords?<br />
<br />
Thanks]]></description>
            <dc:creator>herobynight</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Sat, 16 Oct 2021 18:00:10 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,123955,162537#msg-162537</guid>
            <title>Re: Module: BBcode Video</title>
            <link>https://www.phorum.org/phorum5/read.php?62,123955,162537#msg-162537</link>
            <description><![CDATA[ So, this module powered by html5 video or adobe flash player?]]></description>
            <dc:creator>zx_gamer</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Fri, 19 Mar 2021 16:44:30 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,124486,162457#msg-162457</guid>
            <title>Re: Module: Store Files on Disk</title>
            <link>https://www.phorum.org/phorum5/read.php?62,124486,162457#msg-162457</link>
            <description><![CDATA[ It works now!<br />
Not sure why, here&#039;s what I did:<br />
1. Removed all modules which were not used, from the mods directory (all modules which were at Off).<br />
2. Turned the module Off<br />
3. Turned the module back at On.<br />
<br />
Thanks for your help!]]></description>
            <dc:creator>cactux</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Fri, 12 Jun 2020 21:04:41 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,124486,162456#msg-162456</guid>
            <title>Re: Module: Store Files on Disk</title>
            <link>https://www.phorum.org/phorum5/read.php?62,124486,162456#msg-162456</link>
            <description><![CDATA[ If you turn the Store Files on Disk mod = OFF<br />
<br />
Are the files uploaded correctly?]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Fri, 12 Jun 2020 09:00:27 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,124486,162455#msg-162455</guid>
            <title>Re: Module: Store Files on Disk</title>
            <link>https://www.phorum.org/phorum5/read.php?62,124486,162455#msg-162455</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Scott Finegan</strong><br />Here is a whole thread on broken images  [<a href="https://www.phorum.org/phorum5/read.php?61,154229,page=1" target="_blank" >www.phorum.org</a>]</div></blockquote>
<br />
Thanks. I&#039;ll try turning off modules to see if there&#039;s a conflict.]]></description>
            <dc:creator>cactux</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Fri, 12 Jun 2020 02:43:20 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,124486,162454#msg-162454</guid>
            <title>Re: Module: Store Files on Disk</title>
            <link>https://www.phorum.org/phorum5/read.php?62,124486,162454#msg-162454</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Scott Finegan</strong><br />
Tidy is a Mod in the module directory.<br />
There is also a php extension tidy, which may be disabled or enabled.</div></blockquote>
<br />
They are both Off.]]></description>
            <dc:creator>cactux</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Fri, 12 Jun 2020 02:40:58 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,124486,162453#msg-162453</guid>
            <title>Re: Module: Store Files on Disk</title>
            <link>https://www.phorum.org/phorum5/read.php?62,124486,162453#msg-162453</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />For your other suggestions:<br />
&gt; Tidy off.<br />
In the Phorum admin I checked everything, did the sanity check, database integrity, everything.<br />
Is that what you meant?</div></blockquote>
<br />
Tidy is a Mod in the module directory.<br />
There is also a php extension tidy, which may be disabled or enabled.<br />
<br />
Here is a whole thread on broken images  [<a href="https://www.phorum.org/phorum5/read.php?61,154229,page=1" target="_blank" >www.phorum.org</a>]<br />
<br />
I need to dig around for how to see the header info.]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Thu, 11 Jun 2020 23:57:33 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,124486,162452#msg-162452</guid>
            <title>Re: Module: Store Files on Disk</title>
            <link>https://www.phorum.org/phorum5/read.php?62,124486,162452#msg-162452</link>
            <description><![CDATA[ Thanks Scott.<br />
<br />
<i>&gt; Try a small file 20K, see if it works.</i> <br />
Here&#039;s what I tried: uploading 5 files of different sizes, from 10KB to 200KB.<br />
<pre class="bbcode">
local	server	ratio
200102	38217	5,236
153987	29172	5,279
100429	19005	5,284
50442	9684	5,209
20179	3853	5,237
10032	1834	5,470</pre>
Each time the size is smaller, and I calculated the ratio: always 5 something. Could this be a clue?<br />
<br />
If I run the Linux command &quot;file -i&quot; on the files, I get:<br />
1. For the original files: <b>image/jpeg; charset=binary</b>. And of course I can display them on my computer.<br />
2. For the files stored on the server: <b>application/octet-stream; charset=binary</b>. And I can not open them with any software (Gimp, etc). It seems to be a binary garbage. The first chars are the same in each, but not the same than for a JPEG file.<br />
<br />
For your other suggestions:<br />
<i>&gt; Tidy off.</i><br />
In the Phorum admin I checked everything, did the sanity check, database integrity, everything.<br />
Is that what you meant?<br />
<br />
<i>&gt; mime type has to be correct on the upload, check the header.</i><br />
How do I do that? Where?<br />
<br />
<i>&gt; Be sure time zone is set correctly. (PHP and server)</i><br />
In php.ini this parameter was commented. I set it the same than the server. Still the same pb.<br />
<br />
Thanks for your help, this is driving me crazy.]]></description>
            <dc:creator>cactux</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Thu, 11 Jun 2020 16:24:36 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,124486,162451#msg-162451</guid>
            <title>Re: Module: Store Files on Disk</title>
            <link>https://www.phorum.org/phorum5/read.php?62,124486,162451#msg-162451</link>
            <description><![CDATA[ Tidy off.<br />
mime type has to be correct on the upload, check the header. <br />
Be sure time zone is set correctly. (PHP and server)<br />
Try a small file 20K, see if it works.]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Thu, 11 Jun 2020 10:12:20 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,124486,162450#msg-162450</guid>
            <title>Re: Module: Store Files on Disk</title>
            <link>https://www.phorum.org/phorum5/read.php?62,124486,162450#msg-162450</link>
            <description><![CDATA[ Hi,<br />
<br />
I am trying this module on my dev environment, and I have this problem: uploaded photos are smaller than original, and do not load. Max file size for attachments in Phorum settings is 250KB, much lower than in PHP settings (2M and 8M for post_max_size and upload_max_filesize).<br />
I tried to upload various JPG files, with size between 90KB and 240KB, the files written on disk have a size of 34KB to 47KB and they do not load.<br />
<br />
Any idea how to investigate? Thanks!]]></description>
            <dc:creator>cactux</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Wed, 10 Jun 2020 23:01:48 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,124486,162449#msg-162449</guid>
            <title>Re: Module: Store Files on Disk</title>
            <link>https://www.phorum.org/phorum5/read.php?62,124486,162449#msg-162449</link>
            <description><![CDATA[ Hi,<br />
<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>BryanB</strong><br />
How do we undo this module and revert back to having all the files stored in the database? Is there a script to force this back?</div></blockquote>
<br />
I just read the complete discussion looking for an answer to a question I have, and there&#039;s a message from Maurice that says no, this is not the goal of this module. It is a one way only.]]></description>
            <dc:creator>cactux</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Wed, 10 Jun 2020 22:58:05 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,123955,162425#msg-162425</guid>
            <title>Re: Module: BBcode Video</title>
            <link>https://www.phorum.org/phorum5/read.php?62,123955,162425#msg-162425</link>
            <description><![CDATA[ Here is the reason... from bbcode_video.php<br />
<br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div>   <span class="co1">// Handle unknown videos. Turn them into standard URLs.</span>
    <span class="re0">$search</span><span class="br0">&#91;</span><span class="br0">&#93;</span>  <span class="sy0">=</span> <span class="st0">&quot;/\[video\](.+)\[\/video\]/is&quot;</span><span class="sy0">;</span>
    <span class="re0">$replace</span><span class="br0">&#91;</span><span class="br0">&#93;</span> <span class="sy0">=</span> <span class="st0">&quot;video: [url]<span class="es4">$1</span>[/url]&quot;</span><span class="sy0">;</span></pre>
<br />
That said, you are on your own to change it to something that works.<br />
The code above it has several examples.]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 31 Mar 2020 13:09:12 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,123955,162422#msg-162422</guid>
            <title>Re: Module: BBcode Video</title>
            <link>https://www.phorum.org/phorum5/read.php?62,123955,162422#msg-162422</link>
            <description><![CDATA[ Well, if anyone is alive ?<br />
<br />
The video displays perfectly when I link from you tube, I just dont care.<br />
<br />
But when I want to dispaly my video it just shows the link.<br />
<br />
How come it refuses to generate the simple code to invoke the player if the url is not youtube or a commercial provider ?<br />
<br />
<a href="https://de-pascale.pagesperso-orange.fr/Pages/CreaUtil.m4v" target="_blank"  rel="nofollow">my video</a><br />
<br />
it just shows video : [ <a href="https://de-pascale.pagesperso-orange.fr/Pages/CreaUtil.m4v" target="_blank"  rel="nofollow">de-pascale.pagesperso-orange.fr</a> ]]]></description>
            <dc:creator>volny</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Mon, 30 Mar 2020 18:27:26 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,162418,162418#msg-162418</guid>
            <title>Link to Autogenerated List of Modules</title>
            <link>https://www.phorum.org/phorum5/read.php?62,162418,162418#msg-162418</link>
            <description><![CDATA[ <a href="https://www.phorum.org/modules.php" target="_blank"  rel="nofollow">https://www.phorum.org/modules.php</a>]]></description>
            <dc:creator>Scott Finegan</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Wed, 25 Mar 2020 19:01:38 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,124486,162388#msg-162388</guid>
            <title>Re: Module: Store Files on Disk</title>
            <link>https://www.phorum.org/phorum5/read.php?62,124486,162388#msg-162388</link>
            <description><![CDATA[ How do we undo/revert this module back so the files are stored in the database rather than indexed and stored on the disk?]]></description>
            <dc:creator>BryanB</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Thu, 28 Nov 2019 08:49:42 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,124486,162387#msg-162387</guid>
            <title>Re: Module: Store Files on Disk</title>
            <link>https://www.phorum.org/phorum5/read.php?62,124486,162387#msg-162387</link>
            <description><![CDATA[ How do we undo this module and revert back to having all the files stored in the database? Is there a script to force this back?]]></description>
            <dc:creator>BryanB</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Thu, 28 Nov 2019 00:18:56 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,133957,162383#msg-162383</guid>
            <title>Re: Module: Post Previews</title>
            <link>https://www.phorum.org/phorum5/read.php?62,133957,162383#msg-162383</link>
            <description><![CDATA[ Hi people! Module Post Previews has been working fine for years, however recently I&#039;ve converted to https and now it&#039;s off. <br />
<br />
I&#039;ve checked error message, it gives out following, please see attachment.<br />
<br />
Is there any way to make it work again?]]></description>
            <dc:creator>Maxim_A</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 05 Nov 2019 05:10:17 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,127363,162378#msg-162378</guid>
            <title>Re: Module: BBcode GeSHi (code syntax highlighting)</title>
            <link>https://www.phorum.org/phorum5/read.php?62,127363,162378#msg-162378</link>
            <description><![CDATA[ I have a bit of a problem. I updated Phorum to the latest version. I first used the older version of Ghesi, then 1.0.5, then the latest available 1.0.9. but the problem does not go away. When inserting code (any language) containing a single quote, something strange happens when the code is rendered - a semi-colon is generated after the quote. I say &quot;generated&quot; because the db entry is fine.<br />
<br />
As an example:<br />
<br />
<pre class="php bbcode_geshi"><div class="head">Language: PHP</div><span class="kw1">echo</span> <span class="st0">&quot;&lt;select name=';competition';&gt;&quot;</span><span class="sy0">;</span>
<span class="kw1">while</span><span class="br0">&#40;</span><a href="http://www.php.net/list"><span class="kw3">list</span></a><span class="br0">&#40;</span><span class="re0">$competitionName</span><span class="br0">&#41;</span> <span class="sy0">=</span> <span class="re0">$result</span><span class="sy0">-&gt;</span><span class="me1">fetch_row</span><span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span>
<span class="kw1">echo</span> <span class="st0">&quot;&lt;option value=';<span class="es4">$competitionName</span>';&gt;&quot;</span><span class="sy0">;</span>
<span class="co1">//another example</span>
<span class="kw1">echo</span> <span class="re0">$there</span> <span class="sy0">.</span> <span class="st_h">';and'</span><span class="sy0">;</span> <span class="sy0">.</span> <span class="re0">$here</span><span class="sy0">;</span></pre>
<br />
Note I did not add the semi-colons appearing here above -  I submitted the code without the semi-colons. Before I go to Ghesi, am I missing something?]]></description>
            <dc:creator>Thomas_1</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Mon, 14 Oct 2019 04:44:59 -0400</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/phorum5/read.php?62,141836,162302#msg-162302</guid>
            <title>Re: Module: Spam Hurdles 2, release candidate - testers welcome</title>
            <link>https://www.phorum.org/phorum5/read.php?62,141836,162302#msg-162302</link>
            <description><![CDATA[ I posted a fix to make Spam Hurdles work with the latest version of reCAPTCHA here:<br />
<br />
[<a href="https://www.phorum.org/phorum5/read.php?61,151897,162301#msg-162301" target="_blank" >www.phorum.org</a>]]]></description>
            <dc:creator>Xiphias</dc:creator>
            <category>5.2 Modules/Add-Ons</category>
            <pubDate>Tue, 16 Apr 2019 21:25:52 -0400</pubDate>
        </item>
    </channel>
</rss>
