errori scripts index.php

  • Creatore Discussione Creatore Discussione avatar
  • Data di inizio Data di inizio

avatar

Utente Attivo
3 Gen 2017
97
0
6
54
se gentilmente li aiutate per alcuni errori su index php vi dico grazie
primo errore e questo :
[Tue Jan 03 07:43:42 2017] [error] [client 188.143.232.41] PHP Notice: Undefined index: search_user_nick in /var/www/index.php on line 3020
linea 3020 e questa : <input placeholder=\"Nick\" type=\"text\" name=\"search_user_nick\" maxlength=\"255\" size=\"25\" value=\"" . ((te_empty ($_POST ["search_user_nick"]) === false) ? te_html_encode ($_POST ["search_user_nick"]) : "") . "\" />
mi aiutate per favore ? perché lo scripts index.php e tutta un errore
 
ciao
cosa sono quelle funzioni te_empty e te_html_encode? non mi sembrano funzioni native di php (sul manuale non esistono), le hai costruite tu?
 
ciao e una hublist costruita da un programmatore che mi ha dato gli script , il sito funziona ma da tanti errori
 
ciao
non so se costruisci l'imput con un echo, se è così prova
PHP:
echo " <input placeholder=\"Nick\" type=\"text\" name=\"search_user_nick\" maxlength=\"255\" size=\"25\" value=\"" .
    ((!empty ($_POST['search_user_nick'])) ? html_entity_decode ($_POST['search_user_nick']) : "")
    . "\" />";
 
niente da fare , mi sa che il problema e molto complicato , mettendo la stringa il sito non funziona , secondo me prima che mi aiutate dovete vedere il sito e lo script php
 
Attenzione, ho riscontrato un errore:
Il file che hai caricato non ha un'estensione consentita.
 
ciao
facciamo un passo alla volta, da quello che ho capito dallo spezzone di codice che hai postato fa parte di un form.
prova a postare solo quella parte cioe da <form action=........> a </form>
 
non e un forum . e una hublist , se cerchi su Google dchublist capisci come e un sito hublist
 
PHP:
<form method=\"post\" action=\"/?do=hubs&amp;id=" . $row [0] . "&amp;action=ban\">
      <table class=\"nospacing multicol\">
       <tr>
        <td>ID:</td>
        <td>
         <a href=\"/?do=hubs&amp;id=" . $row [0] . "\" target=\"_blank\">" . $row [0] . "</a>
        </td>
       </tr>
       <tr>
        <td>Ban reason</td>
        <td>&nbsp;</td>
       </tr>
       <tr>
        <td>
         <select name=\"ban_reason\">
          <option value=\"\">- Select ban reason -</option>
          <option value=\"Duplicate\">Duplicate</option>
          <option value=\"Fake users\">Fake users</option>
          <option value=\"Other\">Other</option>
         </select>
        </td>
        <td>&nbsp;</td>
       </tr>
      </table>
      <input style=\"margin-top: 5px;\" class=\"button\" type=\"submit\" name=\"ban_send\" value=\"Submit\" />
     </form>
    ";

   } else if ((isset ($_GET ["action"]) === true) and ($_GET ["action"] === "unban") and ($class > 0)) { // action=unban
    mysql_query ("update `hubs` set `status` = 20, `banreason` = null where `id` = " . $row [0] . " limit 1");
    header ("Location: /?do=hubs&id=" . $row [0]);

   } else if ((isset ($_GET ["action"]) === true) and ($_GET ["action"] === "enable") and ($class > 0)) { // action=enable
    mysql_query ("update `hubs` set `status` = 20 where `id` = " . $row [0] . " limit 1");
    header ("Location: /?do=hubs&id=" . $row [0]);

   } else if ((isset ($_GET ["action"]) === true) and ($_GET ["action"] === "disable") and ($class > 0)) { // action=disable
    mysql_query ("delete from `users` where `hub` = " . $row [0]); // delete old users
    mysql_query ("update `hubs` set `status` = 8, `onlineusers` = 0, `totalshare` = 0 where `id` = " . $row [0] . " limit 1");
    header ("Location: /?do=hubs&id=" . $row [0]);

   } else if ((isset ($_GET ["action"]) === true) and ($_GET ["action"] === "restore") and ($class > 0)) { // action=restore
    mysql_query ("update `hubs` set `status` = 0 where `id` = " . $row [0] . " limit 1");
    header ("Location: /?do=hubs&id=" . $row [0]);

   } else if ((isset ($_GET ["action"]) === true) and ($_GET ["action"] === "delete") and ($class > 0)) { // action=delete
    mysql_query ("delete from `users` where `hub` = " . $row [0]); // delete old users
    mysql_query ("delete from `news` where `hub` = " . $row [0]); // delete news
    mysql_query ("update `hubs` set `status` = 19, `onlineusers` = 0, `totalshare` = 0 where `id` = " . $row [0] . " limit 1");
    header ("Location: /?do=hubs&id=" . $row [0]);

   } else if ((isset ($_GET ["action"]) === true) and ($_GET ["action"] === "debug") and ($class > 0)) { // action=debug
    mysql_query ("update `hubs` set `debug` = 1 where `id` = " . $row [0] . " limit 1");
    header ("Location: /?do=hubs&id=" . $row [0]);

   } else if ((isset ($_GET ["action"]) === true) and ($_GET ["action"] === "undebug") and ($class > 0)) { // action=undebug
    mysql_query ("update `hubs` set `debug` = 0 where `id` = " . $row [0] . " limit 1");
    header ("Location: /?do=hubs&id=" . $row [0]);

   } else { // action=show
    if (te_empty ($row [4]) === false) { // hub information
     $hub_name = explode (" - ", $row [4], 2);
     $hub_name = te_html_encode ($hub_name [0]);
    } else {
     $hub_name = "<span style=\"color: #808080;\">Not available</span>";
    }

    $content = "
 
Ultima modifica di un moderatore:

Discussioni simili