Visualizzazione risultati 1 fino 20 di 20

Discussione: Accesso con utenti registrati

  1. #1
    Guest

    Question Accesso con utenti registrati

    Sono riuscito a trovare nel forum questa discussione:
    http://forum.it.altervista.org/php-m...egistrati.html

    Che sono riuscito a seguire fino a quando non si doveva importare il database in PhpMyAdmin poi mi sono bloccato qualcuno potrebbe darmi una mano?
    Grazie

    (senza però scrivere la mitica fase "cerca nel forum" perchè se sono arrivato a chidere vuol dire che non ho trovato)
    Ultima modifica di wtech : 16-04-2009 alle ore 19.12.43

  2. #2
    Guest

    Predefinito

    Quella pagina rimanda a questo script. Nell'archivio che scarichi c'è una pagina readme.txt che spiega come fare.
    Per quanto riguarda il tuo problema, per far funzionare lo script devi creare una tabella all'interno del tuo database. Ora, il file dell'archivio è questo
    Codice:
    CREATE TABLE `maaking_users` (
      `userid` int(11) NOT NULL auto_increment,
      `username` varchar(10) NOT NULL default '',
      `password` varchar(50) NOT NULL default '',
      `email` varchar(50) NOT NULL default '',
      `fullname` varchar(50) default NULL,
      `ipaddress` varchar(50) NOT NULL default '',
      `lastlogin` datetime NOT NULL default '0000-00-00 00:00:00',
      PRIMARY KEY  (`userid`)
    ) TYPE=MyISAM AUTO_INCREMENT=4 ;
    A te basta andare sul tuo pannello di controllo, poi su phpmyadmin, cliccare quindi su sql e scrivere quel codice.
    Ciao.

  3. #3
    Guest

    Predefinito

    Scusa ma non credo di aver capito, ti dico subito che non sono molto pratico dei linguaggi sql e php.

    Ho importato il database come scritto nel file readme ma se tento il log mi esce questo errore:
    http://www.wtech.altervista.org/login_system/admin/

    Non so propio cosa fare, se puoi spiegarmi te ne sarei grato.

    Ciao

  4. #4
    Guest

    Predefinito

    Hai seguito le istruzioni del readme.txt ?
    Devi modificare il file config.php e mettere i dati relativi al tuo database.

    url: localhost
    database: my_wtech
    user: wtech
    pass: (niente)

    Le righe del file che devi modificare sono queste.
    Codice PHP:
    //your databse hostname.
    $dbhost = "localhost";
    //your database username.
    $dbuname = "";
    //your db password
    $dbpass = "";
    $dbname = "database_name_here";

  5. #5
    Guest

    Predefinito

    Ok grazie ora riesco ad entrare, ho fatto il log come amministratore e mi sono trovato nella pagina opzioni dove dovevo inserire le informazioni sul mio sito e ci sono due campi che non capisco:

    Header Template:

    <div align="center">
    <table border="1" width="750" id="table1" cellpadding="2" bordercolor="#C0C0C0" height="74">
    <tr>
    <td bgcolor="#F2FAFF">go to setup and put all your
    stuff header here.</td>
    </tr>
    </table>
    </div>


    <!-- table for main suff-->
    <div align="center">
    <table border="0" width="750" id="table2" cellspacing="4" cellpadding="4">
    <tr>
    <td>

    Footer Template:

    </td>
    </tr>
    </table>
    </div>
    <!-- end of table for main suff-->


    <div align="center">
    <table border="1" width="750" id="table1" cellpadding="2" bordercolor="#C0C0C0" height="50">
    <tr>
    <td bgcolor="#F2FAFF">go to setup and put all your
    stuff footer here.</td>
    </tr>
    </table>
    </div>

    Devo cambiare qualcosa?

    Poi volevo anche chiederti posso modificare (graficamente) le pagine presenti nella cartella?
    Ultima modifica di wtech : 18-04-2009 alle ore 12.30.26

  6. #6
    Guest

    Predefinito

    Si. Quella è la parte relativa all'header (intestazione) e al footer (pié di pagina) che puoi tranquillamente modificare.

  7. #7
    Guest

    Predefinito

    Qualcuno sa se è possibile inserire un script o roba simile in ogni pagina che mostra log-in se non si è effettuato l'accesso e log-out se si è loggati????

  8. #8
    Guest

    Predefinito

    Devi vedere come gestisce lo script il login (sessioni, cookie) e verficare di conseguenza il valore per controllare se è presente o meno (se c'è vuol dire che è loggato altrimenti no).

  9. #9
    Guest

    Predefinito

    Ultima domanda poi ti lascio stare XD come faccio a rendere alcune pagine del mio sito accessibile solo dopo la registrazione?? Quindi dopo un log-in?

  10. #10
    Guest

    Predefinito

    C'è già un esempio sullo script
    Codice PHP:

    include ("config.php");

    //if the user is not logged in, then redirect to login page.
    if (!is_logged_in($user)) {
    header("Location: users.php"); die();
    }else{
    include (
    "header.php");
    //put your code here (protected page).
    echo "Welcome to inex page.";



    include (
    "footer.php");
    }

  11. #11
    Guest

    Predefinito

    Quindi devo inserire questo codice nella mia pagina e diventerà accessibile solo con accesso.

    Ma esattamente dove Body o head?
    Devo convertire la mia pagina html in php?

  12. #12
    Guest

    Predefinito

    Certo. Devi inserire il codice html nella pagina php. Non puoi fare il controllo in html.
    Codice PHP:
    <?php
    include ("config.php");

    //if the user is not logged in, then redirect to login page.
    if (!is_logged_in($user)) {
    header("Location: users.php"); die();
    }else{
    include (
    "header.php");
    ?>

    Qui il tuo codice HTML visibile SOLO agli utenti registrati!

    <?php

    include ("footer.php");
    }

  13. #13
    Guest

    Predefinito

    Quindi diciamo che questo sia il codice di una pagina PHP:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
    <title>Portali - Scrivi</title>
    <style type="text/css">
    .style8 {
    background-color: #000000;
    }
    .style9 {
    text-align: center;
    }
    .style11 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 60px;
    }
    .style13 {
    border-width: 1px;
    }
    .style15 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    }
    a:visited {
    color: #000000;
    }
    a:hover {
    color: #FFFFFF;
    }
    .style17 {
    text-decoration: none;
    }
    a {
    color: #000000;
    }
    .style20 {
    text-align: right;
    }
    .style21 {
    font-family: Arial, Helvetica, sans-serif;
    }
    .style24 {
    font-size: small;
    color: #999999;
    }
    .style26 {
    text-decoration: none;
    }
    .style32 {
    text-align: right;
    color: #C0C0C0;
    }
    .style31 {
    font-size: small;
    }
    .style33 {
    text-align: right;
    text-decoration: none;
    }
    .style34 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    }
    .style40 {
    text-align: center;
    background-image: url('Immagini/immagine001.gif');
    }
    .style42 {
    border: 1px solid #FFCC00;
    background-color: #FFCC00;
    }
    .style43 {
    font-size: 60px;
    color: #FFFFFF;
    }
    .style38 {
    font-size: 40px;
    color: #FFFFFF;
    }
    .style44 {
    font-family: Arial, Helvetica, sans-serif;
    text-align: right;
    }
    .style45 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    text-align: center;
    }
    .style46 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    }
    .style22 {
    font-size: small;
    }
    .style58 {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-style: none;
    border-top-width: medium;
    border-bottom-width: 1px;
    }
    </style>
    </head>

    <body style="background-image: url('Immagini/sfondo.gif')">

    <table align="center" style="width: 98%; height: 100%">
    <tbody>
    <tr>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td class="style11">
    <span class="style43">WorldTech</span> <span class="style38">Portali</span></td>
    </tr>
    <tr>
    <td class="style44"><script type="text/javascript">
    //<![CDATA[
    document.write('<s'+'cript type="text/javascript" src="http://search.altervista.org/js/wt/wtech.js?'+new Date().getTime()+'"><\/s'+'cript>');
    //]]>
    </script>
    </td>
    </tr>
    <tr>
    <td class="style21" style="height: 10px">
    &nbsp;</td>
    </tr>
    <tr>
    <td class="style13">
    <table class="style8" style="width: 100%">
    <tr>
    <td class="style9">
    <a href="index.html">
    <img id="img7" alt="Home" height="20" src="Immagini/button263.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Home" --></a></td>
    <td class="style9"><a href="portali/index.html">
    <img id="img8" alt="Portali" height="20" src="Immagini/button264.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Portali" --></a></td>
    <td class="style9"><a href="programmi/index.html">
    <img id="img9" alt="Programmi" height="20" src="Immagini/button265.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Programmi" --></a></td>
    <td class="style9"><a href="speciale/index.html">
    <img id="img10" alt="Speciale" height="20" src="Immagini/button266.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Speciale" --></a></td>
    <td class="style40" style="width: 140px">
    <a href="forum.html">
    <img id="img11" alt="Forum" height="20" src="Immagini/button267.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Forum" --></a></td>
    </tr>
    <tr>
    <td class="style42" colspan="5">&nbsp;</td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td>
    &nbsp;</td>
    </tr>
    <tr>
    <td>
    <table style="width: 100%">
    <tbody>
    <tr>
    <td class="style21">&nbsp;</td>
    </tr>
    <tr>
    <td class="style34">Aggiungi un tuo articolo:</td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td class="style15">Per inserire il tuo articolo nella sezione
    portali carica il file* utilizzando il box sottostante.</td>
    </tr>
    <tr>
    <td class="style15">Il file deve sottostare al modello
    presentato in questa <a class="style17" href="portali/modello.html">pagina</a>.</td>
    </tr>
    <tr>
    <td class="style15">&nbsp;</td>
    </tr>
    <tr>
    <td class="style46">* Il file deve essere in un formato
    compatibile: Office 2000, Office 2003, Office 2007, txt, HTML.<br />
    &nbsp; Per informazione sul utilizzo di altri formati rivolgersi al centro
    assistenza.</td>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></tr>
    <tr>
    <td class="style46" style="height: 60px">&nbsp;</td>
    </tr>
    <tr>
    <td style="width: 55%" class="style45"><script type="text/javascript" src="http://www.altervista.org/js_tags/hdd.js"></script></td>
    </tr>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body>
    <tr>
    <td style="height: 50px">&nbsp;</td>
    </tr></tbody>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></table>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></td>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></tr>
    <body style="background-image: url('Immagini/sfondo.gif')">
    <tr>
    <td class="style21"><span class="style24">2009
    <a class="style17" href="index.html">WorldTech</a>. Tutti i diritti riservati.&nbsp;&nbsp;&nbsp;&nbsp;
    <a class="style17" href="copyright.html">Copyright</a> -
    <a class="style17" href="informazioni.html">Informazioni</a> - <span class="style22"> <span class="style33">
    <span class="style58"><a class="style33" href="users.php">Profilo</a></span></span></span></span><span class="style20"><span class="style26"><span class="style32">
    - </span><a class="style33" href="assistenza.html">
    <span class="style31">Assistenza</span></a></span></span></td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    </tr>
    </body></tbody>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></table>
    <body style="background-image: url('Immagini/sfondo.gif')">

    </body>
    </body>
    </html>
    DOve dovrei inserire questo codice:
    <?php
    include ("config.php");

    //if the user is not logged in, then redirect to login page.
    if (!is_logged_in($user)) {
    header("Location: users.php"); die();
    }else{
    include ("header.php");
    ?>

    Qui il tuo codice HTML visibile SOLO agli utenti registrati!

    <?php

    include ("footer.php");
    }
    Ultima modifica di wtech : 19-04-2009 alle ore 20.28.24

  14. #14
    Guest

    Predefinito

    Quel codice lo devi mettere al posto di
    Codice:
    Qui il tuo codice HTML visibile SOLO agli utenti registrati!
    Quindi dovrebbe essere così.
    Codice PHP:
    <?php
    include ("config.php");

    //if the user is not logged in, then redirect to login page.
    if (!is_logged_in($user)) {
    header("Location: users.php"); die();
    }else{
    ?>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
    <title>Portali - Scrivi</title>
    <style type="text/css">
    .style8 {
    background-color: #000000;
    }
    .style9 {
    text-align: center;
    }
    .style11 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 60px;
    }
    .style13 {
    border-width: 1px;
    }
    .style15 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    }
    a:visited {
    color: #000000;
    }
    a:hover {
    color: #FFFFFF;
    }
    .style17 {
    text-decoration: none;
    }
    a {
    color: #000000;
    }
    .style20 {
    text-align: right;
    }
    .style21 {
    font-family: Arial, Helvetica, sans-serif;
    }
    .style24 {
    font-size: small;
    color: #999999;
    }
    .style26 {
    text-decoration: none;
    }
    .style32 {
    text-align: right;
    color: #C0C0C0;
    }
    .style31 {
    font-size: small;
    }
    .style33 {
    text-align: right;
    text-decoration: none;
    }
    .style34 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    }
    .style40 {
    text-align: center;
    background-image: url('Immagini/immagine001.gif');
    }
    .style42 {
    border: 1px solid #FFCC00;
    background-color: #FFCC00;
    }
    .style43 {
    font-size: 60px;
    color: #FFFFFF;
    }
    .style38 {
    font-size: 40px;
    color: #FFFFFF;
    }
    .style44 {
    font-family: Arial, Helvetica, sans-serif;
    text-align: right;
    }
    .style45 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    text-align: center;
    }
    .style46 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    }
    .style22 {
    font-size: small;
    }
    .style58 {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-style: none;
    border-top-width: medium;
    border-bottom-width: 1px;
    }
    </style>
    </head>

    <body style="background-image: url('Immagini/sfondo.gif')">

    <table align="center" style="width: 98%; height: 100%">
    <tbody>
    <tr>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td class="style11">
    <span class="style43">WorldTech</span> <span class="style38">Portali</span></td>
    </tr>
    <tr>
    <td class="style44"><script type="text/javascript">
    //<![CDATA[
    document.write('<s'+'cript type="text/javascript" src="http://search.altervista.org/js/wt/wtech.js?'+new Date().getTime()+'"><\/s'+'cript>');
    //]]>
    </script>
    </td>
    </tr>
    <tr>
    <td class="style21" style="height: 10px">
    &nbsp;</td>
    </tr>
    <tr>
    <td class="style13">
    <table class="style8" style="width: 100%">
    <tr>
    <td class="style9">
    <a href="index.html">
    <img id="img7" alt="Home" height="20" src="Immagini/button263.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Home" --></a></td>
    <td class="style9"><a href="portali/index.html">
    <img id="img8" alt="Portali" height="20" src="Immagini/button264.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Portali" --></a></td>
    <td class="style9"><a href="programmi/index.html">
    <img id="img9" alt="Programmi" height="20" src="Immagini/button265.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Programmi" --></a></td>
    <td class="style9"><a href="speciale/index.html">
    <img id="img10" alt="Speciale" height="20" src="Immagini/button266.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Speciale" --></a></td>
    <td class="style40" style="width: 140px">
    <a href="forum.html">
    <img id="img11" alt="Forum" height="20" src="Immagini/button267.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Forum" --></a></td>
    </tr>
    <tr>
    <td class="style42" colspan="5">&nbsp;</td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td>
    &nbsp;</td>
    </tr>
    <tr>
    <td>
    <table style="width: 100%">
    <tbody>
    <tr>
    <td class="style21">&nbsp;</td>
    </tr>
    <tr>
    <td class="style34">Aggiungi un tuo articolo:</td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td class="style15">Per inserire il tuo articolo nella sezione
    portali carica il file* utilizzando il box sottostante.</td>
    </tr>
    <tr>
    <td class="style15">Il file deve sottostare al modello
    presentato in questa <a class="style17" href="portali/modello.html">pagina</a>.</td>
    </tr>
    <tr>
    <td class="style15">&nbsp;</td>
    </tr>
    <tr>
    <td class="style46">* Il file deve essere in un formato
    compatibile: Office 2000, Office 2003, Office 2007, txt, HTML.<br />
    &nbsp; Per informazione sul utilizzo di altri formati rivolgersi al centro
    assistenza.</td>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></tr>
    <tr>
    <td class="style46" style="height: 60px">&nbsp;</td>
    </tr>
    <tr>
    <td style="width: 55%" class="style45"><script type="text/javascript" src="http://www.altervista.org/js_tags/hdd.js"></script></td>
    </tr>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body>
    <tr>
    <td style="height: 50px">&nbsp;</td>
    </tr></tbody>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></table>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></td>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></tr>
    <body style="background-image: url('Immagini/sfondo.gif')">
    <tr>
    <td class="style21"><span class="style24">2009
    <a class="style17" href="index.html">WorldTech</a>. Tutti i diritti riservati.&nbsp;&nbsp;&nbsp;&nbsp;
    <a class="style17" href="copyright.html">Copyright</a> -
    <a class="style17" href="informazioni.html">Informazioni</a> - <span class="style22"> <span class="style33">
    <span class="style58"><a class="style33" href="users.php">Profilo</a></span></span></span></span><span class="style20"><span class="style26"><span class="style32">
    - </span><a class="style33" href="assistenza.html">
    <span class="style31">Assistenza</span></a></span></span></td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    </tr>
    </body></tbody>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></table>
    <body style="background-image: url('Immagini/sfondo.gif')">

    </body>
    </body>
    </html>
    <?php
    }

  15. #15
    Guest

    Predefinito

    ok ho fatto ho inserito il codice:
    <?php
    include ("config.php");

    //if the user is not logged in, then redirect to login page.
    if (!is_logged_in($user)) {
    header("Location: users.php"); die();
    }else{
    include ("header.php");
    ?>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
    <title>Portali - Scrivi</title>
    <style type="text/css">
    .style8 {
    background-color: #000000;
    }
    .style9 {
    text-align: center;
    }
    .style11 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 60px;
    }
    .style13 {
    border-width: 1px;
    }
    .style15 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    }
    a:visited {
    color: #000000;
    }
    a:hover {
    color: #FFFFFF;
    }
    .style17 {
    text-decoration: none;
    }
    a {
    color: #000000;
    }
    .style20 {
    text-align: right;
    }
    .style21 {
    font-family: Arial, Helvetica, sans-serif;
    }
    .style24 {
    font-size: small;
    color: #999999;
    }
    .style26 {
    text-decoration: none;
    }
    .style32 {
    text-align: right;
    color: #C0C0C0;
    }
    .style31 {
    font-size: small;
    }
    .style33 {
    text-align: right;
    text-decoration: none;
    }
    .style34 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    }
    .style40 {
    text-align: center;
    background-image: url('Immagini/immagine001.gif');
    }
    .style42 {
    border: 1px solid #FFCC00;
    background-color: #FFCC00;
    }
    .style43 {
    font-size: 60px;
    color: #FFFFFF;
    }
    .style38 {
    font-size: 40px;
    color: #FFFFFF;
    }
    .style44 {
    font-family: Arial, Helvetica, sans-serif;
    text-align: right;
    }
    .style45 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    text-align: center;
    }
    .style46 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    }
    .style22 {
    font-size: small;
    }
    .style58 {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-style: none;
    border-top-width: medium;
    border-bottom-width: 1px;
    }
    </style>
    </head>

    <body style="background-image: url('Immagini/sfondo.gif')">

    <table align="center" style="width: 98%; height: 100%">
    <tbody>
    <tr>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td class="style11">
    <span class="style43">WorldTech</span> <span class="style38">Portali</span></td>
    </tr>
    <tr>
    <td class="style44"><script type="text/javascript">
    //<![CDATA[
    document.write('<s'+'cript type="text/javascript" src="http://search.altervista.org/js/wt/wtech.js?'+new Date().getTime()+'"><\/s'+'cript>');
    //]]>
    </script>
    </td>
    </tr>
    <tr>
    <td class="style21" style="height: 10px">
    &nbsp;</td>
    </tr>
    <tr>
    <td class="style13">
    <table class="style8" style="width: 100%">
    <tr>
    <td class="style9">
    <a href="index.html">
    <img id="img7" alt="Home" height="20" src="Immagini/button263.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Home" --></a></td>
    <td class="style9"><a href="portali/index.html">
    <img id="img8" alt="Portali" height="20" src="Immagini/button264.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Portali" --></a></td>
    <td class="style9"><a href="programmi/index.html">
    <img id="img9" alt="Programmi" height="20" src="Immagini/button265.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Programmi" --></a></td>
    <td class="style9"><a href="speciale/index.html">
    <img id="img10" alt="Speciale" height="20" src="Immagini/button266.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Speciale" --></a></td>
    <td class="style40" style="width: 140px">
    <a href="forum.html">
    <img id="img11" alt="Forum" height="20" src="Immagini/button267.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Forum" --></a></td>
    </tr>
    <tr>
    <td class="style42" colspan="5">&nbsp;</td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td>
    &nbsp;</td>
    </tr>
    <tr>
    <td>
    <table style="width: 100%">
    <tbody>
    <tr>
    <td class="style21">&nbsp;</td>
    </tr>
    <tr>
    <td class="style34">Aggiungi un tuo articolo:</td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td class="style15">Per inserire il tuo articolo nella sezione
    portali carica il file* utilizzando il box sottostante.</td>
    </tr>
    <tr>
    <td class="style15">Il file deve sottostare al modello
    presentato in questa <a class="style17" href="portali/modello.html">pagina</a>.</td>
    </tr>
    <tr>
    <td class="style15">&nbsp;</td>
    </tr>
    <tr>
    <td class="style46">* Il file deve essere in un formato
    compatibile: Office 2000, Office 2003, Office 2007, txt, HTML.<br />
    &nbsp; Per informazione sul utilizzo di altri formati rivolgersi al centro
    assistenza.</td>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></tr>
    <tr>
    <td class="style46" style="height: 60px">&nbsp;</td>
    </tr>
    <tr>
    <td style="width: 55%" class="style45"><script type="text/javascript" src="http://www.altervista.org/js_tags/hdd.js"></script></td>
    </tr>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body>
    <tr>
    <td style="height: 50px">&nbsp;</td>
    </tr></tbody>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></table>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></td>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></tr>
    <body style="background-image: url('Immagini/sfondo.gif')">
    <tr>
    <td class="style21"><span class="style24">2009
    <a class="style17" href="index.html">WorldTech</a>. Tutti i diritti riservati.&nbsp;&nbsp;&nbsp;&nbsp;
    <a class="style17" href="copyright.html">Copyright</a> -
    <a class="style17" href="informazioni.html">Informazioni</a> - <span class="style22"> <span class="style33">
    <span class="style58"><a class="style33" href="users.php">Profilo</a></span></span></span></span><span class="style20"><span class="style26"><span class="style32">
    - </span><a class="style33" href="assistenza.html">
    <span class="style31">Assistenza</span></a></span></span></td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    </tr>
    </body></tbody>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></table>
    <body style="background-image: url('Immagini/sfondo.gif')">

    </body>
    </body>
    </html>

    <?php

    include ("footer.php");
    }
    Questa è la pagina
    http://www.wtech.altervista.org/scrivi2.php

    Mi da questo errore:
    Fatal error: Call to undefined function: is_logged_in() in /membri/wtech/scrivi2.php on line 5

    La mia riga 5 è questa:
    if (!is_logged_in($user)) {
    Cosa sbaglio?

  16. #16
    Guest

    Predefinito

    Dentro a quella cartella c'è il file config.php dello script che hai scaricato?
    Se no metticelo.
    Per non avere problemi di inclusione metti tutto in un'unica cartella, altrimenti, quando fai un'include devi specificare anche la sotto cartella o la cartella superiore.
    include("sottocartella/file.php");
    o
    include("../file.php"); //include il file della parent directory.
    Ultima modifica di stoner : 19-04-2009 alle ore 21.14.12

  17. #17
    Guest

    Predefinito

    Non funziona ancora.
    Comunque nella cartella ho trovato questo codice:

    <?PHP


    include ("functions.php");

    //if the user is logged in.
    if (is_logged_in($user)) {

    include ("header.php");
    //////////////////////////////////////

    //so you can put all your protected code here.
    echo "<center> you are logged in. </center>";

    /////////////////////////////// ////
    include ("footer.php");


    //if the user is not logged in, then tell him to login.
    }else{
    header("Location: users.php"); die();
    }
    Ho capito che se inserisco delle parole al posto di "you are logged in." lui me le fa vedere solo se sono in linea, altrimenti mi fa loggare.
    Ma non riesco ad inserire il codice html di una pagina.

  18. #18
    Guest

    Predefinito

    Scusa ma abbiamo scaricato lo stesso login o no? Il mio file si chiama config.php il tuo functions.php. Onde evitare problemi futuri dammi il link dal quale hai scaricato lo script.
    Codice PHP:
    <?php


    include ("functions.php");

    //if the user is logged in.
    if (is_logged_in($user)) {

    include (
    "header.php");
    //////////////////////////////////////

    //so you can put all your protected code here.
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
    <title>Portali - Scrivi</title>
    <style type="text/css">
    .style8 {
    background-color: #000000;
    }
    .style9 {
    text-align: center;
    }
    .style11 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 60px;
    }
    .style13 {
    border-width: 1px;
    }
    .style15 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    }
    a:visited {
    color: #000000;
    }
    a:hover {
    color: #FFFFFF;
    }
    .style17 {
    text-decoration: none;
    }
    a {
    color: #000000;
    }
    .style20 {
    text-align: right;
    }
    .style21 {
    font-family: Arial, Helvetica, sans-serif;
    }
    .style24 {
    font-size: small;
    color: #999999;
    }
    .style26 {
    text-decoration: none;
    }
    .style32 {
    text-align: right;
    color: #C0C0C0;
    }
    .style31 {
    font-size: small;
    }
    .style33 {
    text-align: right;
    text-decoration: none;
    }
    .style34 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    }
    .style40 {
    text-align: center;
    background-image: url('Immagini/immagine001.gif');
    }
    .style42 {
    border: 1px solid #FFCC00;
    background-color: #FFCC00;
    }
    .style43 {
    font-size: 60px;
    color: #FFFFFF;
    }
    .style38 {
    font-size: 40px;
    color: #FFFFFF;
    }
    .style44 {
    font-family: Arial, Helvetica, sans-serif;
    text-align: right;
    }
    .style45 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    text-align: center;
    }
    .style46 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    }
    .style22 {
    font-size: small;
    }
    .style58 {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-style: none;
    border-top-width: medium;
    border-bottom-width: 1px;
    }
    </style>
    </head>

    <body style="background-image: url('Immagini/sfondo.gif')">

    <table align="center" style="width: 98%; height: 100%">
    <tbody>
    <tr>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td class="style11">
    <span class="style43">WorldTech</span> <span class="style38">Portali</span></td>
    </tr>
    <tr>
    <td class="style44"><script type="text/javascript">
    //<![CDATA[
    document.write('<s'+'cript type="text/javascript" src="http://search.altervista.org/js/wt/wtech.js?'+new Date().getTime()+'"><\/s'+'cript>');
    //]]>
    </script>
    </td>
    </tr>
    <tr>
    <td class="style21" style="height: 10px">
    &nbsp;</td>
    </tr>
    <tr>
    <td class="style13">
    <table class="style8" style="width: 100%">
    <tr>
    <td class="style9">
    <a href="index.html">
    <img id="img7" alt="Home" height="20" src="Immagini/button263.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Home" --></a></td>
    <td class="style9"><a href="portali/index.html">
    <img id="img8" alt="Portali" height="20" src="Immagini/button264.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Portali" --></a></td>
    <td class="style9"><a href="programmi/index.html">
    <img id="img9" alt="Programmi" height="20" src="Immagini/button265.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Programmi" --></a></td>
    <td class="style9"><a href="speciale/index.html">
    <img id="img10" alt="Speciale" height="20" src="Immagini/button266.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Speciale" --></a></td>
    <td class="style40" style="width: 140px">
    <a href="forum.html">
    <img id="img11" alt="Forum" height="20" src="Immagini/button267.gif" style="border: 0" width="100" /><!-- MSComment="ibutton" fp-style="fp-btn: Simple Text 3; fp-font: Arial, Helvetica, sans-serif; fp-font-style: Bold; fp-font-size: 12; fp-font-color-normal: #FFFFFF; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-transparent: 1" fp-title="Forum" --></a></td>
    </tr>
    <tr>
    <td class="style42" colspan="5">&nbsp;</td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td>
    &nbsp;</td>
    </tr>
    <tr>
    <td>
    <table style="width: 100%">
    <tbody>
    <tr>
    <td class="style21">&nbsp;</td>
    </tr>
    <tr>
    <td class="style34">Aggiungi un tuo articolo:</td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td class="style15">Per inserire il tuo articolo nella sezione
    portali carica il file* utilizzando il box sottostante.</td>
    </tr>
    <tr>
    <td class="style15">Il file deve sottostare al modello
    presentato in questa <a class="style17" href="portali/modello.html">pagina</a>.</td>
    </tr>
    <tr>
    <td class="style15">&nbsp;</td>
    </tr>
    <tr>
    <td class="style46">* Il file deve essere in un formato
    compatibile: Office 2000, Office 2003, Office 2007, txt, HTML.<br />
    &nbsp; Per informazione sul utilizzo di altri formati rivolgersi al centro
    assistenza.</td>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></tr>
    <tr>
    <td class="style46" style="height: 60px">&nbsp;</td>
    </tr>
    <tr>
    <td style="width: 55%" class="style45"><script type="text/javascript" src="http://www.altervista.org/js_tags/hdd.js"></script></td>
    </tr>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body>
    <tr>
    <td style="height: 50px">&nbsp;</td>
    </tr></tbody>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></table>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></td>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></tr>
    <body style="background-image: url('Immagini/sfondo.gif')">
    <tr>
    <td class="style21"><span class="style24">2009
    <a class="style17" href="index.html">WorldTech</a>. Tutti i diritti riservati.&nbsp;&nbsp;&nbsp;&nbsp;
    <a class="style17" href="copyright.html">Copyright</a> -
    <a class="style17" href="informazioni.html">Informazioni</a> - <span class="style22"> <span class="style33">
    <span class="style58"><a class="style33" href="users.php">Profilo</a></span></span></span></span><span class="style20"><span class="style26"><span class="style32">
    - </span><a class="style33" href="assistenza.html">
    <span class="style31">Assistenza</span></a></span></span></td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    </tr>
    </body></tbody>
    <body style="background-image: url('Immagini/sfondo.gif')">
    </body></table>
    <body style="background-image: url('Immagini/sfondo.gif')">

    </body>
    </body>
    </html>
    <?php

    /////////////////////////////// ////
    include ("footer.php");


    //if the user is not logged in, then tell him to login.
    }else{
    header("Location: users.php"); die();
    }
    ?>
    Ciao

  19. #19
    Guest

    Predefinito

    Io ho scaricato il file da
    http://www.maaking.com/
    E quel codice arriva dal file example.php

  20. #20
    Guest

    Predefinito

    Grazie mille! il codice che mi hai dato funziona!

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •