Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I found the project in My Netbeans and I got it to work. Things to check.</p> <ol> <li>Make sure Zend Framework is in your PHP <code>include_path</code> or in the <code>/library</code> of your project. if in the library put the <code>ZendFramework/library/Zend/</code> in the <code>/application/library</code> so it looks like <code>/application/library/Zend/</code></li> <li>Make sure you set up the application in netbeans properly... make sure the sources are accessible to your server (permissions), make sure the run configuration is correct (with ZF it's not needed to specify an Index file)<br /></li> </ol> <p>this error:</p> <pre><code>Fatal error: Class 'Application_Form_PropertyForm' not found in T:\Users\user\Documents\NetBeansProjects\RentAFlat-Zend\application\controllers\PropertyController.php on line 82 </code></pre> <p>suggests that you need to copy sources to your web root directory</p> <p>the Vhost that netbeans specifies is little lean try something similar to this:</p> <pre><code>&lt;VirtualHost *:80&gt; DocumentRoot "C:\www\RentAFlat\public" ServerName RentAFlat.local ErrorLog "C:\Zend\ZendServer\logs\RentAFlat.local.log" &lt;directory "C:\www\RentAFlat"&gt; Options Indexes FollowSymlinks AllowOverride all Order Deny,Allow Allow from all &lt;/directory&gt; &lt;/VirtualHost&gt; </code></pre> <p>make sure the DocRoot points to the <code>/application/public</code> folder</p> <p>it's also very helpful to put the path to the ZF /bin directory in your windows PATH so that you can use the command line interface that ZF has (there is an interface for the cli in netbeans)</p> <p>comment if you need more clarification</p> <p>also ZF has a pretty good quickstart use this <a href="https://sites.google.com/a/jschoenwolf.com/www/home/create-your-project" rel="nofollow">link</a> to see a detailed setup tutorial based on ZF quickstart</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

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