erro 403 no PHP - lighttpd

1

Eu configurei o fastcgi corretamente, descompacte-o em module.conf ,

[root@xlh lighttpd]# service lighttpd status Redirecting to
/bin/systemctl status  lighttpd.service lighttpd.service - Lightning
Fast Webserver With Light System Requirements     Loaded: loaded
(/lib/systemd/system/lighttpd.service; disabled)      Active: failed
 ExecStart=/usr/sbin/lighttpd -D -f /etc/lighttpd/lighttpd.conf
(code=exited, status=255)     CGroup:
name=systemd:/system/lighttpd.service
[root@xlh lighttpd]# php-cgi -v PHP:  syntax error, unexpected '&' in
/etc/php.ini on line 113 PHP 5.3.18 (cgi-fcgi) (built: Oct 18 2012
07:07:56) Copyright (c) 1997-2012 The PHP Group Zend Engine v2.3.0,
Copyright (c) 1998-2012 Zend Technologies
    with Xdebug v2.1.4, Copyright (c) 2002-2012, by Derick Rethans

Quando vou para localhost/index.php , é gerado um erro 403 . Alguma ideia do porquê?

    
por x10nd 07.03.2013 / 12:41

1 resposta

0

Você pode precisar definir as permissões no arquivo que está sendo veiculado para ser legível pelo servidor.

Isso definirá as permissões para serem editáveis pelo proprietário e legíveis por todos: 'chmod 644 index.php'

    
por DaAwesomeP 09.10.2013 / 05:06