Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>First I'm pretty sure that the php.ini you need to change for web display is the one in the apache folder. (it's been awhile since I've used WAMP). <br /></p> <p>Next don't build your vhost in your apache config httpd.conf, do it instead in httpd-vhosts.conf. (you don't want to accidently break apache), <br /> The way you stting your vhost at the moment you url will look like <code>http:quickstart/</code> <br /> these two links will help:</p> <p><a href="http://apptools.com/phptools/virtualhost.php" rel="nofollow">Setup Apache vhost</a><br /> <a href="http://blog.srmklive.com/2010/12/27/how-to-create-virtual-hosts-using-zend-server-ce/" rel="nofollow">Zend Server Vhosts</a></p> <p>One of the key thing with using vhosts is to remember to redo localhost so it doesn't go away.</p> <p>With you windows hosts file, remeber it must be edited in admin mode and you can have many hosts on the same number, here is an example:</p> <pre><code># localhost name resolution is handled within DNS itself. 127.0.0.1 localhost # ::1 localhost 127.0.0.1 iam.local 127.0.0.1 zfcms.local 127.0.0.1 home.local 127.0.0.1 places.local 127.0.0.1 RentAFlat.local 127.0.0.1 zf2-tutorial.local 127.0.0.1 mp3.local 127.0.0.1 quickstart </code></pre> <p>and an example from httpd-vhosts.conf, note: localhost is the first vhost...This is important.</p> <pre><code>&lt;VirtualHost *:80&gt; DocumentRoot "C:\Zend\Apache2/htdocs" ServerName localhost &lt;/VirtualHost&gt; &lt;VirtualHost *:80&gt; DocumentRoot "C:\www\iam\public" ServerName iam.local ErrorLog "C:\Zend\ZendServer\logs\iam.local.log" &lt;directory "C:\www\iam"&gt; Options Indexes FollowSymlinks AllowOverride all Order Deny,Allow Deny from all Allow from 127.0.0.1 &lt;/directory&gt; &lt;/VirtualHost&gt; </code></pre> <p>I hope this helps..</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload