Friday 02 February 2007 7:22:27 am
Has anyone had any success running eZ in hostname access mode alongside other applications, on the same domain? For example: eZ and apache are configured for hostname access for www.domain.com. eZ exists in the directory "/home/user1/public_html/ez" which is what DocumentRoot is set to. However, you have another application located in "/home/user1/public_html/app2" that you would like to be able to access, for example at the URL "http://www.domain.com/app2". Normally what happens is that eZ looks for the module "app2" and does not find it, and gives you a kernel(20) error. I have tried adding Aliases to the VirtualHost in httpd.conf i.e.
<VirtualHost w.x.y.z>
ServerAlias domain.com
Alias /app2 /home/user1/public_html/app2
DocumentRoot /home/user1/public_html/ez
ServerName www.domain.com ... But still getting the kernel error. I've also tried this in "/home/user1/public_html/.htaccess"
RewriteEngine On RewriteRule /app2$ /app2$1 [L] and this in "/home/user1/public_html/ez/.htaccess"
...
<FilesMatch "(^app2$)|(index\.php|\.(gif|jpe?g|png|css|js|html)|var(.+)storage.pdf(.+)\.pdf)$"> ... No difference there either. Thanks in advance for any help...
|