ThePhoneGuy
04-06-2010, 10:00 PM
Easier Version
~~~~~https://vborg.vbsupport.ru/showthread.php?t=248232~~~~
Hey i noticed that i needed to update end dates for all my subscription users at once. Took me a while to figure out and the is 0 documentation on how to do this so run this as an sql query in phpmyadmin
UPDATE `DATABASE_NAME`.`subscriptionlog` SET `expirydate` = `expirydate` + '430000'
430000 = 5 days in epoch time
epoch time is just seconds that have elapsed since January 1, 1970
Hope that helps someone who was as frustrated as me :D.
http://www.epochconverter.com/
~~~~~https://vborg.vbsupport.ru/showthread.php?t=248232~~~~
Hey i noticed that i needed to update end dates for all my subscription users at once. Took me a while to figure out and the is 0 documentation on how to do this so run this as an sql query in phpmyadmin
UPDATE `DATABASE_NAME`.`subscriptionlog` SET `expirydate` = `expirydate` + '430000'
430000 = 5 days in epoch time
epoch time is just seconds that have elapsed since January 1, 1970
Hope that helps someone who was as frustrated as me :D.
http://www.epochconverter.com/