Kirjautuminen

Haku

Tehtävät

Keskustelu: Koodit: PHP: Tiekku v1.0

Sivun loppuun

Tumpi [17.02.2003 13:34:55]

#

Joo elikkäs tässäpä tällänen simppeli vieraskirja.

Optimointia löytyy, enkä ole 100% varma että toimii sataprosenttisesti, tein äskettäin pieniä muutoksia enkä kerennyt paljon testailemaan.

Käyttöohjeet: tiedostot vaan samaan paikkaan, tee sinne messages.txt ja jaa oikeuksia (777, vähempikin varmaan riittää). index.php voi olla minkä tahansa niminen.

Joo, ja salasanan pitäisi olla "putka".

index.php

<?php
session_start();

//Sisällytetään asetukset
include ("settings.php");

// Kirjaudutaan sisään
if ($login != "") {
  if (md5($pword) == $password) { //Oikea salasana

    session_register("pass");
    $pass = $password;
    session_register("ipaddr");
    $ipaddr = $REMOTE_ADDR;

    $alert_title = "Sisäänkirjautuminen";
    $alert_text = "Kirjauduit sisään.<br />\n<br />\nVoit nyt poistaa/muokata viestejä sekä vastata niihin.";
    $op = "alert";
  }
  else { //Väärä salasana
    $alert_title = "Sisäänkirjautuminen";
    $alert_text = "Salasana väärin.<br />\n<br />\nVoit kirjautua uudelleen <a href=\"". $PHP_SELF ."?op=login\">tästä</a>.";
    $op = "alert";
  }
}

//Kirjaudutaan ulos
if ($logout != "") {
  if ($pass == $password && $ipaddr == $REMOTE_ADDR) {
    session_unregister("pass");
    session_unregister("ipaddr");

    $alert_title = "Uloskirjautuminen";
    $alert_text = "Kirjauduit ulos.<br />\n<br />\nVoit kirjautua uudelleen <a href=\"". $PHP_SELF ."?op=login\">tästä</a>.";
    $op = "alert";
  }
}

//Kirjoitetaan kirjaan
if ($write != "") {

    //Poistetaan kaikki jo tässä vaiheessa

    //Haitalliset merkit poistetaan
    $name = str_replace("|", "", $name);
    $email = str_replace("|", "", $email);
    $url = str_replace("|", "", $url);
    $message = str_replace("|", "", $message);

    //HTML poies
    $name = strip_tags($name);
    $email = strip_tags($email);
    $url = strip_tags($url);
    $message = strip_tags($message);

    //Vielä vähän kauneusleikkauksia...
    $message = trim($message);
    $message = str_replace("\n", "<br />", $message);

  if ($name != "" && str_replace(" ", "", $name) != "" && $message != "") {

    $time = date("d.m.y \k\l\o H:i:s");

    //Viestille id
    srand((double)microtime()*1000000);
    $id = md5(uniqid(rand(),999999));

    //Lisättävä rivi
    $new = "$name|$email|$url|$message|$time|$REMOTE_ADDR||$id|\n";


    $fo=fopen("messages.txt", "r+"); //Avataan
    $old = fread($fo, filesize("messages.txt"));
    fseek($fo, 0);
    flock($fo, 2); //Lukitaan
    fwrite($fo, "${new}${old}");  //Kirjoitetaan
    flock($fo, 3); //Vapautetaan
    fclose($fo); //Suljetaan

    header("location: ". $PHP_SELF ."");
  }
  else { // Kaikkia tietoja ei ollut täytetty oikein
    $alert_title = "Tiedot puutteelliset";
    $alert_text = "Et täyttänyt kaikkia tarpeellisia tietoja.<br />\n<br />\nVoit kirjoittaa kirjaan uudelleen <a href=\"". $PHP_SELF ."?op=write\">tästä</a>.";
    $op = "alert";
  }
}

//Vastataan
if ($answer != "") {
  if ($pass == $password && $ipaddr == $REMOTE_ADDR && $wanswer == "true") {

    //Siistitään
    $new_answer = str_replace("|", "", $new_answer);
    $new_answer = strip_tags($new_answer);
    $new_answer = trim($new_answer);
    $new_answer = str_replace("\n", "<br />", $new_answer);

    $msg_file = "messages.txt";
    $msg_data = file($msg_file);
    $msg_total = count($msg_data);

    for ($i=0; $i<$msg_total; $i++) {
      $entry = explode("|", $msg_data[$i]);

       if ($entry[7] == $id) {
         $answer_row = $i;
      }
    }

    $entry = explode("|", $msg_data[$answer_row]);
    $msg_data[$answer_row] = "$entry[0]|$entry[1]|$entry[2]|$entry[3]|$entry[4]|$entry[5]|$new_answer|$entry[7]|\n";

    $fo = fopen($msg_file,"w");
    foreach ($msg_data as $row)
    {
      fputs($fo, $row);
    }
    fclose($fo);

    header("location: ". $PHP_SELF ."");
  }
  else {
    $op = "answer";
  }
}

//Muokataan
if ($edit) {
  if ($pass == $password && $ipaddr == $REMOTE_ADDR && $wedit == "true") {

    //Siistitään
    $new_name = str_replace("|", "", $new_name);
    $new_name = strip_tags($new_name);
    $new_name = trim($new_name);
    $new_email = str_replace("|", "", $new_email);
    $new_email = strip_tags($new_email);
    $new_email = trim($new_email);
    $new_url = str_replace("|", "", $new_url);
    $new_url = strip_tags($new_url);
    $new_url = trim($new_url);
    $new_message = str_replace("|", "", $new_message);
    $new_message = strip_tags($new_message);
    $new_message = trim($new_message);
    $new_message = str_replace("\n", "<br />", $new_message);
    $new_time = str_replace("|", "", $new_time);
    $new_time = strip_tags($new_time);
    $new_time = trim($new_time);

    $msg_file = "messages.txt";
    $msg_data = file($msg_file);
    $msg_total = count($msg_data);

    for ($i=0; $i<$msg_total; $i++) {
      $entry = explode("|", $msg_data[$i]);

       if ($entry[7] == $id) {
         $answer_row = $i;
      }
    }

    $entry = explode("|", $msg_data[$answer_row]);
    $msg_data[$answer_row] = "$new_name|$new_email|$new_url|$new_message|$new_time|$entry[5]|$entry[6]|$entry[7]|\n";

    $fo = fopen($msg_file,"w");
    foreach ($msg_data as $row)
    {
      fputs($fo, $row);
    }
    fclose($fo);

    header("location: ". $PHP_SELF ."");
  }
  else {
    $op = "edit";
  }
}

//Poistetaan
if ($remove != "") {
  if ($pass == $password && $ipaddr == $REMOTE_ADDR && $wremove == "true") {

    $msg_file = "messages.txt";
    $msg_data = file($msg_file);
    $msg_total = count($msg_data);

    for ($i=0; $i<$msg_total; $i++) {
      $entry = explode("|", $msg_data[$i]);

       if ($entry[7] == $id) {
         $answer_row = $i;
      }
    }

    $msg_data[$answer_row] = "";

    $fo = fopen($msg_file,"w");
    foreach ($msg_data as $row)
    {
      fputs($fo, $row);
    }
    fclose($fo);

    header("location: ". $PHP_SELF ."");
  }
  else {
    $op = "remove";
  }
}

// Tallennetaan asetukset
if ($save_settings != "") {
  if ($pass == $password && $ipaddr == $REMOTE_ADDR) {

    if ($edit_password != "") { $edit_password = md5($edit_password); }
    else { $edit_password = $password; }

    $new_settings = "<?php\n\$table_width = \"$edit_table_width\";\n\n\$table_border_size = \"$edit_table_border_size\";\n\$table_border_style = \"$edit_table_border_style\";\n\$table_border_color = \"$edit_table_border_color\";\n\n\$table_cellspacing = \"$edit_table_cellspacing\";\n\$table_cellpadding = \"$edit_table_cellpadding\";\n\n\$background_body = \"$edit_background_body\";\n\$background_title = \"$edit_background_title\";\n\$background_text = \"$edit_background_text\";\n\n\$font_face = \"$edit_font_face\";\n\n\$font_size_title = \"$edit_font_size_title\";\n\$font_size_buttons = \"$edit_font_size_buttons\";\n\$font_size_text = \"$edit_font_size_text\";\n\n\$font_color_title = \"$edit_font_color_title\";\n\$font_color_text = \"$edit_font_color_text\";\n\n\$font_color_link = \"$edit_font_color_link\";\n\$font_color_alink = \"$edit_font_color_alink\";\n\$font_color_vlink = \"$edit_font_color_vlink\";\n\$font_color_hover = \"$edit_font_color_hover\";\n\n\$text_decoration_link = \"$edit_text_decoration_link\";\n\$text_decoration_alink = \"$edit_text_decoration_alink\";\n\$text_decoration_vlink = \"$edit_text_decoration_vlink\";\n\$text_decoration_hover = \"$edit_text_decoration_hover\";\n\n\$messages_per_page = \"$edit_messages_per_page\";\n\n\$password = \"$edit_password\";\n?>";

    $fo = fopen("settings.php", "w"); //Tiedosto missä asetukset sijaitsee
    flock($fo, 2); //Lukitaan tiedosto
    fwrite($fo, $new_settings); //Heitetään filuun uudet asetukset
    flock($fo, 3); //Vapautetaan tiedosto lukituksesta
    fclose($fo); //Suljetaan filu

    //Vaihdetaan salasana jotta admini pysyy kirjautuneena
    session_unregister("pass");
    session_register("pass");
    $pass = $edit_password;

    $alert_title = "Asetukset muutettu";
    $alert_text = "Asetukset muutettiin.<br />\n<br />\nJos et ole tyytyväinen uusiin asetuksiin, voit vaihtaa niitä <a href=\"". $PHP_SELF ."?op=edit_settings\">tästä</a>.";
    $op = "alert";
  }
  else {
    $alert_title = "Et ole kirjautunut sisään";
    $alert_text = "Et ole kirjautunut sisään.<br />\n<br />\nVoit kirjautua sisään <a href=\"". $PHP_SELF ."?op=login\">tästä</a>.";
    $op = "alert";
  }
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head>
  <title>Tiekku</title>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  <?php include("styles.php"); ?>
</head>

<body>
<center>

<table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
  <tr>
    <td class="title">
      <center>
        <a href="<?php echo $PHP_SELF; ?>">Lue</a> |
        <a href="<?php echo $PHP_SELF; ?>?op=write">Kirjoita</a> |
<?php if ($pass == $password && $ipaddr == $REMOTE_ADDR && $logout != "true") { ?>
        <a href="<?php echo $PHP_SELF; ?>?op=edit_settings">Asetukset</a> |
        <a href="<?php echo $PHP_SELF; ?>?logout=true">Kirjaudu ulos</a>
<?php } else { ?>
        <a href="<?php echo $PHP_SELF; ?>?op=login">Admin</a>
<?php } ?>
      </center>
    </td>
  </tr>
</table>

<p>

<?php
if ($op == "alert") {
?>
<table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
  <tr>
    <td class="title"><center><b><?php echo $alert_title; ?></b></center></td>
  </tr>
</table>

<table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
  <tr>
    <td class="text1"><?php echo $alert_text; ?></td>
    <td class="text2">&nbsp;</td>
  </tr>
</table>
<?php
}

else if ($op == "edit_settings") {
  if ($pass == $password && $ipaddr == $REMOTE_ADDR) {
?>
<form action="<?php echo $PHP_SELF; ?>" method="post">

<input type="hidden" name="save_settings" value="true">

  <table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
    <tr>
      <td class="title"><center><b>Muuta asetuksia</b></center></td>
    </tr>
  </table>

  <table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
    <tr>
      <td class="text1"><b>Taulukon leveys<b></td>
      <td class="text2" width="50%"><input type="text" size="35" name="edit_table_width" value="<?php echo $table_width; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Reunuksen paksuus</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_table_border_size" value="<?php echo $table_border_size; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Reunuksen tyyli</b>&nbsp;</td>
      <td class="text2">
        <select name="edit_table_border_style">
          <option value="solid"<?php if ($table_border_style == "solid") { echo " selected"; } ?>>Solid</option>
          <option value="dashed"<?php if ($table_border_style == "dashed") { echo " selected"; } ?>>Dashed</option>
          <option value="dotted"<?php if ($table_border_style == "dotted") { echo " selected"; } ?>>Dotted</option>
        </select>
      </td>
    </tr>
    <tr>
      <td class="text1"><b>Reunuksen väri</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_table_border_color" value="<?php echo $table_border_color; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Cellspacing (ei kannata vaihtaa)</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_table_cellspacing" value="<?php echo $table_cellspacing; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Cellpadding</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_table_cellpadding" value="<?php echo $table_cellpadding; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Dokumentin taustaväri</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_background_body" value="<?php echo $background_body; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Otsikon taustaväri</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_background_title" value="<?php echo $background_title; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Tekstin taustaväri</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_background_text" value="<?php echo $background_text; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Fontti</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_font_face" value="<?php echo $font_face; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Otsikon koko</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_font_size_title" value="<?php echo $font_size_title; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Tekstin koko</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_font_size_text" value="<?php echo $font_size_text; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Nappuloiden, tekstikenttien ym. tekstin koko</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_font_size_buttons" value="<?php echo $font_size_buttons; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Fontin väri, otsikko</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_font_color_title" value="<?php echo $font_color_title; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Fontin väri, teksti</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_font_color_text" value="<?php echo $font_color_text; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Fontin väri, linkki (link)</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_font_color_link" value="<?php echo $font_color_link; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Fontin väri, linkki (alink)</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_font_color_alink" value="<?php echo $font_color_alink; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Fontin väri, linkki (vlink)</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_font_color_vlink" value="<?php echo $font_color_vlink; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Fontin väri, linkki (hover)</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_font_color_hover" value="<?php echo $font_color_hover; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Linkin tyyli (link)</b>&nbsp;</td>
      <td class="text2">
        <select name="edit_text_decoration_link">
          <option value="none"<?php if ($text_decoration_link == "none") { echo " selected"; } ?>>Ei mitään</option>
          <option value="underline"<?php if ($text_decoration_link == "underline") { echo " selected"; } ?>>Alleviivattu</option>
          <option value="overline"<?php if ($text_decoration_link == "overline") { echo " selected"; } ?>>Ylleviivattu</option>
          <option value="line-through"<?php if ($text_decoration_link == "line-through") { echo " selected"; } ?>>Yliviivattu</option>
          <option value="overline underline"<?php if ($text_decoration_link == "overline underline") { echo " selected"; } ?>>Alle- ja ylleviivattu</option>
          <option value="overline underline line-through"<?php if ($text_decoration_link == "overline underline line-through") { echo " selected"; } ?>>Alle-, ylle- ja yliviivattu</option>
        </select>
      </td>
    </tr>
    <tr>
      <td class="text1"><b>Linkin tyyli (alink)</b>&nbsp;</td>
      <td class="text2">
        <select name="edit_text_decoration_alink">
          <option value="none"<?php if ($text_decoration_link == "none") { echo " selected"; } ?>>Ei mitään</option>
          <option value="underline"<?php if ($text_decoration_alink == "underline") { echo " selected"; } ?>>Alleviivattu</option>
          <option value="overline"<?php if ($text_decoration_alink == "overline") { echo " selected"; } ?>>Ylleviivattu</option>
          <option value="line-through"<?php if ($text_decoration_alink == "line-through") { echo " selected"; } ?>>Yliviivattu</option>
          <option value="overline underline"<?php if ($text_decoration_alink == "overline underline") { echo " selected"; } ?>>Alle- ja ylleviivattu</option>
          <option value="overline underline line-through"<?php if ($text_decoration_alink == "overline underline line-through") { echo " selected"; } ?>>Alle-, ylle- ja yliviivattu</option>
        </select>
      </td>
    </tr>
    <tr>
      <td class="text1"><b>Linkin tyyli (vlink)</b>&nbsp;</td>
      <td class="text2">
        <select name="edit_text_decoration_vlink">
          <option value="none"<?php if ($text_decoration_vlink == "none") { echo " selected"; } ?>>Ei mitään</option>
          <option value="underline"<?php if ($text_decoration_vlink == "underline") { echo " selected"; } ?>>Alleviivattu</option>
          <option value="overline"<?php if ($text_decoration_vlink == "overline") { echo " selected"; } ?>>Ylleviivattu</option>
          <option value="line-through"<?php if ($text_decoration_vlink == "line-through") { echo " selected"; } ?>>Yliviivattu</option>
          <option value="overline underline"<?php if ($text_decoration_vlink == "overline underline") { echo " selected"; } ?>>Alle- ja ylleviivattu</option>
          <option value="overline underline line-through"<?php if ($text_decoration_vlink == "overline underline line-through") { echo " selected"; } ?>>Alle-, ylle- ja yliviivattu</option>
        </select>
      </td>
    </tr>
    <tr>
      <td class="text1"><b>Linkin tyyli (hover)</b>&nbsp;</td>
      <td class="text2">
        <select name="edit_text_decoration_hover">
          <option value="none"<?php if ($text_decoration_hover == "none") { echo " selected"; } ?>>Ei mitään</option>
          <option value="underline"<?php if ($text_decoration_hover == "underline") { echo " selected"; } ?>>Alleviivattu</option>
          <option value="overline"<?php if ($text_decoration_hover == "overline") { echo " selected"; } ?>>Ylleviivattu</option>
          <option value="line-through"<?php if ($text_decoration_hover == "line-through") { echo " selected"; } ?>>Yliviivattu</option>
          <option value="overline underline"<?php if ($text_decoration_hover == "overline underline") { echo " selected"; } ?>>Alle- ja ylleviivattu</option>
          <option value="overline underline line-through"<?php if ($text_decoration_hover == "overline underline line-through") { echo " selected"; } ?>>Alle-, ylle- ja yliviivattu</option>
        </select>
      </td>
    </tr>
    <tr>
      <td class="text1"><b>Adminin salasana</b>&nbsp;</td>
      <td class="text2"><input type="password" name="edit_password" value=""><br />(jätä tyhjäksi jos et halua muuttaa)</td>
    </tr>
    <tr>
      <td class="text1"><b>Viestejä/sivu</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="edit_messages_per_page" value="<?php echo $messages_per_page; ?>" size="2"></td>
    </tr>
    <tr>
      <td class="text1">&nbsp;</td>
      <td class="text2"><input type="submit" value="Tallenna">&nbsp;<input type="reset" value="Palauta"></td>
    </tr>
  </table>

</form>
<?php
  }
}
else if ($op == "login") {
?>
<form action="<?php echo $PHP_SELF; ?>" method="post">

<input type="hidden" name="login" value="true">

  <table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
    <tr>
      <td class="title"><center><b>Kirjaudu sisään</b></center></td>
    </tr>
  </table>
  <table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
    <tr>
      <td class="text1"><b>Salasana</b>&nbsp;</td>
      <td class="text2"><input type="password" name="pword"></td>
    </tr>
    <tr>
      <td class="text1">&nbsp;</td>
      <td class="text2"><input type="submit" value="Kirjaudu"></td>
    </tr>
  </table>
</form>
<?php
}
else if ($op == "write") {
?>
<form action="<?php echo $PHP_SELF; ?>" method="post">

<input type="hidden" name="write" value="true">

  <table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
    <tr>
      <td class="title"><center><b>Kirjoita vieraskirjaan</b></center></td>
    </tr>
  </table>
  <table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
    <tr>
      <td class="text1"><b>Nimi</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="name"></td>
    </tr>
    <tr>
      <td class="text1"><b>E-Mail</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="email"></td>
    </tr>
    <tr>
      <td class="text1"><b>Kotisivut</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="url" value="http://"></td>
    </tr>
    <tr>
      <td class="text1"><b>Viesti</b>&nbsp;</td>
      <td class="text2"><textarea name="message" cols="30" rows="6"></textarea></td>
    </tr>
    <tr>
      <td class="text1">&nbsp;</td>
      <td class="text2"><input type="submit" value="Kirjoita"></td>
    </tr>
  </table>
</form>
<?php
}
else if ($op == "answer") {
  $name = "";
  $message = "";

  $msg_file = "messages.txt";
  $msg_data = file($msg_file);
  $msg_total = count($msg_data);


  //Katsotaan löytyykö viestiä johon vastataan
  for ($i=0; $i<$msg_total; $i++) {
    $entry = explode("|", $msg_data[$i]);

    if ($entry[7] == $id) {
      $name = $entry[0];
      $message = $entry[3];
      $old_answer = str_replace("<br />", "\n", $entry[6]);
    }
  }

  if ($name != "" && $message != "") {
  ?>
<form action="<?php echo $PHP_SELF; ?>" method="post">

<input type="hidden" name="answer" value="true">
<input type="hidden" name="id" value="<?php echo $id; ?>">
<input type="hidden" name="wanswer" value="true">
<input type="hidden" name="page" value="<?php echo $page; ?>">

  <table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
    <tr>
      <td class="title"><center><b>Vastaa viestiin</b></center></td>
    </tr>
  </table>
  <table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
    <tr>
      <td class="text1"><b>Kirjoittaja</b>&nbsp;</td>
      <td class="text2"><?php echo $name; ?></td>
    </tr>
    <tr>
      <td class="text1"><b>Viesti</b>&nbsp;</td>
      <td class="text2"><?php echo $message; ?></td>
    </tr>
    <tr>
      <td class="text1">&nbsp;</td>
      <td class="text2">&nbsp;</td>
    </tr>
    <tr>
      <td class="text1"><b>Vastaus</b></td>
      <td class="text2"><textarea name="new_answer" cols="30" rows="6"><?php echo $old_answer; ?></textarea></td>
    </tr>
    <tr>
      <td class="text1">&nbsp;</td>
      <td class="text2"><input type="submit" value="Vastaa"></td>
    </tr>
  </table>
</form>
  <?php
  }
}
else if ($op == "edit") {
  $name = "";
  $message = "";

  $msg_file = "messages.txt";
  $msg_data = file($msg_file);
  $msg_total = count($msg_data);


  //Löytyykö muokattava viesti
  for ($i=0; $i<$msg_total; $i++) {
    $entry = explode("|", $msg_data[$i]);

    if ($entry[7] == $id) {
      $name = $entry[0];
      $email = $entry[1];
      $url = $entry[2];
      $message = str_replace("<br />", "\n", $entry[3]);
      $time = $entry[4];
    }
  }

  if ($name != "" && $message != "") {
  ?>
<form action="<?php echo $PHP_SELF; ?>" method="post">

<input type="hidden" name="edit" value="true">
<input type="hidden" name="id" value="<?php echo $id; ?>">
<input type="hidden" name="wedit" value="true">
<input type="hidden" name="page" value="<?php echo $page; ?>">

  <table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
    <tr>
      <td class="title"><center><b>Muokkaa viestiä</b></center></td>
    </tr>
  </table>
  <table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
    <tr>
      <td class="text1"><b>Nimi</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="new_name" value="<?php echo $name; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>E-Mail</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="new_email" value="<?php echo $email; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Kotisivut</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="new_url" value="<?php echo $url; ?>"></td>
    </tr>
    <tr>
      <td class="text1"><b>Viesti</b>&nbsp;</td>
      <td class="text2"><textarea name="new_message" cols="30" rows="6"><?php echo $message; ?></textarea></td>
    </tr>
    <tr>
      <td class="text1"><b>Kello</b>&nbsp;</td>
      <td class="text2"><input type="text" size="35" name="new_time" value="<?php echo $time; ?>"></td>
    </tr>
    <tr>
      <td class="text1">&nbsp;</td>
      <td class="text2">&nbsp;</td>
    </tr>
    <tr>
      <td class="text1">&nbsp;</td>
      <td class="text2"><input type="submit" value="Muokkaa"></td>
    </tr>
  </table>
</form>
  <?php
  }
}
else if ($op == "remove") {
  $found = "false";

  $msg_file = "messages.txt";
  $msg_data = file($msg_file);
  $msg_total = count($msg_data);


  //Löytyykö poistettava viesti
  for ($i=0; $i<$msg_total; $i++) {
    $entry = explode("|", $msg_data[$i]);

    if ($entry[7] == $id) {
      $found = "true";
    }
  }

  if ($found == "true") {
  ?>
<form action="<?php echo $PHP_SELF; ?>" method="post" name="removeform">

<input type="hidden" name="remove" value="true">
<input type="hidden" name="id" value="<?php echo $id; ?>">
<input type="hidden" name="wremove" value="true">
<input type="hidden" name="page" value="<?php echo $page; ?>">

  <table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
    <tr>
      <td class="title"><center><b>Poista viesti</b></center></td>
    </tr>
  </table>
  <table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
    <tr>
      <td class="text1"><b>Poistetaanko viesti?</b>&nbsp;</td>
      <td class="text2">&nbsp;</td>
    </tr>
    <tr>
      <td class="text1">&nbsp;</td>
      <td class="text2"><a href="<?php echo $PHP_SELF; ?>?remove=true&wremove=true&id=<?php echo $id; ?>&page=<?php echo $page; ?>" onClick="removeform.submit();">Kyllä</a><br /><a href="<?php echo $PHP_SELF; ?>?page=<?php echo $page; ?>">Ei</a></td>
    </tr>
  </table>
</form>
  <?php
  }
}
else {
  $msg_file = "messages.txt";
  $msg_data = file($msg_file);
  $msg_total = count($msg_data);

  if (!$page || $page == 0) { $page = 0; }
  if ($page >= $msg_total) { $page = $msg_total - 1; }

  if ($messages_per_page == 0) {
    $messages_per_page = $msg_total;
    $page = 0;
  }

  if ($messages_per_page > $msg_total) {
    $messages_per_page = $msg_total;
    $page = 0;
  }

  $msg_start = $page * $messages_per_page;
  $msg_end = $page * $messages_per_page + $messages_per_page - 1;

  if ($msg_start < 0) { $msg_start = 0; }
  if ($msg_end >= $msg_total) { $msg_end = $msg_total - 1; }

  $previouspage = $page - 1;
  $nextpage = $page + 1;
?>
<table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
  <tr>
    <td class="title"><center><b>Lue vieraskirjaa</b></center></td>
  </tr>
</table>

<table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
  <tr>
    <td class="text1" align=center><?php
//Valikkosysteemit
if ($msg_total != 0) {

  echo "Viestejä yhteensä ". $msg_total;
  if ($messages_per_page != $msg_total) {
    if ($msg_start == $msg_end) { echo ", näytetään viesti ". intval($msg_start + 1); }
    else { echo ", näytetään viestit ". intval($msg_start  + 1) ."-". intval($msg_end + 1); }
  }

  echo "<br />";

  if ($messages_per_page == $msg_total) {
    echo "Näytetään kaikki viestit";
  }
  else {
    if ($msg_start == 0) {
      if ($messages_per_page == 1) { echo "Edellinen viesti"; }
      else { echo "Edelliset ". $messages_per_page ." viestiä"; }
    }
    else {
      if ($messages_per_page == 1) { echo "<a href=\"". $PHP_SELF ."?page=". $previouspage ."\">Edellinen viesti</a>"; }
      else { echo "<a href=\"". $PHP_SELF ."?page=". $previouspage ."\">Edelliset ". $messages_per_page ." viestiä</a>"; }
    }

    echo " | ";

    if ($msg_end == $msg_total - 1) {
      if ($messages_per_page == 1) { echo "Seuraava viesti"; }
      else { echo "Seuraavat ". $messages_per_page ." viestiä"; }
    }
    else {
      if ($messages_per_page == 1) { echo "<a href=\"". $PHP_SELF ."?page=". $nextpage ."\">Seuraava viesti</a>"; }
      else { echo "<a href=\"". $PHP_SELF ."?page=". $nextpage ."\">Seuraavat ". $messages_per_page ." viestiä</a>";}
    }
  }
}
else {
  echo "Vieraskirjassa ei ole yhtään viestiä";
}
    ?></td>
    <td class="text2">&nbsp;</td>
  </tr>
</table>
<?php

for ($i=$msg_start; $i<=$msg_end; $i++) {
  $entry = explode("|", $msg_data[$i]);
?>
<br />
<table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
  <tr>
    <td class="title"><center><b><?php echo $entry[0]; ?></b></center></td>
  </tr>
</table>
<table width="<?php echo $table_width; ?>" cellspacing="<?php echo $table_cellspacing; ?>" cellpadding="<?php echo $table_cellpadding; ?>">
  <tr>
    <td class="text1" width="75"><b>Nimi</b>&nbsp;</td>
    <td class="text2"><?php echo $entry[0]; ?></td>
  </tr>
<?php
  if ($entry[1] != "") {
?>
  <tr>
    <td class="text1"><b>E-Mail</b>&nbsp;</td>
    <td class="text2"><a href="mailto:<?php echo $entry[1]; ?>"><?php echo $entry[1]; ?></a></td>
  </tr>
<?php
  }
?>
<?php
  if ($entry[2] != "" && $entry[2] != "http://") {
?>
  <tr>
    <td class="text1"><b>Kotisivut</b>&nbsp;</td>
    <td class="text2"><a href="<?php echo $entry[2]; ?>"><?php echo $entry[2]; ?></a></td>
  </tr>
<?php
  }
?>
  <tr>
    <td class="text1"><b>Viesti</b>&nbsp;</td>
    <td class="text2"><?php echo $entry[3]; ?></td>
  </tr>
<?php
  if ($entry[6] != "") {
?>
  <tr>
    <td class="text1"><b>Vastaus</b>&nbsp;</td>
    <td class="text2"><?php echo $entry[6]; ?></td>
  </tr>
<?php
  }
?>
  <tr>
    <td class="text1">&nbsp;</td>
    <td class="text2">Viesti jätetty <?php echo $entry[4]; ?><?php if ($pass == $password && $ipaddr == $REMOTE_ADDR) { echo "<br />\nosoitteesta ". $entry[5]; } ?></td>
  </tr>
<?php
  if ($pass == $password && $ipaddr == $REMOTE_ADDR) {
?>
    <tr>
    <td class="text1">&nbsp;</td>
    <td class="text2"><a href="<?php echo $PHP_SELF; ?>?answer=true&wanswer=false&id=<?php echo $entry[7]; ?>&page=<?php echo $page; ?>">Vastaa viestiin</a> | <a href="<?php echo $PHP_SELF; ?>?edit=true&wedit=false&id=<?php echo $entry[7]; ?>&page=<?php echo $page; ?>">Muokkaa viestiä</a> | <a href="<?php echo $PHP_SELF; ?>?remove=true&wremove=false&id=<?php echo $entry[7]; ?>&page=<?php echo $page; ?>">Poista viesti</a></td>
  </tr>
<?php
}
?>
</table>
  <?php
  }
}
?>

</center>
</body>

</html>

settings.php

<?php
$table_width = "500";

$table_border_size = "1px";
$table_border_style = "solid";
$table_border_color = "#000000";

$table_cellspacing = "0";
$table_cellpadding = "1";

$background_body = "#DDDD77";
$background_title = "#EEEE88";
$background_text = "#FFFF99";

$font_face = "Verdana, Arial, Helvetica, Courier";

$font_size_title = "12px";
$font_size_buttons = "9px";
$font_size_text = "11px";

$font_color_title = "#000000";
$font_color_text = "#000000";

$font_color_link = "#000000";
$font_color_alink = "#000000";
$font_color_vlink = "#000000";
$font_color_hover = "#000000";

$text_decoration_link = "none";
$text_decoration_alink = "none";
$text_decoration_vlink = "none";
$text_decoration_hover = "line-through";

$messages_per_page = "5";

$password = "1bdfeec4704575fe187c2397fecd3d93";
?>

styles.php

<?php include ("settings.php"); // Asetuksii ?>
<style type="text/css">
  body {
    background-color:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
  }
  table {
    font-family:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    font-size:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    color:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
  }
  textarea {
    font-family:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    font-size:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    color:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    background:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
  }
  input {
    font-family:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    font-size:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    color:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    background:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
  }
  select {
    font-family:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    font-size:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    color:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    background:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
  }

  .text1 {
    background-color:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    border-left:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    border-bottom:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
  }
  .text2 {
    background-color:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    border-right:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    border-bottom:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
  }
  .title {
    color:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    background-color:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    border:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    font-size:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
  }

  a:link {
    color:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    text-decoration:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    font-size:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
  }
  a:visited {
    color:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    text-decoration:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    font-size:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
  }
  a:active {
    color:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    text-decoration:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    font-size:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
  }
  a:hover {
    color:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    text-decoration:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
    font-size:OP-php-hax-76yghj8976taghsdjju876tr--OP-php-hax;
  }
</style><?php echo $background_body; ?>OP-php-hax-76yghj8976taghsdjju876tr-1-OP-php-hax<?php echo $font_face; ?>OP-php-hax-76yghj8976taghsdjju876tr-2-OP-php-hax<?php echo $font_size_text; ?>OP-php-hax-76yghj8976taghsdjju876tr-3-OP-php-hax<?php echo $font_color_text; ?>OP-php-hax-76yghj8976taghsdjju876tr-4-OP-php-hax<?php echo $font_face; ?>OP-php-hax-76yghj8976taghsdjju876tr-5-OP-php-hax<?php echo $font_size_buttons; ?>OP-php-hax-76yghj8976taghsdjju876tr-6-OP-php-hax<?php echo $font_color_text; ?>OP-php-hax-76yghj8976taghsdjju876tr-7-OP-php-hax<?php echo $background_text; ?>OP-php-hax-76yghj8976taghsdjju876tr-8-OP-php-hax<?php echo $font_face; ?>OP-php-hax-76yghj8976taghsdjju876tr-9-OP-php-hax<?php echo $font_size_buttons; ?>OP-php-hax-76yghj8976taghsdjju876tr-10-OP-php-hax<?php echo $font_color_text; ?>OP-php-hax-76yghj8976taghsdjju876tr-11-OP-php-hax<?php echo $background_text; ?>OP-php-hax-76yghj8976taghsdjju876tr-12-OP-php-hax<?php echo $font_face; ?>OP-php-hax-76yghj8976taghsdjju876tr-13-OP-php-hax<?php echo $font_size_buttons; ?>OP-php-hax-76yghj8976taghsdjju876tr-14-OP-php-hax<?php echo $font_color_text; ?>OP-php-hax-76yghj8976taghsdjju876tr-15-OP-php-hax<?php echo $background_text; ?>OP-php-hax-76yghj8976taghsdjju876tr-16-OP-php-hax<?php echo $background_text; ?>OP-php-hax-76yghj8976taghsdjju876tr-17-OP-php-hax<?php echo $table_border_style ." ". $table_border_size ." ". $table_border_color; ?>OP-php-hax-76yghj8976taghsdjju876tr-18-OP-php-hax<?php echo $table_border_style ." ". $table_border_size ." ". $table_border_color; ?>OP-php-hax-76yghj8976taghsdjju876tr-19-OP-php-hax<?php echo $background_text; ?>OP-php-hax-76yghj8976taghsdjju876tr-20-OP-php-hax<?php echo $table_border_style ." ". $table_border_size ." ". $table_border_color; ?>OP-php-hax-76yghj8976taghsdjju876tr-21-OP-php-hax<?php echo $table_border_style ." ". $table_border_size ." ". $table_border_color; ?>OP-php-hax-76yghj8976taghsdjju876tr-22-OP-php-hax<?php echo $font_color_title; ?>OP-php-hax-76yghj8976taghsdjju876tr-23-OP-php-hax<?php echo $background_title; ?>OP-php-hax-76yghj8976taghsdjju876tr-24-OP-php-hax<?php echo $table_border_style ." ". $table_border_size ." ". $table_border_color; ?>OP-php-hax-76yghj8976taghsdjju876tr-25-OP-php-hax<?php echo $font_size_title; ?>OP-php-hax-76yghj8976taghsdjju876tr-26-OP-php-hax<?php echo $font_color_link; ?>OP-php-hax-76yghj8976taghsdjju876tr-27-OP-php-hax<?php echo $text_decoration_link; ?>OP-php-hax-76yghj8976taghsdjju876tr-28-OP-php-hax<?php echo $font_size_text; ?>OP-php-hax-76yghj8976taghsdjju876tr-29-OP-php-hax<?php echo $font_color_vlink; ?>OP-php-hax-76yghj8976taghsdjju876tr-30-OP-php-hax<?php echo $text_decoration_vlink; ?>OP-php-hax-76yghj8976taghsdjju876tr-31-OP-php-hax<?php echo $font_size_text; ?>OP-php-hax-76yghj8976taghsdjju876tr-32-OP-php-hax<?php echo $font_color_alink; ?>OP-php-hax-76yghj8976taghsdjju876tr-33-OP-php-hax<?php echo $text_decoration_alink; ?>OP-php-hax-76yghj8976taghsdjju876tr-34-OP-php-hax<?php echo $font_size_text; ?>OP-php-hax-76yghj8976taghsdjju876tr-35-OP-php-hax<?php echo $font_color_hover; ?>OP-php-hax-76yghj8976taghsdjju876tr-36-OP-php-hax<?php echo $text_decoration_hover; ?>OP-php-hax-76yghj8976taghsdjju876tr-37-OP-php-hax<?php echo $font_size_text; ?>OP-php-hax-76yghj8976taghsdjju876tr-38-OP-php-hax

Tumpi [17.02.2003 13:46:22]

#

Siis tarkoitan "optimoitavaa" tolla "optimointia löytyy" :)

T.M. [17.02.2003 19:38:09]

#

no onpas paljon asetuksia!
kai tuo ihan tarpeellinen on joillekkin

snakari [17.02.2003 21:59:02]

#

häpäsee ainakin putkan leiskaa..

Tumpi [17.02.2003 22:23:01]

#

oho näköjään tulikin levee koodivinkki :D

djMiksu [18.02.2003 16:32:34]

#

TOI ON IHA SIKA HYVÄ!!! Muistakaa et laitatte to settings.php:n oikeudet 777:lle...

KimmoKM [18.02.2003 16:57:45]

#

Hienolta näyttää.

Gwaur [19.02.2003 14:54:01]

#

Pitkä. Onkohan putkan pisin?

KimmoKM [19.02.2003 19:51:35]

#

Tuskin tuo pisin on, mutta PITKÄ se on :)

Gwaur [20.02.2003 16:15:48]

#

Oisit voinu kertoa kanssa, että settings.php pitää myös chmodata.
Joo ja hyvin toimii, käykääs porukka muuten osoitteessa http://mbnet.fi/paauli/vierkirj ;)

Mv [26.03.2003 21:49:20]

#

Muuten mainio, mutta vielä viimeistelyä vailla: kirjoittajan nimen voisi linkittää sähköpostiosoitteeseen.

Tumpi [14.04.2003 17:15:28]

#

No sen nyt jokainen voi itsekin tehdä jos tahtoo.

chiqu [18.06.2003 14:27:03]

#

Kiitoksia koodista!
erittäin hyvä ja toimiva.

makeuu [07.10.2003 19:10:38]

#

Käykää tsekkaamassa vieraskirja osoitteessa http://my-design.urli.net , vieraskirjaan oli helppo vaihtaa ulkoasua.. Kiitokset Tumpille.... Hurraa!!!

Tumpi [09.10.2003 10:56:02]

#

makeuu, hyvä jos pidät :) Mulla on nyt PHP-taidot kasvaneet näin ajan myötä, voisi ruveta kehittelemään kakkosversiota Tiekusta.. :D

makeuu [17.10.2003 13:45:40]

#

tumpi, se ois mukava!!!

djMiksu [29.10.2003 13:07:34]

#

Niinpä, en tiedä muuten miks toi adminpaneeli kirjautuu sisään mutta ei voi vastata viestiin tai muokata niitä... siihen tulee vaa tyhjä sivu, mistäköhän on kyse?

Sharph [14.11.2003 18:03:38]

#

Ei kai haittaa jos teen tosta web-palvelun

Joose [16.11.2003 00:06:51]

#

Nii että mites ton salasanan saa muutettua?

TETRIS [15.12.2003 17:15:44]

#

Tämähän on ihan loistava. Juuri tällästä olen etsinyt.

riku [06.01.2004 22:26:40]

#

Hei.
Olen hieman pihalla tämän php koodin kanssa ja kysyisinkin, että miten tuollaisia "oikeuksia" annetaan jollekkin tiedostolle? windows järjestelmässä. Ja kun yritän kirjoittaa Esim: omaan vieraskirjaan ohjelma antaa jonkun näköisen varoitus viestin. Mistäköhän johtuisi? Jos joku viitsis hieman antaa neuvoja...

Tumpi [10.01.2004 01:57:06]

#

riku,

jos omalla Windows-koneellasi tota testaat niin ei tarvitse mitään oikeuksia antaa; jos taas uppaat nettiin niin FTP-ohjelmilla pitäs onnistua oikeuksien jako.

Tumpi [10.01.2004 01:58:55]

#

Ja Topi91, mitäpä se nyt haittaisi.

On muuten kakkosversio melkein valmis, vielä pitäs tehä maholliseksi muuttaa asetuksia suoraan kirjasta..

riku [10.01.2004 19:25:43]

#

>jos omalla Windows-koneellasi tota testaat niin ei tarvitse mitään oikeuksia antaa;

Ok, ihmettelinkin et mistä moisia oikeuksia oikein annan. Sen jostain katsoin, jos sivut jossain netis ni FTP-ohjelmalla saa annettua oikeuksia sinne päin.

kafka [26.02.2004 18:04:32]

#

Erittäin hyvä! Yllätyin noista admin ominaisuuksista! Hyvää työtä!

ajv [16.03.2004 15:46:44]

#

Hienolta näyttää, mutta helvetinmoinen työ tota on soveltaa niin, että se aukee indexin kautta :/

str4nd [25.03.2004 14:31:30]

#

Tämä on ylivoimaisesti paras näkemäni vieraskirja...

lahtis [25.03.2004 23:14:07]

#

Kuinkahan tuohon saisi vielä tuon ohjelm.putkassa esitellyn
"kirosana"-suotimen toimintaan. Sitten tämä olisi täydellinen.

Gordon [02.06.2004 13:51:13]

#

Mikähä mul oikeen on ku mä meen siihen mun viekkuun, ihan mille vaan sivulle niin se valittaa heti siitä salasanasta? :(

Pitääkö mun niinku noitten " hakamerkkien väliin tunkee se Putka salasana tossa index.php:n alussa?...

empty- [29.06.2004 22:01:29]

#

Mikäs on vikana kun painaa Kirjoita tai Admin ei tapahtu mitään ja kun painaa Lue heittää omien sivujen index:iin. Index on nimellä vieraskirja.php

D4_B34M [05.12.2004 03:31:45]

#

Hmm mikäs chmodi index.php? antaa permission deniedin ku yritän muokaa asetuksii

lahtis [08.12.2004 14:39:14]

#

Miksi mulla pukkaa omalla servulla tälläista virheilmoitusta?
Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /var/www/html/new/guest.php:10) in /var/www/html/new/guest.php on line 72

Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /var/www/html/new/guest.php:10) in /var/www/html/new/guest.php on line 72

stere [05.07.2005 17:59:50]

#

jes, toiminnassa: http://koti.mbnet.fi/sllz/new/vieraskirja.php

Steadler [16.01.2006 23:58:28]

#

Itselläni on semmoinen ongelma että kun klikkaan jotain noista kolmesta linkistä (Lue, Kirjoita, Admin) niin mitään ei tapahdu. Tiedostojen index.php, messages.txt, settings.php ja styles.php käyttöoikeudet on laitettu 777. Koodia selaamalla en oikein löytänyt mitään. Ehdotuksia?

timodemus [05.05.2006 20:20:04]

#

Toimii muuten hienosti, mutta viestissä lainausmerkin perään ilmestyy kenoviiva,
Esim:
Kun kirjoittaa vieraskirjaan: "Sana",
se näkyy kirjassa: \"Sana\"

jamppa110 [22.08.2006 00:56:30]

#

http://83.216.19.163 tuolla on vielä keskeneräiset sivut.

Vieraskirja tulee ihan himmeenä koodinpätkänä näkyviin??? varmaan jokin simppeli vika, mutta en vaan tiedä mikä??

Wee [07.09.2008 14:15:30]

#

Jamppa, sulla ei ole php tukea/php ei ole päällä. Tai et ole asentanut sitä koneellesi. Hommaa sivutila vaikkapa jouluserveriltä, ja upi sivusi sinne, sekä kokeile sitten ^^


Sivun alkuun

Vastaus

Aihe on jo aika vanha, joten et voi enää vastata siihen.

Tietoa sivustosta