mirror of
https://github.com/opensolutions/ViMbAdmin.git
synced 2026-04-26 08:45:54 +03:00
[GH-ISSUE #120] problem with apache 2.4 installation #92
Labels
No labels
bug
feature
feature
improvement
improvement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ViMbAdmin-opensolutions#92
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @hboumedane on GitHub (Nov 17, 2014).
Original GitHub issue: https://github.com/opensolutions/ViMbAdmin/issues/120
I'm having this error when I try to access my vimbadmin installation
Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
here my virtual host for apache 2.4 and my .htaccess
############## .htaccess
SetEnv APPLICATION_ENV production
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.$ - [NC,L]
RewriteRule ^.$ /vimbadmin/index.php [NC,L]
############ virtual host
<VirtualHost *:80>
ServerName mail-server02
ServerAdmin webmaster
<Directory /var/www/vimbadmin/public>
Options FollowSymLinks
AllowOverride None
any idea about this error ??
@barryo commented on GitHub (Nov 17, 2014):
This is really a mailing list question, not a bug report.
Can you clean up your config above as it's difficult to read as is.
@hboumedane commented on GitHub (Nov 17, 2014):
sorry i didn't notice that i'm in mailing list , anyway her the config 👍
#################### .htaccess
SetEnv APPLICATION_ENV production
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.$ - [NC,L]
RewriteRule ^.$ /vimbadmin/index.php [NC,L]
#######################################
and here my virtual host config file 👍
########################### virtual host ###################################
VirtualHost *:80
ServerName mail-server02
ServerAdmin webmaster
VirtualHost
##############################################################################
@barryo commented on GitHub (Nov 17, 2014):
.htaccessfile to just:@hboumedane commented on GitHub (Nov 17, 2014):
thanks it's working fine now