
Originally Posted by
bohan36
I installed SSU and it worked great this time! The only minor issue I ran into was for a while I was getting "page could not be found" but you warned me about the delay after modifying the .htaccess file so I gave it an hour and it worked beautifully!
It looks like I spoke a little too soon. I hadn't checked at the time, but after my changes to the .htaccess file applied I'm unable to access the Admin portal. It gives me an error "Firefox has detected that the server is redirecting the request for this address in a way that will never complete."
I had been working through another problem with the Admin portal and the person who was assisting me suggested it could be caused by my .htaccess file. After he looked over them he suggested the following line was giving me an issue.
Code:
RewriteRule ^(.+) index.php?/$1 [E=VAR1:$1,QSA,L]
Is there any way you could take a look and see if this is my cause? Here are my .htaccess files:
/html/.htaccess
Code:
#### BOF SSU
Options +FollowSymLinks -MultiViews
RewriteEngine On
# Make sure to change "test_site" to the subfolder you install ZC. If you use root folder, change to: RewriteBase /
RewriteBase /
# Deny access from .htaccess
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{SCRIPT_FILENAME} -f [OR]
RewriteCond %{SCRIPT_FILENAME} -d
RewriteRule .* - [L]
RewriteRule ^(.+) index.php?/$1 [E=VAR1:$1,QSA,L]
#### EOF SSU
/html/admin/.htaccess
Code:
# $Id: .htaccess 1105 2005-04-04 22:05:35Z birdbrain $
#
# This is used with Apache WebServers
#
# For this to work, you must include the parameter 'Options' to
# the AllowOverride configuration
#
# Example:
#
# <Directory "/usr/local/apache/htdocs">
# AllowOverride Options
# </Directory>
#
# 'All' with also work. (This configuration is in the
# apache/conf/httpd.conf file)
# The following makes adjustments to the SSL protocol for Internet
# Explorer browsers
<IfModule mod_setenvif.c>
<IfDefine SSL>
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
</IfDefine>
</IfModule>
# Fix certain PHP values
#<IfModule mod_php4.c>
# php_value session.use_trans_sid 0
# php_value register_globals 1
#</IfModule>
# to turn off register_globals
# php_value register_globals 0
Bookmarks