Announcement

Collapse
No announcement yet.

You need to enable JavaScript to access the Open-Xchange Server.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • You need to enable JavaScript to access the Open-Xchange Server.

    Hello together,

    I tried to install open xchange with this tutorial: http://oxpedia.org/wiki/index.php?ti...igure_services

    Mostly its working, but somewhere I did a mistake.
    If I try to open the webinterface, it showes:

    You need to enable JavaScript to access the Open-Xchange Server.

    Für den Zugriff auf den Open-Xchange Server müssen Sie JavaScript aktivieren.
    This is my virtual host:
    Code:
    <VirtualHost *:80>
    	ServerAdmin webmaster@localhost
    	ServerName domain.com
    	DocumentRoot /var/www/
    	<Directory />
    		Options FollowSymLinks
    		AllowOverride None
    	</Directory>
    	<Directory /var/www/>
    		AllowOverride None
    		Order allow,deny
    		allow from all
    		RedirectMatch ^/$ /ox6/
                   Options +FollowSymLinks +SymLinksIfOwnerMatch
    	</Directory>
    
    	 # deflate
    	AddOutputFilterByType DEFLATE text/html text/plain text/javascript application/javascript text/css text/xml application/xml text/x-js application/x-javascript
    
    	# pre-compressed files
    	AddType text/javascript .jsz
    	AddType text/css .cssz
    	AddType text/xml .xmlz
            AddType text/plain .po
    	
    	AddEncoding gzip .jsz .cssz .xmlz
    	SetEnvIf Request_URI "\.(jsz|cssz|xmlz)$" no-gzip
    	
    	ExpiresActive On
    	
    	<Location /ox6>
    	        # Expires (via ExpiresByType to override global settings)
    	        ExpiresByType image/gif "access plus 6 months"
    	        ExpiresByType image/png "access plus 6 months"
    	        ExpiresByType image/jpg "access plus 6 months"
    	        ExpiresByType image/jpeg "access plus 6 months"
    	        ExpiresByType text/css "access plus 6 months"
    	        ExpiresByType text/html "access plus 6 months"
    	        ExpiresByType text/xml "access plus 6 months"
    	        ExpiresByType text/javascript "access plus 6 months"
    	        ExpiresByType text/x-js "access plus 6 months"
    	        ExpiresByType application/x-javascript "access plus 6 months"
    	        ExpiresDefault "access plus 6 months"
    	        Header append Cache-Control "private"
    	        Header unset Last-Modified
    	        Header unset Vary
    	        # Strip version
    	        RewriteEngine On
    	        RewriteRule v=\w+/(.+) $1 [L]
    	        # Turn off ETag
    	        Header unset ETag
    	        FileETag None
    	</Location>
    	
    	<Location /ox6/ox.html>
    	        ExpiresByType text/html "now"
    	        ExpiresDefault "now"
    	        Header unset Last-Modified
    	        Header set Cache-Control "no-store, no-cache, must-revalidate, post-check=0, pre-check=0"
    	        # Turn off ETag
    	        Header unset ETag
    	        FileETag None
    	</Location>
    	
    	<Location /ox6/index.html>
    	        ExpiresByType text/html "now"
    	        ExpiresDefault "now"
    	        Header unset Last-Modified
    	        Header set Cache-Control "no-store, no-cache, must-revalidate, post-check=0, pre-check=0"
    	        # Turn off ETag
    	        Header unset ETag
    	        FileETag None
    	</Location>
    
    	ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    	<Directory "/usr/lib/cgi-bin">
    		AllowOverride None
    		Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
    		Order allow,deny
    		Allow from all
    	</Directory>
    
    	ErrorLog ${APACHE_LOG_DIR}/error.log
    
    	# Possible values include: debug, info, notice, warn, error, crit,
    	# alert, emerg.
    	LogLevel warn
    
    	CustomLog ${APACHE_LOG_DIR}/access.log combined
    
        Alias /doc/ "/usr/share/doc/"
        <Directory "/usr/share/doc/">
            Options Indexes MultiViews FollowSymLinks
            AllowOverride None
            Order deny,allow
            Deny from all
            Allow from 127.0.0.0/255.0.0.0 ::1/128
        </Directory>
    </VirtualHost>
    And this shows the apache error log:
    Code:
    [Tue Mar 20 22:00:12 2012] [error] [client xxx] File does not exist: /var/www/ox6/v=NNDatoE, referer: http://domain.com/ox6/
    Where did I the mistake?

    Cheers
Working...
X