carlosmandra Postado Novembro 3, 2005 Denunciar Share Postado Novembro 3, 2005 Pessoal,o servidor de um cliente está com o display_errors=Off, e tem um script que estou tentando rodar que tá dando tela branca. Por mais que eu coloque um echo em qualquer lugar, não aparece nada. Alguma variável pra contornar esse display_errors=Off ??Valeu. Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 carlosmandra Postado Novembro 3, 2005 Autor Denunciar Share Postado Novembro 3, 2005 Pessoal, já consegui aqui. Abaixo está um script de debug pra incluir no site, ele faz um include do arqivo q você apontar:<? //Turn on display_errors ini_set('display_errors','1'); // Display ALL errors including notices error_reporting (E_ALL); if(isset($filename)) { // Strip off any dot dot slashes $filename = preg_replace("/\.\.\//", "", $filename); // Strip off any leading slashes $filename = preg_replace("/^\//", "", $filename); } ?> <html> <head> <title>PHP Debugger!</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <form name="debug" method="post" action="<?$PHP_SELF?>"> <table width="500" border="0" align="center"> <tr> <td colspan="2">Enter the name of the file you would like to debug below. This debug script will attempt to include the file, execute it, and display any errors and notices. This filename should be relative to your web site's root directory.</td> </tr> <tr> <td width="121"> <div align="right">Filename:</div> </td> <td width="369"> <input name="filename" type="text" id="filename" <? if(isset($filename)) { // Display the filename if defined echo "value=\"$filename\""; } ?> ></td> </tr> <tr> <td> </td> <td> <input type="submit" name="Submit" value="Debug!"> </td> </tr> </table> </form> <hr> <? if(isset($filename)) { // Display the filename echo "<p align=center>Evaluating $filename</p>"; // Include the specified file for debugging include "$filename"; } ?> <hr> </body> </html>Abraço a todos Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
carlosmandra
Pessoal,
o servidor de um cliente está com o display_errors=Off, e tem um script que estou tentando rodar que tá dando tela branca. Por mais que eu coloque um echo em qualquer lugar, não aparece nada.
Alguma variável pra contornar esse display_errors=Off ??
Valeu.
Link para o comentário
Compartilhar em outros sites
1 resposta a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.