Visualizzazione dei risultati da 1 a 8 su 8
  1. #1

    Nascondi pagina no file temporanei

    Ciao ragazzi è possibile non fare scaricare nei file temporanei una pagina php ?
    Grazie Zoe

  2. #2

  3. #3
    sono alle prime armi ... non mi puoi aiutare ?

  4. #4
    Utente di HTML.it L'avatar di clasku
    Registrato dal
    Aug 2006
    Messaggi
    3,197
    Dal manuale, la pagina linkata da filippo.toso

    Example #2 Caching directives

    PHP scripts often generate dynamic content that must not be cached by the client browser or any proxy caches between the server and the client browser. Many proxies and clients can be forced to disable caching with:
    <?php
    header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
    header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
    ?>

    Nota: You may find that your pages aren't cached even if you don't output all of the headers above. There are a number of options that users may be able to set for their browser that change its default caching behavior. By sending the headers above, you should override any settings that may otherwise cause the output of your script to be cached.
    Additionally, session_cache_limiter() and the session.cache_limiter configuration setting can be used to automatically generate the correct caching-related headers when sessions are being used.

  5. #5
    grazie .... clasku ma come dicevo sopra sono alle prime armi e del tuo consiglio non ci ho capito niente...

  6. #6
    Utente di HTML.it L'avatar di clasku
    Registrato dal
    Aug 2006
    Messaggi
    3,197
    Devi semplicemente scrivere uno di questi due:
    Codice PHP:
    <?php
    header
    ("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
    header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
    ?>
    come prima cosa nel tuo codice... finito

  7. #7
    Ti ringrazio clasku, ho provato ma non mi funziona, probabilmente la mia incapacità va oltre le mie aspettative .... mi sa che rinuncerò, grazie comunque, spero sia stato di aiuto a qualcun'altro.
    ciao ZOE

  8. #8
    Utente di HTML.it L'avatar di clasku
    Registrato dal
    Aug 2006
    Messaggi
    3,197
    Beh, se dici anche che errore ti dà magari possiamo darti una mano...

    Vedi te

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.