Any thoughts on what might be causing this, pegasus? I also updated the bug/issue report with a new discovery: I can include the image just fine using the IMAGE tag in posts and wiki articles, but viewing the actual Image wiki page returns a not-logged-in situation. As a reference, here are my .htaccess files (since it's been suggested this might be an .htaccess issue).
domain.com/.htaccess:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^aelyria\.com [nc]
RewriteRule (.*) http://www.aelyria.com/$1 [R=301,L]
RewriteBase /
RewriteRule ^forums/showwiki.php?title=(.*)$ wiki/$1 [L,R=301]
RewriteRule ^wiki/Default:(.*)$ wiki/$1 [L,R=301]
RewriteRule ^wiki$ wiki/ [L,QSA,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^wiki/(.*)?$ forums/showwiki_proxy.php [L,QSA]
domain.com/forums/.htaccess:
Code:
RewriteEngine On
RewriteBase /forums/
RewriteRule ^wiki.php$ showwiki.php [L,QSA]
RewriteRule ^showwiki.php?title=(.*)$ http://www.aelyria.com/wiki/$1 [L,R=301]
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron)
RewriteCond %{REQUEST_URI} !showwiki_proxy.php
RewriteRule ^((archive/)?(.*\.php(/.*)?)?)$ vbseo.php [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]
Bookmarks