Не работает AJAX под Apache2. Статус-код: 0, статус: failed. Не могу понять в чем проблема. На других сайтах того же сервера все работает как надо. Запрос не кросс-доменный, вида
url: '/ajax/do/delete'
Вот конфиг сайта:
<VirtualHost *:80>
ServerName site.com
DocumentRoot /var/www/site.com
<Directory /var/www/site.com/>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
</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 ${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
</VirtualHost>