<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[MediaWiki]]></title><description><![CDATA[MediaWiki]]></description><link>https://forum.cloudron.io/category/80</link><generator>RSS for Node</generator><lastBuildDate>Thu, 10 Sep 2026 01:27:56 GMT</lastBuildDate><atom:link href="https://forum.cloudron.io/category/80.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 15 May 2026 08:33:02 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Use scheduler to run the job queue]]></title><description><![CDATA[Beaut, thanks (again) @james that was very helpful.
]]></description><link>https://forum.cloudron.io/topic/15512/use-scheduler-to-run-the-job-queue</link><guid isPermaLink="true">https://forum.cloudron.io/topic/15512/use-scheduler-to-run-the-job-queue</guid><dc:creator><![CDATA[dennisj]]></dc:creator><pubDate>Fri, 15 May 2026 08:33:02 GMT</pubDate></item><item><title><![CDATA[Installing Semantic MediaWiki via Composer]]></title><description><![CDATA[Hey @james and @joseph. Thank you for your quick replies! I'm going to try out this technique with LAMP first and report back, and if that doesn't work than I may try creating the SMW Cloudron App.
]]></description><link>https://forum.cloudron.io/topic/15085/installing-semantic-mediawiki-via-composer</link><guid isPermaLink="true">https://forum.cloudron.io/topic/15085/installing-semantic-mediawiki-via-composer</guid><dc:creator><![CDATA[kadallah]]></dc:creator><pubDate>Tue, 17 Feb 2026 01:08:56 GMT</pubDate></item><item><title><![CDATA[How does cloudron handle updates to extra, user installed extensions?]]></title><description><![CDATA[Thanks James and Shane. 
]]></description><link>https://forum.cloudron.io/topic/14489/how-does-cloudron-handle-updates-to-extra-user-installed-extensions</link><guid isPermaLink="true">https://forum.cloudron.io/topic/14489/how-does-cloudron-handle-updates-to-extra-user-installed-extensions</guid><dc:creator><![CDATA[dennisj]]></dc:creator><pubDate>Thu, 30 Oct 2025 23:16:31 GMT</pubDate></item><item><title><![CDATA[`Internal Error` ... `Fatal exception of type "TypeError"`]]></title><description><![CDATA[Hello @da5nsy and welcome to the Cloudron Forum
Glad to see you where already able to fix your problem.
]]></description><link>https://forum.cloudron.io/topic/14394/internal-error-...-fatal-exception-of-type-typeerror</link><guid isPermaLink="true">https://forum.cloudron.io/topic/14394/internal-error-...-fatal-exception-of-type-typeerror</guid><dc:creator><![CDATA[james]]></dc:creator><pubDate>Sat, 11 Oct 2025 00:46:51 GMT</pubDate></item><item><title><![CDATA[Changing entry point URLs]]></title><description><![CDATA[Hello @mononym
I have investigated this issue and found the following.
According to my understanding after reading the documentation the LocalSettings.php should include the following:
# Set the script path to root
$wgScriptPath = "";

# Set the article path for pretty URLs
$wgArticlePath = "/$1";

# If you're using a different entry point than index.php
$wgScript = "/index.php";

# For resource loading
$wgResourceBasePath = $wgScriptPath;

Just for good measure I also cleared the Main Page cache with:
php maintenance/run.php purgePage &lt;&lt;&lt; "Main Page"

But sadly, this did also not work.
So the only thing now breaking it could be the apache2 config and there it is.
By default (not editable) - https://git.cloudron.io/packages/mediawiki-app/-/blob/master/apache/mediawiki.conf?ref_type=heads:
ServerName %{HTTP_HOST}

&lt;VirtualHost *:8000&gt;
    DocumentRoot /app/code

    LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %&gt;s %b \"%{Referer}i\" \"%{User-Agent}i\"" proxy
    CustomLog "|/bin/cat" proxy
    ErrorLog "|/bin/cat"

    # https://www.mediawiki.org/wiki/Manual:Security
    php_flag register_globals off

    ## http://www.mediawiki.org/wiki/Manual:Short_URL/Apache
    RewriteEngine On
    RewriteRule ^/?wiki(/.*)?$ %{DOCUMENT_ROOT}/index.php [L]
    RewriteRule ^/*$ %{DOCUMENT_ROOT}/index.php [L]

    &lt;Directory /app/code&gt;
        Options +FollowSymLinks
        AllowOverride All
        Require all granted
    &lt;/Directory&gt;

    # some directories must be protected
    # images/ still has to be accessible since mw references it directly
    &lt;Directory /app/code/images&gt;
        Options -FollowSymLinks
        AllowOverride None
        &lt;IfModule mod_php7.c&gt;
            php_admin_flag engine off
        &lt;/IfModule&gt;
    &lt;/Directory&gt;
&lt;/VirtualHost&gt;

I put the app into recovery mode and edited the Apache2 site file and changed the rewrite to the following:
    RewriteEngine On
    RewriteCond %{REQUEST_URI} !^/rest\.php
    RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
    RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
    RewriteRule ^(.*)$ %{DOCUMENT_ROOT}/index.php [L]

and started the app with /app/pkg/start.sh and got a working MediaWiki under sub.DOMAIN.tld/Main_Page.

To make this usable for you and everyone else, an app update would be needed where users, like you, could also upload a custom Apache2 site setting file that will be included to overwrite the default one.
I am converting / hijacking this topic into a feature request.
]]></description><link>https://forum.cloudron.io/topic/14096/changing-entry-point-urls</link><guid isPermaLink="true">https://forum.cloudron.io/topic/14096/changing-entry-point-urls</guid><dc:creator><![CDATA[james]]></dc:creator><pubDate>Sun, 20 Jul 2025 00:30:29 GMT</pubDate></item><item><title><![CDATA[Help Needed: OpenID "Sign In with" Text]]></title><description><![CDATA[Just to keep things updated here, we will add a per-Cloudron configuration variable in the next Cloudron release to give the OpenID provider a customizable name. Then the apps like Mediawiki which support that kind of customization will pick this up by default.
]]></description><link>https://forum.cloudron.io/topic/12229/help-needed-openid-sign-in-with-text</link><guid isPermaLink="true">https://forum.cloudron.io/topic/12229/help-needed-openid-sign-in-with-text</guid><dc:creator><![CDATA[nebulon]]></dc:creator><pubDate>Mon, 05 Aug 2024 17:48:00 GMT</pubDate></item><item><title><![CDATA[Help Needed: Installing VisualEditor extension.]]></title><description><![CDATA[@jtippetts I have to check your instance to see why it's not working. Can you write to us at support@cloudron.io ?
]]></description><link>https://forum.cloudron.io/topic/6879/help-needed-installing-visualeditor-extension</link><guid isPermaLink="true">https://forum.cloudron.io/topic/6879/help-needed-installing-visualeditor-extension</guid><dc:creator><![CDATA[girish]]></dc:creator><pubDate>Mon, 25 Apr 2022 23:13:21 GMT</pubDate></item><item><title><![CDATA[How do I install extensions?]]></title><description><![CDATA[@SamGreenwood to install on the root domain, you can just leave the subdomain field empty to have it moved there.
]]></description><link>https://forum.cloudron.io/topic/6811/how-do-i-install-extensions</link><guid isPermaLink="true">https://forum.cloudron.io/topic/6811/how-do-i-install-extensions</guid><dc:creator><![CDATA[nebulon]]></dc:creator><pubDate>Tue, 12 Apr 2022 22:32:55 GMT</pubDate></item><item><title><![CDATA[MediaWiki - Package Updates]]></title><description><![CDATA[[3.7.0]

Update mediawiki to 1.46.0
Full Changelog

]]></description><link>https://forum.cloudron.io/topic/2591/mediawiki-package-updates</link><guid isPermaLink="true">https://forum.cloudron.io/topic/2591/mediawiki-package-updates</guid><dc:creator><![CDATA[Package Updates]]></dc:creator><pubDate>Sat, 30 May 2020 03:53:13 GMT</pubDate></item></channel></rss>