The Joomla! Forum ™






Post new topic Reply to topic  [ 2 posts ] 
Author Message
PostPosted: Tue Mar 24, 2009 1:23 pm 
Joomla! Apprentice
Joomla! Apprentice

Joined: Wed Aug 13, 2008 6:49 pm
Posts: 35
En versions 1.5.x., sempre he tingut problemes en el tema de la hora actual del servidor coincideix amb el lloc web.
Per exemple, quan creen un article, la data inici publicació, sempre em donava la guitza, i em contava una hora enrrera.

Partint de l'article JDate offset issue

Editem el fitxer:
libraries/joomla/utilities/date.php

Canviem la linia 52 per:
Code:
   function __construct($date = 'now', $tzOffset = '')


Canviem la línia 56 per:
Code:
         $this->_date = strtotime(gmdate("M d Y H:i:s", time())) + ($tzOffset * 3600);


I afegim després de la funció, les linies:
Code:
      $config = &JFactory::getConfig();
      $tzOffset = $tzOffset ? $tzOffset : $config->getValue('offset');


En total, el principi de la funció ens quedarà:
Code:
   function __construct($date = 'now', $tzOffset = '')
   {
      $config = &JFactory::getConfig();
      $tzOffset = $tzOffset ? $tzOffset : $config->getValue('offset');

      if ($date == 'now' || empty($date))
      {
         //$this->_date = strtotime(gmdate("M d Y H:i:s", time()));
         $this->_date = strtotime(gmdate("M d Y H:i:s", time())) + ($tzOffset * 3600);
         return;
      }


Amb aquests canvis, al mostrar un formulari, ens mostrarà l'hora igual que el servidor.
Si us fixeu, agafem la configuració global del Offset (hora del CMS). No mirem el Offset de l'usuari.

_________________
Please read forum rules regarding signatures: viewtopic.php?t=65


Top
 Profile  
 
PostPosted: Wed Mar 25, 2009 2:26 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Tue Aug 29, 2006 8:23 am
Posts: 148
Location: Mallorca - Spain
Moltes gràcies Raimon per la informació. M'ha anat perfecte per resoldre el tema de l'hora que apareix als components de fòrums.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 



Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB® Forum Software © phpBB Group