Bonjour

J'ai un soucis avec une config apache2 sous Ubuntu 13.10 server.
Lors de l'acces à une page (générée par une extension Wordpress) j'ai l'erreur:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
[Wed Jun 04 17:18:02.143618 2014] [access_compat:error] [pid 25031] [client monip] AH01797: client denied by server configuration: /var/www/thiverval-grignon.com/wp-content/plugins/wp-booking-calendar/public/ajax/getMonthCalendar.php, referer: http://www.thiverval-grignon.com/reservation-court-tennis-78850/planning-doccupation-du-court-de-tennis/
voici mon .conf:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<VirtualHost *:80>
        ServerAdmin sebastien@thivinfo.com
        ServerName thiverval-grignon.com
        ServerAlias www.thiverval-grignon.com
        DocumentRoot /var/www/thiverval-grignon.com
        <Directory />
                Options FollowSymLinks
                AllowOverride all
        </Directory>
        <Directory /var/www/thiverval-grignon.com>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride all
                Require all granted
        </Directory>
 
        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 /var/log/apache2/error.log
 
        # Possible values include: debug, info, notice, warn, error, crit,
        # alert, emerg.
        LogLevel warn
 
        CustomLog /var/log/apache2/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>
Options +FollowSymlinks
RewriteEngine on
 
# Lorsque l'on tape dans la barre d'adresse www.votre_domaine.net/page-* c'est la page www.votre_domaine.net/page.php?id=* qui s'affiche
# ^ et $ signifie respectivement le dét et la fin d'une expression réliè
RewriteRule ^page-([0-9]+)$ /page.php?id=$1 [L]
 
</VirtualHost>
Le problème viendrait d'apache ou d'un bug du plugin avotre avis?

Merci d'avance