Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Link Afiliados Menchini

Onde estou errando?

Recommended Posts

Preciso saber onde estou errando, não estou conseguindo achar

 

Aparece:

 

Warning: file(teste.php) [function.file]: failed to open stream: No such file or directory in /services2/webpages/util/i/g/ig6925385.igvantagens.com.br/blogsdox.com/public/pg/criar.php on line 78

 

e meu código é:

 

<?php
ini_set( 'display_errors', true );
error_reporting( E_ALL );

$endereco = $_POST['endereco'];
$arquivo = $_POST['arquivo'];

if($_POST['senha'] == 3636){

$codigo = '

//***********************************************************************

<?php

// Pegar título de um site com cURL
$site_url = "'.$endereco.'";

$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $site_url);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, 5);
ob_start();
curl_exec($ch); 
curl_close($ch);
$file_contents = ob_get_contents();
ob_end_clean();

if (preg_match("/<title>([^<]++)/", $file_contents, $matches) == FALSE)
$erro = "Erro ao resgatar o titulo do site"; // se der algum erro

$tags = get_meta_tags("'.$endereco.'");
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>
<?php echo $matches[1]; ?>
</title>

<meta name="DESCRIPTION" content="<?php echo $tags["description"]; ?>">
<meta name="KEYWORDS" content="<?php echo $tags["keywords"]; ?>">

<style type="text/css">

body {background-color:#87CEEB;}

h3:hover {background-color:black; color:white;}

</style>

</head>
<body>
<center>
<h3 style="font-size:35px"><?php echo $matches[1]; ?></h3>
<p><?php echo $tags["description"]; ?></p>
</center>
<hr />

<script language="JavaScript">imgr = new Array();imgr[0] = "http://i43.tinypic.com/orpg0m.jpg";imgr[1] = "http://i43.tinypic.com/orpg0m.jpg";imgr[2] = "http://i43.tinypic.com/orpg0m.jpg";imgr[3] = "http://i43.tinypic.com/orpg0m.jpg";imgr[4] = "http://i43.tinypic.com/orpg0m.jpg";showRandomImg = true;boxwidth = 1010;cellspacing = 30;borderColor = "#ffffff";bgTD = "#000000";thumbwidth = 120;thumbheight = 120;fntsize = 30;acolor = "red";aBold = false;icon = " ";text = "Comentários";showPostDate = false;summaryPost = 40;summaryFontsize = 10;summaryColor = "#666";icon2 = " ";numposts = 30;home_page = "'.$endereco.'";</script><script src="posts.js" type="text/javascript"></script>

<!-- <?php echo $tags["keywords"]; ?> -->

<div"><b><a href="http://www.blogsdox.com/" rel="dofollow" title="Divulgue seu blog ou site e aumente suas visitas como o BlogsDox." style="text-decoration:none;
color: black;
margin-left: 5px;">Rede de Blogs BlogsDox</a></b> <br /> <a href="http://blogsdox.com/barra/index.php" title="Crie uma pagina para seu blog" style="text-decoration:none;
color: blue;
margin-left: 5px;">Crie uma pagina para seu blog</a></div>

</body>
</html>

//*************************************************************************

'; // conteudo do arquivo

function Escrever_Novo_Arquivo($nomeArquivo, $textoArquivo){
   if(file($nomeArquivo))
       return false;
   $abre = fopen($nomeArquivo, 'w+');
           fwrite($abre, $textoArquivo);
           fclose($abre);
   return true;
}
Escrever_Novo_Arquivo($arquivo.'.php', $codigo);

}

?>

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.