mod_speling ubuntu + ispconfig3

Discussion in 'General' started by michaeldasilvapereira, Aug 25, 2010.

  1. Hi there,

    I have a issue with a few sites I'd like to move from a windows server to a ispconfig server. Mostly static html content, but with FuNkY CasE problems.

    I'm having an issue using mod_speling, I've spent a lot of time trying to find a solution / fix. So far I have got nothing :(

    I have enabled the module:
    # cat mods-enabled/speling.load
    LoadModule speling_module /usr/lib/apache2/modules/mod_speling.so
    CheckSpelling on

    I haven't seen anything in the apache logs, I have no clue what I'm doing wrong. Any Ideas?

    Thanks,
    Mike
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    Try to add the line:

    CheckSpelling on

    in the apache directives field of the website.
     
  3. I have tried putting it in the vhost file in sites-available/.
    Still nothing :(

    Vhost below:
    <Directory /var/www/xxxxx.com>
    CheckSpelling on
    AllowOverride None
    Order Deny,Allow
    Deny from all
    </Directory>

    <VirtualHost *:80>
    DocumentRoot /var/www/xxxxx.com/web

    ServerName xxxxx.com
    ServerAlias www.xxxxx.com
    ServerAdmin [email protected]

    ErrorLog /var/log/ispconfig/httpd/xxxxx.com/error.log

    CheckSpelling on


    <Directory /var/www/xxxxx.com/web>
    CheckSpelling on
    Options FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
    </Directory>
    <Directory /var/www/clients/client1/web1/web>
    CheckSpelling on
    Options FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
    </Directory>

    # suexec enabled
    SuexecUserGroup web1 client1
    # Clear PHP settings of this website
    <FilesMatch "\.ph(p3?|tml)$">
    SetHandler None
    </FilesMatch>
    # php as fast-cgi enabled
    <IfModule mod_fcgid.c>
    # SocketPath /tmp/fcgid_sock/
    IdleTimeout 3600
    ProcessLifeTime 7200
    # MaxProcessCount 1000
    DefaultMinClassProcessCount 3
    DefaultMaxClassProcessCount 100
    IPCConnectTimeout 8
    IPCCommTimeout 360
    BusyTimeout 300
    </IfModule>
    <Directory /var/www/xxxxx.com/web>
    CheckSpelling on
    AddHandler fcgid-script .php .php3 .php4 .php5
    FCGIWrapper /var/www/php-fcgi-scripts/web1/.php-fcgi-starter .php
    Options +ExecCGI
    AllowOverride All
    Order allow,deny
    Allow from all
    </Directory>
    <Directory /var/www/clients/client1/web1/web>
    CheckSpelling on
    AddHandler fcgid-script .php .php3 .php4 .php5
    FCGIWrapper /var/www/php-fcgi-scripts/web1/.php-fcgi-starter .php
    Options +ExecCGI
    AllowOverride All
    Order allow,deny
    Allow from all
    </Directory>

    # add support for apache mpm_itk
    <IfModule mpm_itk_module>
    AssignUserId web1 client1
    </IfModule>

    </VirtualHost>
     
  4. d4kr

    d4kr New Member

    hi,

    I have the same issue, did you find a solutions?
    thx
    dk
     

Share This Page