Prijava na forum:
Ime:
Lozinka:
Prijavi me trajno:
Trajanje:
Registruj nalog:
Ime:
Lozinka:
Ponovi Lozinku:
E-mail:

ConQUIZtador
Trenutno vreme je: 24. Dec 2024, 01:39:30
nazadnapred
Korisnici koji su trenutno na forumu 0 članova i 1 gost pregledaju ovu temu.


Tema za pitanja
o SMF forumu, phpBB2 i phpBB3 forumu, Wordpress i Joomla CMS sistemima!

Za vecinu drugih pitanja nacicete odgovor citajuci Top teme!

Idi dole
Stranice:
Počni novu temu Nova anketa Odgovor Štampaj Dodaj temu u favorite Pogledajte svoje poruke u temi
Tema: contact form  (Pročitano 2464 puta)
31. Avg 2006, 00:19:03
Poznata licnost


Here I am, on the road again...

Zodijak Scorpio
Pol Muškarac
Poruke 3818
OS
Windows XP
Browser
Opera 7.54
mob
HTC Touch Pro
Warning: fopen(ipLog.htm) [function.fopen]: failed to open stream: Permission denied in /home/x/public_html/contactMe/dataProcess.php on line 50

Warning: fputs(): supplied argument is not a valid stream resource in /home/x/public_html/contactMe/dataProcess.php on line 51

Warning: fclose(): supplied argument is not a valid stream resource in /home/x/public_html/contactMe/dataProcess.php on line 52

Poruka je uspijesno poslana, Hvala - Your mail has been successfully sent, Thank you


evo ovo gore se pojavi kad se posalje poruka preko ove forme

poruka stigne normalno na e-mail ali mene interesuje moze li se ovo nekako skolniti (ova prva 3 reda)
da se ne pojavljuje-ne znam sta mu to dodje i sta treba da uklonim

hvala Smile
IP sačuvana
social share
Pogledaj profil WWW GTalk Skype
 
Prijava na forum:
Ime:
Lozinka:
Zelim biti prijavljen:
Trajanje:
Registruj nalog:
Ime:
Lozinka:
Ponovi Lozinku:
E-mail:
Moderator
Capo di tutti capi


Underpromise; overdeliver.

Zodijak Gemini
Pol Muškarac
Poruke Odustao od brojanja
Zastava 44°49′N - 20°29′E
OS
Windows XP
Browser
Opera 9.01
mob
Apple iPhone 6s
Verovatno nisi chmodovo fajlove...
IP sačuvana
social share
Pobednik, pre svega.

Napomena: Moje privatne poruke, icq, msn, yim, google talk i mail ne sluze za pruzanje tehnicke podrske ili odgovaranje na pitanja korisnika. Za sva pitanja postoji adekvatan deo foruma. Pronadjite ga! Takve privatne poruke cu jednostavno ignorisati!
Preporuke za clanove: Procitajte najcesce postavljana pitanja!
Pogledaj profil WWW GTalk Twitter Facebook
 
Prijava na forum:
Ime:
Lozinka:
Zelim biti prijavljen:
Trajanje:
Registruj nalog:
Ime:
Lozinka:
Ponovi Lozinku:
E-mail:
Poznata licnost


Here I am, on the road again...

Zodijak Scorpio
Pol Muškarac
Poruke 3818
OS
Windows XP
Browser
Opera 7.54
mob
HTC Touch Pro
malo sam i ja googlo i nacuo nesto
slicno al ne kontam u kom 'modu' treabju biti

evo postavicu citav .php file pa ako mozes da mi das smijernice


Kod:
<?php     


$maxSize="500";                            // Maximum size of the letters message
$subject="visitor comments";               // The subject line of the letters that you receive
$to="you@hotmail.com";                     // The email address you want letters sent to
$HTMLmailFormat="1";                       // Do you want to use HTML mail (1 for yes and 0 for no)
$verify_referrer="1";                    // Do you want to do domain checking (1 for yes and 0 for no)
$domain="http://domain.com";               // Enter your domain here if you want to verify it
$domainAlias="http://www.domain.com";      // Enter your domains alias here if you want to verify it
$ipLogging="1";                            // Do you want to do IP logging (1 for yes and 0 for no)
$notify="1";                               // Do you want to be notified when an IP is logged  (1 or 0)
$notifyFrom="Abuse@yoursite.com";          // What do you want the notifications 'From' field to say
$notifySubject="Form abuse notification";  // What do you want the notifications 'Subject' line to say




$name $_POST['name']; $from $_POST['from']; $message $_POST['message'];

// Set IP variable based on registar globals status
$register_globals = (bool) ini_get('register_gobals');
if (
$register_globals) { $ip=getenv(REMOTE_ADDR); } 
else 
$ip=$_SERVER['REMOTE_ADDR'];

if (
$register_globals) { $ref=getenv(HTTP_REFERER); } 
else 
$ref=$_SERVER['HTTP_REFERER'];


// If webmaster wants to do domain checks
if($verify_referrer=="1")
{
        // If the domain referrer DOESN'T match either the set domain or domainAlias variable
if(!eregi("$domain"$ref) && !eregi("$domainAlias"$ref)) 
        {
                $error=1;

                // If webmaster wants to log 3rd party domain attempts
                if($ipLogging=="1"){ 
  $date=date ("l dS of F Y h:i:s A");
$ipLog="ipLog.htm";
$fp=fopen("$ipLog""a+");
fputs($fp"<font face=arial size=3>  >>> Logged IP address: $ip - Date: $date<br>");
fclose($fp);

$errorMesB="ERROR: Invalid domain.<br><br><b>NOTICE:</b> Your IP has been logged as: $ip."$error=1;
}
else{ $errorMesA="ERROR: Invalid domain."$error=1; }

                // If webmaster wants to be notified via email of 3rd party domain attempts
if($notify=="1"){
        $subject=$notifySubject;

                        // If webmaster wants mail sent in HTML format
         if($HTMLmailFormat=="1"){
$body=" <font face=arial size=3><br>
         --------<font color=red>WARNING!</font><font face=arial size=3> Form abuse notification ------
         <br><br><br><font face=arial size=2>A person has attempted to abuse the contact form.
         <br><font face=arial size=2>Their IP address was logged as: 
$ip <br></font><br>";
                        }
                        // If no HTML then send as plain text
                        else{
                               $body=" \n--------WARNING! Form abuse notification ------\n\n\n
         A person has attempted to abuse the contact form.\n
         Their IP address was logged as: 
$ip \n";
                        }
$from=$notifyFrom;

                        // Set headers based on content type (plain / HTML)
if($HTMLmailFormat=="1"$headers="Content-Type: text/html; charset=windows-1252 \n";
                        else $headers="Content-Type: text/plain \n";
$headers.="From: $from \n";
$headers.="X-mailer: \"contactMe\" published at www.digi-dl.com \n";

                        // Mail notice to webmaster
mail($to,$subject,$body,$headers);

                        $errorMesC="An email with this information has been sent to the webmaster."$error=1;
}
   
}

// Trim whitespace from user input and replace potentially harmfull charchters
$name=trim($name); $name preg_replace("/>/","]",$name); $name preg_replace("/</","[",$name);

// If user enters NO name
if($name==""){ $errorMes1="ERROR: You didn't write your name. "$error=1; }

// Trim whitespace from user input 
$message=trim($message); if($message==""){ $errorMes2="ERROR: You didn't write a message. "$error=1; }

// Determine the length of the message
//elseif (strlen($message) >= $maxSize) { $errorMes3="ERROR: Your message is too long. The maximum characters allowed is $maxSize. "; $error=1; }

// If all is well so far there are no errors
else
$error=0;

// If there IS data in the email field then check it
if ($from!==""){

        // Check email address for certain charcters
if (!eregi("^.+@.+\\..+$"$from)) 

$errorMes4="ERROR: Your email address contains errors. "$error=1
}

        // If email address pass check then trim whitespace
        else
$from=trim($from);
}
else { 
$errorMes5="ERROR: You need to enter an email address. "$error=1; }

// If there has been an error then display the error
if ($error=="1"){
echo ("<title>SendMail Error</title>
        <body><br>
<p style=\"font:11pt arial\">SendMail <font color=red> Error</font>
<br><br>The following errors have occured:<br><br>
$errorMes1<br>$errorMes2<br>$errorMes3<br>$errorMes4<br>$errorMes5<br>$errorMesA<br>$errorMesB<br>$errorMesC<br>
<br><a href=\"contactMe.htm\" style=\"color:black\">Click here</a> to try again. </body></html>"
); exit(0);
}

// If there has been no error then send mail
else if ($error=="0"){

        // If webmaster wants mail sent in HTML format
        if($HTMLmailFormat=="1") {
$message preg_replace("/>/","&gt;",$message); $message preg_replace("/</","&lt;",$message);

$body="<font face=arial size=2>$message</font <br><br><br>
                       <font face=\"ms sans serif\" size=2>
                       --------------- SENDER INFORMATION ------------
                       <br>This message was sent to you by 
$name.<br>
                       
$name's email address is: $from<br>
                       
$name's IP address is: $ip </font><br>";
        }
       
        
// If webmaster wants mail sent in plain text format
        else{
$body="$message\n\n\n
                       --------------- SENDER INFORMATION ------------
       \nThis message was sent to you by 
$name.\n
                       
$name's email address is: $from\n
                       
$name's IP address is: $ip \n";
        }
$from="\"$name\" <$from>";

        // Set headers based on content type (plain / HTML)
        if($HTMLmailFormat=="1"$headers="Content-Type: text/html; charset=windows-1252\n";
        else $headers="Content-Type: text/plain \n";
$headers.="From: $from \n";
        $headers.="X-mailer: \"contactMe\" published at www.digi-dl.com \n";

        // Send mail
if(!mail($to,$subject,$body,$headers)){
echo "mail error";
}
        // display mail sent message
else {
        echo (" <title>SendMail Notice: mail was successfully sent</title><body><br><br><br><br>
<p style=\"font:11pt arial\" align=center>Your mail has been successfully sent...<i>Thank you</i></p>
</body></html>"
); exit(0);
}

// exit script
} exit(0);
?>

« Poslednja izmena: 31. Avg 2006, 00:52:55 od SerbianFighter »
IP sačuvana
social share
Pogledaj profil WWW GTalk Skype
 
Prijava na forum:
Ime:
Lozinka:
Zelim biti prijavljen:
Trajanje:
Registruj nalog:
Ime:
Lozinka:
Ponovi Lozinku:
E-mail:
Moderator
Capo di tutti capi


Underpromise; overdeliver.

Zodijak Gemini
Pol Muškarac
Poruke Odustao od brojanja
Zastava 44°49′N - 20°29′E
OS
Windows XP
Browser
Opera 9.01
mob
Apple iPhone 6s
U dokumentaciji za instalaciju pise u kom chmodu trebaju biti..
IP sačuvana
social share
Pobednik, pre svega.

Napomena: Moje privatne poruke, icq, msn, yim, google talk i mail ne sluze za pruzanje tehnicke podrske ili odgovaranje na pitanja korisnika. Za sva pitanja postoji adekvatan deo foruma. Pronadjite ga! Takve privatne poruke cu jednostavno ignorisati!
Preporuke za clanove: Procitajte najcesce postavljana pitanja!
Pogledaj profil WWW GTalk Twitter Facebook
 
Prijava na forum:
Ime:
Lozinka:
Zelim biti prijavljen:
Trajanje:
Registruj nalog:
Ime:
Lozinka:
Ponovi Lozinku:
E-mail:
Poznata licnost


Here I am, on the road again...

Zodijak Scorpio
Pol Muškarac
Poruke 3818
OS
Windows XP
Browser
Opera 7.54
mob
HTC Touch Pro
ah ta instalacija

dobio sam samo readme file i nista vise

-------------
edit:

ej hvala sf na smijernicama-stvarno si car

promijenio sam permisije od file-a ipLog.htm (sa 666 na 777) i sad nema onog i radi bas onako kako sam 'cio

pozdrav!!! Smile
« Poslednja izmena: 31. Avg 2006, 01:05:22 od mikx »
IP sačuvana
social share
Pogledaj profil WWW GTalk Skype
 
Prijava na forum:
Ime:
Lozinka:
Zelim biti prijavljen:
Trajanje:
Registruj nalog:
Ime:
Lozinka:
Ponovi Lozinku:
E-mail:
Moderator
Capo di tutti capi


Underpromise; overdeliver.

Zodijak Gemini
Pol Muškarac
Poruke Odustao od brojanja
Zastava 44°49′N - 20°29′E
OS
Windows XP
Browser
Opera 9.01
mob
Apple iPhone 6s
E sad.. problem je sto taj fajl sluzi da se procita.. i da si to uradio video bi da lepo pise:

NOTE: You will have to set the "ipLog.htm" files' permission to
writable inorder for the script to write the IP address to the log.


Da si googlao kako da stavis da file bude writable kao prvi rezultat bi dobio da je to chmod 666

Naravno kad treba drugima da se kaze da googlaju tu si prvi...
IP sačuvana
social share
Pobednik, pre svega.

Napomena: Moje privatne poruke, icq, msn, yim, google talk i mail ne sluze za pruzanje tehnicke podrske ili odgovaranje na pitanja korisnika. Za sva pitanja postoji adekvatan deo foruma. Pronadjite ga! Takve privatne poruke cu jednostavno ignorisati!
Preporuke za clanove: Procitajte najcesce postavljana pitanja!
Pogledaj profil WWW GTalk Twitter Facebook
 
Prijava na forum:
Ime:
Lozinka:
Zelim biti prijavljen:
Trajanje:
Registruj nalog:
Ime:
Lozinka:
Ponovi Lozinku:
E-mail:
Poznata licnost


Here I am, on the road again...

Zodijak Scorpio
Pol Muškarac
Poruke 3818
OS
Windows XP
Browser
Opera 7.54
mob
HTC Touch Pro
eee to sam uradio prije tebe  Smile

pa znao sam ja te modove i meni je bilo mod 666 i ono se desavalo sve dok nisam stavio i mod execute tj. sve prebacio na 777
zato me je to i bunilo
« Poslednja izmena: 31. Avg 2006, 01:11:08 od mikx »
IP sačuvana
social share
Pogledaj profil WWW GTalk Skype
 
Prijava na forum:
Ime:
Lozinka:
Zelim biti prijavljen:
Trajanje:
Registruj nalog:
Ime:
Lozinka:
Ponovi Lozinku:
E-mail:
Idi gore
Stranice:
Počni novu temu Nova anketa Odgovor Štampaj Dodaj temu u favorite Pogledajte svoje poruke u temi
Trenutno vreme je: 24. Dec 2024, 01:39:30
nazadnapred
Prebaci se na:  

Poslednji odgovor u temi napisan je pre više od 6 meseci.  

Temu ne bi trebalo "iskopavati" osim u slučaju da imate nešto važno da dodate. Ako ipak želite napisati komentar, kliknite na dugme "Odgovori" u meniju iznad ove poruke. Postoje teme kod kojih su odgovori dobrodošli bez obzira na to koliko je vremena od prošlog prošlo. Npr. teme o određenom piscu, knjizi, muzičaru, glumcu i sl. Nemojte da vas ovaj spisak ograničava, ali nemojte ni pisati na teme koje su završena priča.

web design

Forum Info: Banneri Foruma :: Burek Toolbar :: Burek Prodavnica :: Burek Quiz :: Najcesca pitanja :: Tim Foruma :: Prijava zloupotrebe

Izvori vesti: Blic :: Wikipedia :: Mondo :: Press :: Naša mreža :: Sportska Centrala :: Glas Javnosti :: Kurir :: Mikro :: B92 Sport :: RTS :: Danas

Prijatelji foruma: Triviador :: Nova godina Beograd :: nova godina restorani :: FTW.rs :: MojaPijaca :: Pojacalo :: 011info :: Burgos :: Alfaprevod

Pravne Informacije: Pravilnik Foruma :: Politika privatnosti :: Uslovi koriscenja :: O nama :: Marketing :: Kontakt :: Sitemap

All content on this website is property of "Burek.com" and, as such, they may not be used on other websites without written permission.

Copyright © 2002- "Burek.com", all rights reserved. Performance: 0.073 sec za 16 q. Powered by: SMF. © 2005, Simple Machines LLC.