I'm not sure if the issue is that they aren't allowed. It seems more like the server detects the static file extension, and transfers it as a cookie-less request.
I'll make the file extension optional (by replacing the dot with a space replacement) for the next build. In the mean time, you can avoid this issue in 2 steps.
1. Create a new plugin.
Product: VaultWiki
Hook Location: vault_url_encode
Execute Order: 5
Title: Fix for Cloud platform
PHP Code:
Code:
if (IMAGE_SPACE AND $namespaceid == IMAGE_SPACE)
{
if ($this->setcache["$langid"] == 'U')
{
$replacementlist['.'] = ' ';
}
else
{
$allowstring = str_replace('\.', '', $allowstring);
}
}
2. Go to AdminCP > Namespace Manager. In the Controls for "Image", click "Rebuild". This should remove the dot from the page URLs to prevent it from being detected as a file extension.
Bookmarks