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:
and second one may be:
I can't configure Document Root for some specific folder on host. Currently I configured a virtual host on my local machine changing
to:
So what should I do for doing same on a host that I don't access to it's apache?
<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 --> for Wordpress
contents.host.com --> for Jumla
management.host.com --> for zend application
and second one may be:
Code:
host.com/blog --> for Wordpress
host.com/contents --> for Jumla
host.com/management --> 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
Code:
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot "/var/www/my_project/name/public"
ServerName pl.localhost
</VirtualHost>
So what should I do for doing same on a host that I don't access to it's apache?