
(2015-10-07, 08:49 AM)SentoWeb Wrote: This shouldn't be admin panel related, looks like .htaccess is blocking access to https://pavili0n.com/images/pavili0n1.png and some other files.
Can you post the contents of your .htaccess files, the one in mybb root and the one if the images directory, if any? Can you verify that the files are there and have read permissions?
(2015-10-07, 08:49 AM)sparkks Wrote: Images on the entire forum, or just the admin panel?
It's most likely just your cache. Are you using Cloudflare? If so, purge your cache. If not, clear your browsers cache.
Edit: just checked your site (don't normally check sites due to security reasons..) but looks like SentoWeb is correct. I'm getting a Forbidden Error when trying to view images.
Here is the contents of my .htaccess:
RewriteEngine on
# Some hosts require RewriteBase to make RewriteRules work.
RewriteBase /
# Google SEO workaround for search.php highlights:
# Make this rule the first rewrite rule in your .htaccess!
RewriteRule ^([^&]*)&(.*)$ https://pavili0n.com/$1?$2 [L,QSA,R=301]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Google SEO Sitemap:
RewriteRule ^sitemap\-([^./]+)\.xml$ misc.php?google_seo_sitemap=$1 [L,QSA,NC]
# Google SEO URL Forums:
RewriteRule ^Forum\-([^./]+)$ forumdisplay.php?google_seo_forum=$1 [L,QSA,NC]
# Google SEO URL Threads:
RewriteRule ^Thread\-([^./]+)$ showthread.php?google_seo_thread=$1 [L,QSA,NC]
# Google SEO URL Announcements:
RewriteRule ^Announcement\-([^./]+)$ announcements.php?google_seo_announcement=$1 [L,QSA,NC]
# Google SEO URL Users:
RewriteRule ^User\-([^./]+)$ member.php?action=profile&google_seo_user=$1 [L,QSA,NC]
# Google SEO URL Calendars:
RewriteRule ^Calendar\-([^./]+)$ calendar.php?google_seo_calendar=$1 [L,QSA,NC]
# Google SEO URL Events:
RewriteRule ^Event\-([^./]+)$ calendar.php?action=event&google_seo_event=$1 [L,QSA,NC]
RewriteCond %{HTTP_REFERER} !^http://pavili0n.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://pavili0n.com$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.pavili0n.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.pavili0n.com$ [NC]
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]