Recibo un error 500 en http://localhost/zftutorial/public

Recibo un error 500 en http://localhost/zftutorial/public

Hola, soy nuevo en Zend y Lamp, mi software: Zend Framework, Ubuntu10.04, Lamp.

Hice mi primer proyecto Zend con la herramienta Zend.

(según este tutorial http://akrabat.com/wp-content/uploads/Getting-Started-with-Zend-Framework.pdf)

Pero cuando voy a http://localhost/zftutorial/publicme sale error 500.

mis $directorio -lde zftutorial:

drwxr-xr-x 6 root root 4096 2010-06-01 23:54 application
drwxr-xr-x 2 root root 4096 2010-06-01 23:54 docs
drwxr-xr-x 3 root root 4096 2010-06-02 00:23 library
drwxr-xr-x 3 root root 4096 2010-06-02 00:00 nbproject
drwxr-xr-x 2 root root 4096 2010-06-01 23:54 public
drwxr-xr-x 4 root root 4096 2010-06-01 23:54 tests

mi:/etc/apache2/sitios-disponibles/predeterminado

<VirtualHost *:80>
    ServerAdmin webmaster@localhost

    DocumentRoot /var/www
    <Directory />
        Options FollowSymLinks
        AllowOverride All
    </Directory>
    <Directory /var/www/>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
        AllowOverride None
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
    </Directory>

    ErrorLog /var/log/apache2/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /var/log/apache2/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

</VirtualHost>

Gracias,

Respuesta1

¿Puedes ejecutar este comando para saber por qué Apache devuelve el error 500? Ve y navega por la misma página.

tail -f /var/log/apache2/error.log

podría ser un error de php si tuvieraserror_reporting(0)

información relacionada