Multiple Zend applications on same host

admin

Administrator
Staff member
I'm developing a Zend application that should be installed on a host that I don't access to it. I have two problems:

<ol>
<li>On the server there is no zend-server-ce installation.</li>
<li>Application should be installed beside some other CMS'es like wordpress and Jumla.</li>
</ol>

There is two choices available for me to implement, first one is place each cms in a sub-domain and second is place each cms in a folder.

for example first one may look like this:

Code:
blog.host.com --&gt; for Wordpress
contents.host.com --&gt; for Jumla 
management.host.com --&gt; for zend application

and second one may be:

Code:
host.com/blog --&gt; for Wordpress
host.com/contents --&gt; for Jumla 
host.com/management --&gt; for zend application

I can't configure Document Root for some specific folder on host. Currently I configured a virtual host on my local machine changing
Code:
/etc/apache2/httpd.conf
to:

Code:
NameVirtualHost *:80
&lt;VirtualHost *:80&gt;
        DocumentRoot "/var/www/my_project/name/public"
        ServerName pl.localhost
&lt;/VirtualHost&gt;

So what should I do for doing same on a host that I don't access to it's apache?