Changeset 1080


Ignore:
Timestamp:
Mar 15, 2006, 12:52:47 AM (18 years ago)
Author:
rvelices
Message:

fix: help button was not working in the site manager

fix: incorrect session deletion in maintenance.php

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/maintenance.php

    r1072 r1080  
    7272  case 'sessions' :
    7373  {
    74     $query = '
    75 DELETE
    76   FROM '.SESSIONS_TABLE.'
    77   WHERE expiration < NOW()
    78 ;';
    79     pwg_query($query);
     74    pwg_session_gc();
    8075    break;
    8176  }
     
    114109    )
    115110  );
    116  
     111
    117112// +-----------------------------------------------------------------------+
    118113// |                           sending html code                           |
  • trunk/admin/site_manager.php

    r1072 r1080  
    202202
    203203$template->assign_vars( array(
     204  'U_HELP' => PHPWG_ROOT_PATH.'/popuphelp.php?page=remote_site',
    204205  'F_ACTION' => PHPWG_ROOT_PATH.'admin.php'
    205206                .get_query_string_diff( array('action','site') )
  • trunk/language/en_UK.iso-8859-1/help/remote_site.html

    r858 r1080  
    1 <h2>Remote site</h2>
     1<h2>Remote sites</h2>
    22
    33<p>PhpWebGallery offers the possibility to use several servers to store the
     
    1919  class="filename">http://example.com/galleries/create_listing_file.php</span>.</li>
    2020
    21   <li>go to <span class="pwgScreen">administration panel, General, Remote
    22   sites</span>. Ask to create a new site, for example <span
     21  <li>go to <span class="pwgScreen">administration panel, General, Site
     22  manager</span>. Ask to create a new site, for example <span
    2323  class="filename">http://example.com/galleries</span>.</li>
    2424
     
    3030      generate a distant file listing</li>
    3131
    32       <li><strong>update</strong> : reads the distant <span
     32      <li><strong>synchronize</strong> : reads the distant <span
    3333      class="filename">listing.xml</span> file and synchronizes with
    3434      database informations.</li>
     
    4444</ol>
    4545
    46 <p>You can do all this by hand by generating yourself the <span
     46<!-- <p>You can do all this by hand by generating yourself the <span
    4747class="filename">listing.xml</span> file, moving it from your distant server
    4848to you local PhpWebGallery root directory and opening the remote site
    4949management screen : PhpWebGallery will propose you to use the found
    50 listing.xml file.</p>
     50listing.xml file.</p>-->
    5151
  • trunk/language/fr_FR.iso-8859-1/help/remote_site.html

    r889 r1080  
    2121class="filename">http://exemple.com/galleries/create_listing_file.php</span>.</li>
    2222
    23   <li>Se rendre sur <span class="pwgScreen">Administration, Général, Sites
    24 distant</span>. Demander à créer un nouveau site, par exemple <span
     23  <li>Se rendre sur <span class="pwgScreen">Administration, Général,
     24Gestionnaire des sites</span>. Demander à créer un nouveau site, par exemple <span
    2525class="filename">http://exemple.com/galleries</span>.</li>
    2626
     
    3434générer le fichier de listing distant</li>
    3535
    36       <li><strong>mettre à jour</strong> : lit le fichier distant <span
     36      <li><strong>synchroniser</strong> : lit le fichier distant <span
    3737class="filename">listing.xml</span> et synchronise avec la base de données
    3838locale</li>
     
    5050</ol>
    5151
    52 <p>Vous pouvez également effectuer ces opérations manuellement en éditant
     52<!--<p>Vous pouvez également effectuer ces opérations manuellement en éditant
    5353le fichier <span class="filename">listing.xml</span> à la main et en le
    5454déplaçant vers votre répertoire racine. Se rendre sur <span
    5555class="pwgScreen">Administration, Général, Sites distant</span> :
    56 PhpWebGallery détecte le fichier et propose de s'en servir.</p>
     56PhpWebGallery détecte le fichier et propose de s'en servir.</p>-->
Note: See TracChangeset for help on using the changeset viewer.