<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in dokuwiki.php</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>19d5ba27782e35d8c5d7e3db41e9834c96868bbb - rename trustedproxy option to trustedproxies</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#19d5ba27782e35d8c5d7e3db41e9834c96868bbb</link>
        <description>rename trustedproxy option to trustedproxiesWe use a new format (array instead of regex) and need a sure way torecognize it. Zebra&apos;s approach would not have survived the editing viaconfig manager.As a side effect this also introduces a new languange string, which isgood because the old one did no longer apply.

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Thu, 09 Jan 2025 15:17:44 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>2aba9aed6bcd4e96ff6988f6d1ff730503a2c6d5 - Merge branch &apos;pr/3815&apos; into clientIP</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#2aba9aed6bcd4e96ff6988f6d1ff730503a2c6d5</link>
        <description>Merge branch &apos;pr/3815&apos; into clientIP* pr/3815:  Move IP functions into a class  Factor out IP address functions; all proxies must be trusted  Fix clientIP() returning the wrong address

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Thu, 09 Jan 2025 14:42:15 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>df9e4a18efc53e5e56b5d6771dc5d285cdf6f15e - automatically prune old logs</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#df9e4a18efc53e5e56b5d6771dc5d285cdf6f15e</link>
        <description>automatically prune old logsThis adds a new configuration that allows to define how many logfilesper facility should be kept. Old files are pruned daily via the taskrunner.

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Fri, 22 Dec 2023 18:30:31 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>486f82fcdeb063c787481ca7ff91976dc6961f85 - add setting to define the samesite cookie policy</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#486f82fcdeb063c787481ca7ff91976dc6961f85</link>
        <description>add setting to define the samesite cookie policyAs mentioned inhttps://github.com/dokuwiki/dokuwiki/pull/3994#pullrequestreview-1473052428there might be occasions when users might want to change the policy to astricter one or the somewhat more lenient Lax implementation of currentbrowsers.

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Mon, 21 Aug 2023 16:17:26 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>9612843ec5118c711d65d7aa3dc9a9ec569b237b - Fixed some typos</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#9612843ec5118c711d65d7aa3dc9a9ec569b237b</link>
        <description>Fixed some typos

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Mon, 05 Dec 2022 19:48:46 +0000</pubDate>
        <dc:creator>Andrew Dawes &lt;andrewsdawes@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>c7f6b7b7a4e54be385b5ea54ae0fe82abf57997b - Move IP functions into a class</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#c7f6b7b7a4e54be385b5ea54ae0fe82abf57997b</link>
        <description>Move IP functions into a class

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Wed, 26 Oct 2022 18:26:58 +0000</pubDate>
        <dc:creator>Zebra North &lt;mrzebra@mrzebra.co.uk&gt;</dc:creator>
    </item>
<item>
        <title>bbe6b3a78bfaae7c3435ed2f909108be642b4684 - Remove the htmlok and phpok embedding options</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#bbe6b3a78bfaae7c3435ed2f909108be642b4684</link>
        <description>Remove the htmlok and phpok embedding optionsBoth options have grave security implications and novice users seem toignore advice about them. In the last decades I never came across a wikithat had legitimate use of these options.If someone needs the functionality, it can easily be added back using aplugin. But I prefer to give users one less option to shoot themselvesin the foot.Removal of the translations for the config strings can follow after thishas been merged.

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Wed, 12 Oct 2022 11:22:27 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>be6462f4bb18e8b92e47ced9cfc4141997d0687a - log warnings to error log</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#be6462f4bb18e8b92e47ced9cfc4141997d0687a</link>
        <description>log warnings to error logThis introduces an error handler that will log warnings, including astack trace in the error log. This should help plugin and core authors withidentifying cases of uninitilized variables in PHP8+ environments.A feature flag (default off) will let users temporarily disable thedisplay of warnings in the frontend. This should allow the usage of notyet upgraded plugins in many cases. In the future the flag can beremoved again.

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Sat, 13 Aug 2022 11:18:50 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>3df364a338f91f787f996b83392bc95fe38abc2c - CORS on XMLRMPC API</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#3df364a338f91f787f996b83392bc95fe38abc2c</link>
        <description>CORS on XMLRMPC APIThis allows setting a CORS header to make the xmlrpc API accessible fromJavaScript clients directly in the browser.

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Mon, 25 Apr 2022 07:55:08 +0000</pubDate>
        <dc:creator>Timo Richter &lt;timo.richter@richter-leiterplatten.de&gt;</dc:creator>
    </item>
<item>
        <title>d8ab874693a369332dbbecf425e5e612fb1095a6 - Revert &quot;Merge pull request #3039 from takuy/video-attributes&quot;</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#d8ab874693a369332dbbecf425e5e612fb1095a6</link>
        <description>Revert &quot;Merge pull request #3039 from takuy/video-attributes&quot;This reverts commit 408d79f78505248f9ccb44bd2561cedc250ce5a1, reversingchanges made to b7c67f83bd81eff3186e4ebd2d9e86cd2c32468d.

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Sun, 26 Dec 2021 21:56:06 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>408d79f78505248f9ccb44bd2561cedc250ce5a1 - Merge pull request #3039 from takuy/video-attributes</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#408d79f78505248f9ccb44bd2561cedc250ce5a1</link>
        <description>Merge pull request #3039 from takuy/video-attributesAdd handling for video embed attributes

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Mon, 20 Dec 2021 20:52:47 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>cad4fbf6e21bd4a053f1f42b9e40c74f1cfaeab6 - added logging configuration</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#cad4fbf6e21bd4a053f1f42b9e40c74f1cfaeab6</link>
        <description>added logging configurationLog facitlities can now be disabled. By default only debug is disabled.It might make sense to by default disable deprecated as well?Debug logging is now independend of the allowdebug method. allowdebugwas often used in two ways: for displaying errors directly to the userand for logging to the debug log. Now it only controls the former.

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Thu, 13 Aug 2020 18:28:52 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>4a572c5a7657d97b8c999207a2717f13218229f3 - add options &amp; defaults to config, no* counterparts</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#4a572c5a7657d97b8c999207a2717f13218229f3</link>
        <description>add options &amp; defaults to config, no* counterparts

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Mon, 06 Apr 2020 02:52:52 +0000</pubDate>
        <dc:creator>Sam &lt;1631095+takuy@users.noreply.github.com&gt;</dc:creator>
    </item>
<item>
        <title>7b299f22af679ba69fe0addbd6aaa8b37deffbac - Add option rss_show_deleted</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#7b299f22af679ba69fe0addbd6aaa8b37deffbac</link>
        <description>Add option rss_show_deleted

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Thu, 21 Sep 2017 22:40:56 +0000</pubDate>
        <dc:creator>Aur&#233;lien Martin &lt;01aurelien@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>fc6b11d22a0ccb44138fa4b829eeb62fcb65e534 - Add feature flag for deferred javascript</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#fc6b11d22a0ccb44138fa4b829eeb62fcb65e534</link>
        <description>Add feature flag for deferred javascriptThis adds a feature flag for the jQuery and main-js requests added in #2786 and #2958. This adds only a single feature flag since deferringjQuery without deferring the main javascript request is likely to causeerrors and confusion.The feature flag defaults to &quot;on&quot; as this should be unproblematic exceptfor a few plugins. Also, with this flag being on by default, it shouldsee more usage and is more likely to uncover existing issues.This feature flag should be removed once this feature is deemed safe.

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Sun, 26 Jan 2020 18:37:26 +0000</pubDate>
        <dc:creator>Michael Gro&#223;e &lt;mic.grosse@googlemail.com&gt;</dc:creator>
    </item>
<item>
        <title>9ec1015a9efcdac85c2412ac998c4191fd6d5bbd - change default of passcrypt to bcrypt #2936</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#9ec1015a9efcdac85c2412ac998c4191fd6d5bbd</link>
        <description>change default of passcrypt to bcrypt #2936

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Wed, 11 Dec 2019 16:05:51 +0000</pubDate>
        <dc:creator>Phy &lt;git@phy25.com&gt;</dc:creator>
    </item>
<item>
        <title>925105e82bbaf10d0b6330b81350f14a5a176eb4 - clientIP: add trustedproxy, return first untrusted IP instead of the last one</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#925105e82bbaf10d0b6330b81350f14a5a176eb4</link>
        <description>clientIP: add trustedproxy, return first untrusted IP instead of the last oneThis fixes #2828, where malicious clients passed in customized HTTP header to keep its IP address off records.This is inspired by Sympony&apos;s Request::setTrustedProxies, but I don&apos;t want to implement everything including IP CIDR matching (IPv4 + IPv6), so I decided to reuse the local IP checker in place powered by regexp. Now admins can customize this &quot;local&quot; (trusted) proxy list using $conf[&apos;trustedproxy&apos;], and by default it will allow any local IPs.If in the future there is a need to implement array-based CIDR matching, $conf[&apos;trustedproxies&apos;] can be used for the new config name.

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Mon, 21 Oct 2019 00:31:40 +0000</pubDate>
        <dc:creator>Phy &lt;git@phy25.com&gt;</dc:creator>
    </item>
<item>
        <title>aa8728f884233aad6baaaba701da1fb6ad4c3a6b - add UGC hint</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#aa8728f884233aad6baaaba701da1fb6ad4c3a6b</link>
        <description>add UGC hint

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Thu, 12 Sep 2019 19:05:51 +0000</pubDate>
        <dc:creator>StarArmy &lt;stararmy@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>160b2db8392ff345cc66076f657c4caf455b90db - conf: remoteuser doc inprovement</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#160b2db8392ff345cc66076f657c4caf455b90db</link>
        <description>conf: remoteuser doc inprovement

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Wed, 02 Jan 2019 14:45:48 +0000</pubDate>
        <dc:creator>Elan Ruusam&#228;e &lt;glen@pld-linux.org&gt;</dc:creator>
    </item>
<item>
        <title>fe227084a6df41eda1ccb53480fbc676e6d3f370 - removed safemode hack</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/conf/dokuwiki.php#fe227084a6df41eda1ccb53480fbc676e6d3f370</link>
        <description>removed safemode hackSafemode has been removed in PHP 5.4.0. We finally no longer need todeal with this insanity.

            List of files:
            /dokuwiki/conf/dokuwiki.php</description>
        <pubDate>Thu, 07 Jun 2018 15:24:43 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;gohr@cosmocode.de&gt;</dc:creator>
    </item>
</channel>
</rss>
