Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i followed steps on this link to add a date field to my custom module :

http://magentomechanic.blogspot.com/2010/01/to-add-custom-date-field-in-custom.html

Everything went fine, except for the that when i select a date and save configurations, it returns me date one day before the selected one :(

For Example :

When i select 25 Feb, 2012 and save , it will save and return 24 Feb, 2012.

Notice it saved one day before :(

i get this when i print_r($model) in admin controller before save:

[start_date] => 2012-01-24 16:00:00 // i set it to 25 but its saving 24
[end_date] => 2012-01-26 16:00:00  // i set it to 27 but .....
[status] => 1 [content] => asdasdadsd  
[created_time] => 2012-01-25 07:27:11 // it gives current date and it is O'rite
[update_time] => 2012-01-25 07:27:11 ) //it gives current date and it is O'rite

NOTE:

i echo the posted date and it was right what i set to mean there is no problem with the post data, mean client side is clear for any bug, so where the problem lies is when it is converted to save in database !!! Any help ???

Here is my initiall code i tried :

if($data['start_date'] != NULL )
                {
                $date = Mage::app()->getLocale()->date($data['start_date'], Zend_Date::DATE_SHORT);
                $model->setStartDate($date->toString('YYYY-MM-dd HH:mm:ss'));
                }
                if($data['end_date'] != NULL)
                {
                $date1 = Mage::app()->getLocale()->date($data['end_date'], Zend_Date::DATE_SHORT);
                $model->setEndDate($date1->toString('YYYY-MM-dd HH:mm:ss'));
                }

then i tried this one :

echo $format = Mage::app()->getLocale()->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT).'<br/>';
                if($data['start_date'] != NULL )
                {
                    echo $data['start_date']."<br/>"; // 01/27/12 correct date posted which i entered
                    $date = Mage::app()->getLocale()->date($data['start_date'], $format);
                    echo $date; /// Jan 26, 2012 4:00:00 PM but here we get back to one day
                    $time = $date->getTimestamp();
                    $model->setStartDate(Mage::getSingleton('core/date')->date(null, $time));

                    //$model->setStartDate($date->toString('YYYY-MM-dd HH:mm:ss'));
                }
                if($data['end_date'] != NULL)
                {
                    echo $data['end_date'].'<br/>';
                    $date1 = Mage::app()->getLocale()->date($data['end_date'], $format);

                    $time = $date1->getTimestamp();
                    $model->setEndDate(Mage::getSingleton('core/date')->date(null, $time));

                    //$model->setEndDate($date1->toString('YYYY-MM-dd HH:mm:ss'));
                }

$format echoes : M/d/yy original posted date : 01/27/12 $date echo result :Jan 26, 2012 4:00:00 PM

share|improve this question
Have you checked whether the values are being correctly submitted by the form? Are they correct when reaching the controller action? If not, you got a client side problem. If they are correctly submitted: what does an echo date_default_timezone_get(); right before your print_r give? – Jürgen Thelen Jan 25 '12 at 8:01
its UTC when i echoed it :) – atif Jan 25 '12 at 10:30

6 Answers

if the date is one day before the selected one try

Mage::app()->getLocale()->date($data['start_date'], Zend_Date::DATE_SHORT, null, false);

set 'useTimezone' to False in

/app/code/core/Mage/Core/Model/Locale.php

date($date = null, $part = null, $locale = null, $useTimezone = true)

share|improve this answer
i will try it and will post reply here – atif Sep 3 '12 at 8:05
Thank you this solution worked for me. – balrok Feb 22 at 15:46

This is a really odd issue. This is what worked for me in a _filterDate function:

$value = date('Y-m-d', strtotime($value . ' + 1 days'));
share|improve this answer

print_r() ur data in controller and exit before saving it and look if u r still getting the right data before saving it. I never had this issue but it seems to be issue of your time zone.

share|improve this answer

Be sure, when you save date you do some like this

$dt = $this->getResource()->formatDate(time());
$this->setData('created_at', $dt); // current model

Then for getting correct timezone date use some like this

$dt = $this->getData('created_at');
$time = $this->_getResource()->mktime($dt);
if ($time) {
    $dt = Mage::app()->getLocale()->date($time, null, null, true);
}
share|improve this answer

This solved my problem, don't know whether it is the right way to do it or not but i was more concerned about solving it

if($data['start_date'] != NULL )
{
$start_time_array = explode("/", $data['start_date']);
$start_time = $start_time_array[2]."-".$start_time_array[0]."-".$start_time_array[1]." 00:00:00";
$model->setStartDate($start_time);
}
share|improve this answer
up vote 0 down vote accepted

Well amazing stuff happened !

i just removed the code from admin controller that was saving the dates fields and All good to go !!!

It saved the date automatically in the DB.

This may help many and save them time unlike me, i spent most of the time on it.

share|improve this answer
it was done on local but on live site it saves 31 November 2011 :( why is that so ?? – atif Jan 30 '12 at 11:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.