Author Topic: How do I remove 10 day viewing limit on postcard?  (Read 3442 times)

0 Members and 1 Guest are viewing this topic.

Offline dneibert

  • Newbie
  • *
  • Posts: 22
    • View Profile
How do I remove 10 day viewing limit on postcard?
« on: July 24, 2012, 08:12:11 PM »
It would be great to make no limit on how many days to view the postcard. I use 4images Gallery for a stock site. So if someone sends a postcard but then wants to look at it a month, they no longer can. I found this code:

if ($action == "sendcard") {
  $expiry = time() - 60 * 60 * 24 * POSTCARD_EXPIRY;
  $sql = "DELETE FROM ".POSTCARDS_TABLE."
          WHERE (postcard_date < $expiry)";
  $site_db->query($sql);

and this code

if ($action == "showcard") {
  $expiry = time() - 60 * 60 * 24 * POSTCARD_EXPIRY;
  $sql = "DELETE FROM ".POSTCARDS_TABLE."
          WHERE (postcard_date < $expiry)";
  $site_db->query($sql);

What do I change to make the time unlimited for viewing?

Rembrandt

  • Guest
Re: How do I remove 10 day viewing limit on postcard?
« Reply #1 on: July 24, 2012, 08:26:33 PM »
Hi!

search in includes/constants.php:

define
('POSTCARD_EXPIRY'10);

i think the better way is, the "Day" set up to "1000"

mfg Andi

Offline dneibert

  • Newbie
  • *
  • Posts: 22
    • View Profile
Re: How do I remove 10 day viewing limit on postcard?
« Reply #2 on: July 24, 2012, 11:54:56 PM »
Thanks!