Create a virtual host

Like most Zend Framework based applications, MetaScale CMS requires a virtual host so it can be accessed from your browser at http://myproject.localhost

A typical Apache virtual host entry looks like this:

<VirtualHost *:80>
    ServerName myproject.local
    DocumentRoot /path/to/myproject/httpdocs

    <Directory /path/to/myproject/httpdocs>
        DirectoryIndex index.php
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>

Hosts file

You will also need to add an entry in your hosts file so your browser can reach the above URL.

127.0.0.1 myproject.local
Related nodes
$nodes = $this->node->getCollection()->getRelated();

No related nodes for this node