Jump to content
Fórum Script Brasil
  • 0

Contador Esta Dando Erro::: Urgente !


[# GuitarM[E]N #]

Question

ph34r.gif Vou enviar o codigo pra facilitar e mostrar o que eu fiz::::

para facilitar.... na verdade ele esta dando erro na linha da variavel $configfile, ou seja na hora que pega o nome do arquivo!.... então não sei o que faço ... por favor me ajudem!

da uma olhada e ve o que pode ser feito:

$pastalocal = "/contador"

$configfile = "contador.inc"; // Nome do Arquivo em Que Vai Grabar o IP e o Numero de Visitas <--------------------------------- o ERRO ESTA NESTA LINHA AGORA.

$localip = "127.0.0.1"; // IP Local (Não Mude)

$serverip = "127.0.0.1"; // IP do Servidor (Não Mude)

// -------------------- C O D I G O -------------------------------- //

function text($count){

echo $count; // Texto

}

if (file_exists ($configfile)) {

$fp = fopen ($configfile,"r+");

$daten = fgets ($fp,25);

$ip = chop (substr($daten,0,15));

$count = substr($daten,15);

if ($REMOTE_ADDR == $localip or $REMOTE_ADDR == $serverip){

$np = $ip;

}else{

$np = $REMOTE_ADDR;

}

if ($np != $ip){

$count += 1;

}

rewind ($fp);

fputs ($fp,substr($np." ",0,15).$count);

fclose ($fp);

text($count);

}

else {

$fp = fopen($configfile,"w");

$np = $REMOTE_ADDR;

$count = "1";

fputs ($fp,substr($np." ",0,15).$count);

fclose ($fp);

chmod("$configfile", 0777);

chmod("$pastalocal", 0666);

text($count);

}

mais ainda sim esta dando um erro na linha com o nome do arquivo!

pr favor me ajudem!

Dayves

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
Guest Guest

NESTA LINHA AKI:

$configfile = "contador.inc"; // Nome do Arquivo em Que Vai Grabar o IP e o Numero de Visitas <--------------------------------- o ERRO ESTA NESTA LINHA AGORA.

Link to comment
Share on other sites

  • 0
Guest - [# GuitarM[E]N #] -

$configfile = "contador.inc"; // Nome do Arquivo em Que Vai Grabar o IP e o Numero de Visitas <--------------------------------- o ERRO ESTA NESTA LINHA AGORA.

vALEU.................................................................................. ph34r.gif

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652.1k
×
×
  • Create New...