Guest --gustavo-- Postado Julho 12, 2007 Denunciar Share Postado Julho 12, 2007 Olá pessoal,desenvolvi um sistema de noticias com os recordsets do Dreamweaver.Beleza...no meu server funciona legal.....só que quando passo pro BRturbo, as páginas simplismente somem....não aparece nada...nenhum erro....nenhum HTML, nada....branquinho....ó um exemplo....exemploa página existe, e dentro dela tem codigos HTML e PHP, tudo funciona normal no meu Server, só quando passo pra internet acontece isso...alguém sabe o que fazer?brigadao pessoal.. Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Beraldo Postado Julho 12, 2007 Denunciar Share Postado Julho 12, 2007 Poste o código PHP gerado.Envie um HTML comum e veja se funciona corretamente. Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Guest Visitante Postado Julho 12, 2007 Denunciar Share Postado Julho 12, 2007 olha todo o codigo gerado....<?php require_once('../Connections/Noticias.php'); ?> <?php function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") { $theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue; switch ($theType) { case "text": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "long": case "int": $theValue = ($theValue != "") ? intval($theValue) : "NULL"; break; case "double": $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL"; break; case "date": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "defined": $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue; break; } return $theValue; } $editFormAction = $_SERVER['PHP_SELF']; if (isset($_SERVER['QUERY_STRING'])) { $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']); } $foto = $_FILES["imagem"]["name"]; $fotoTmp = $_FILES["imagem"]["tmp_name"]; if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) { $insertSQL = sprintf("INSERT INTO noticias (titulo, subtitulo, texto, imagem, legenda) VALUES (%s, %s, %s, '$foto', %s)", GetSQLValueString($_POST['titulo'], "text"), GetSQLValueString($_POST['subtitulo'], "text"), GetSQLValueString($_POST['texto'], "text"), GetSQLValueString($_POST['legenda'], "text")); // Função que cria a imagem, não trabalharemos com upload. function geraImg($img, $max_x, $max_y, $imgNome) { //pega o tamanho da imagem ($original_x, $original_y) list($width, $height) = getimagesize($img); $original_x = $width; $original_y = $height; // se a largura for maior que altura acho a porcentagem if($original_x > $original_y) { $porcentagem = (100 * $max_x) / $original_x; } else { $porcentagem = (100 * $max_y) / $original_y; } $tamanho_x = $original_x * ($porcentagem / 100); $tamanho_y = $original_y * ($porcentagem / 100); $image_p = imagecreatetruecolor($tamanho_x, $tamanho_y); $image = imagecreatefromjpeg($img); imagecopyresampled($image_p, $image, 0, 0, 0, 0, $tamanho_x, $tamanho_y, $width, $height); return imagejpeg($image_p, $imgNome, 100); } // Chama a imagem, passando os parâmetros a ela. geraImg($fotoTmp, 500, 500, "../recordsets/".$foto); mysql_select_db($database_Noticias, $Noticias); $Result1 = mysql_query($insertSQL, $Noticias) or die(mysql_error()); } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> </head> <body> <form action="<?php echo $editFormAction; ?>" method="post" enctype="multipart/form-data" name="form1"> <table align="center"> <tr valign="baseline"> <td nowrap align="right">Titulo:</td> <td><input type="text" name="titulo" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">Subtitulo:</td> <td><input type="text" name="subtitulo" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">Texto:</td> <td><input type="text" name="texto" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">Imagem:</td> <td><input name="imagem" type="file" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right">Legenda:</td> <td><input type="text" name="legenda" value="" size="32"></td> </tr> <tr valign="baseline"> <td nowrap align="right"> </td> <td><input type="submit" value="Insert record"></td> </tr> </table> <input type="hidden" name="MM_insert" value="form1"> </form> <p> </p> </body> </html>o resto funciona....normalmente....somente esses gerados com recordsets....mas já utilizei um monte de vezes em outros servidores e funcionou normalmente...abraço Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 heltonritter Postado Julho 13, 2007 Denunciar Share Postado Julho 13, 2007 Pode ser que no BrTurbo não esteja instalada a GD e aí estas linhas (por exemplo) $image_p = imagecreatetruecolor($tamanho_x, $tamanho_y); $image = imagecreatefromjpeg($img);não funcionam, mas no php do servidor lá deve estar configurado para não mostrar os erros... aí não aparece nada.Tem como colocar em outro servidor para testar? Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Guest Visitante Postado Julho 13, 2007 Denunciar Share Postado Julho 13, 2007 já coloquei em outro servidor e fuciona perfeitamente... Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 heltonritter Postado Julho 13, 2007 Denunciar Share Postado Julho 13, 2007 faz um arquivo info.php por exemplo...<?php phpinfo();?>Vê se a GD está isntalada. Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 superkatatau Postado Julho 13, 2007 Denunciar Share Postado Julho 13, 2007 ta habilitado sim....info Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Beraldo Postado Julho 13, 2007 Denunciar Share Postado Julho 13, 2007 Habilite a exibição de erros e veja se aparece(m) erro(s). Coloque no topo do script:ini_set("error_reporting", E_ALL); ini_set("display_errors", 1); Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
Guest --gustavo--
Olá pessoal,
desenvolvi um sistema de noticias com os recordsets do Dreamweaver.
Beleza...no meu server funciona legal.....só que quando passo pro BRturbo, as páginas simplismente somem....não aparece nada...nenhum erro....nenhum HTML, nada....
branquinho....
ó um exemplo....
exemplo
a página existe, e dentro dela tem codigos HTML e PHP, tudo funciona normal no meu Server, só quando passo pra internet acontece isso...
alguém sabe o que fazer?
brigadao pessoal..
Link para o comentário
Compartilhar em outros sites
7 respostass 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.