I upgraded all my Joomla sites from 1.0.10 to 1.0.11 and I'm now getting "You are not authorized to view this resource" errors when clicking Preview while editing Static Content items. Clicking Preview on non-Static Content items works; I only receive the error when clicking Preview for Static Content items. Verified on multiple Joomla 1.0.11 sites (
http://www.trunkmonkey.com,
http://www.trunkmonkeyracing.com,
http://www.clutchdrop.com).
No errors are getting generated in access_log or error_log and I have not yet modified .htaccess to include the new rewrite rules to block out some common exploits.
Any ideas?
vhost.conf file for my Plesk vhost (was working before upgrade)Code:
[root@colo1 httpdocs]# cat ~trunkmonkeyracin/conf/vhost.conf
<Directory /var/www/vhosts/trunkmonkeyracing.com/httpdocs>
php_admin_value open_basedir "/var/www/vhosts/trunkmonkeyracing.com/httpdocs:/var/www/vhosts/trunkmonkeyracing.com/var/tmp:/tmp:/var/tmp"
php_admin_value session.save_path "/var/www/vhosts/trunkmonkeyracing.com/var/tmp"
php_admin_value upload_tmp_dir "/var/www/vhosts/trunkmonkeyracing.com/var/tmp"
</Directory>
.htaccess file for http://www.trunkmonkeyracing.com (was working before upgrade)Code:
# Web Configuration
RewriteEngine on
Options FollowSymLinks
RewriteCond %{HTTP_HOST} !^www.trunkmonkeyracing.com$ [NC]
RewriteRule (.*) http://www.trunkmonkeyracing.com/$1 [R=permanent,L]
RewriteRule ^component/option,com_akostaff http://www.trunkmonkeyracing.com/content/view/129/83/ [R=permanent,L]
RewriteRule ^content/blogcategory/21/60/ http://www.trunkmonkeyracing.com/content/blogcategory/21/79/ [R=permanent,L]
# Joomla Configuration
#
# http://forum.joomla.org/index.php/topic,31813.msg179443.html
RewriteRule ^(content/|component/) index.php
