Re: [PHP-ES] Nuevo problema con la sindicación de c ontenidos (RSS)

[email protected] (Ariel Camino)
Newsgroups php.general.es
Message-ID <[email protected]>
Si no muestra noticias ni errores lo más probable es que no se
muestren por defecto (por seguridad). Si queres que php muestre los
errores tenes varias formas para hacerlo, por ejemplo vía PHP en
tiempo de ejecuciòn como dice el manual:

http://ar.php.net/manual/en/function.ini-set.php

<?php
echo ini_get('display_errors');

if (!ini_get('display_errors')) {
    ini_set('display_errors', 1);
}

-------------------------------------------------
O utilizando la directiva

php_flag display_errors 1

en un archivo llamado .htaccess (si se encuentra activado AllowOverride).

-------------------------------------------------

O si tenes accesso al archivo de configuracion php.ini del servidor:

display_errors = On

Saludos,
-- 
Ariel Camino
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.