PhotoPost Photo Gallery Sales PhotoPost Sales Toll Free Phone Number
Mon-Fri 9am-4pm EST
  PhotoPost Photo Sharing Photo Gallery    Visualize community tm
| | | | | | | | |

Go Back   PhotoPost Community > PhotoPost Support > PhotoPost Classifieds Support > Classifieds Bug Reports

Classifieds Bug Reports Post any problems you may be having with Classifieds here.

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
Old March 9th, 2007, 01:27 PM   #1 (permalink)
Member
Verified Customer
 
Join Date: Feb 2007
Posts: 57
relist ads and ads expiring

Man I'm feeling like a complainer here sorry.. The ads other than auctions don't seem to be expiring. So I have had no chance to see the relist feature.
PanamaRed is offline   Reply With Quote
Old March 9th, 2007, 01:31 PM   #2 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,689
Cron Job: sendnotice.php

You are just not versed on the application yet no big deal buddy. To expire ads you need to run that cron task

Only time your going to see a relist feature is if someone sells the ad or the system expires it
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old March 13th, 2007, 11:41 AM   #3 (permalink)
Member
Verified Customer
 
Join Date: Feb 2007
Posts: 57
The ads are not expiring, I put some test ads up for 3 days and they never expire..
PanamaRed is offline   Reply With Quote
Old March 13th, 2007, 12:09 PM   #4 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,689
If you set up that cron task ads will expire that is why I placed the link above for you to read.
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old March 13th, 2007, 12:13 PM   #5 (permalink)
Member
Verified Customer
 
Join Date: Feb 2007
Posts: 57
OK, I just reset one of the email functions on the VB 3.5 to yes on this setting and it sent me all of the emails I have been trying to get..

Enable "-f" Parameter
Some sendmail servers may require the "-f" parameter to be sent with email calls from PHP. If you are having problems with users not receiving email, try enabling this option. In all likelihood, your problem will not be caused by this setting.
PanamaRed is offline   Reply With Quote
Old March 13th, 2007, 12:24 PM   #6 (permalink)
Member
Verified Customer
 
Join Date: Feb 2007
Posts: 57
Working like a champ!! very happy with the ads now. thank you Chuck I appreciate all of your help.

Question now is if I relist ads they don't get bumped to the top of the list is that normal? Is there a way to bump them to the top of the list when they are relisted?
PanamaRed is offline   Reply With Quote
Old March 13th, 2007, 12:40 PM   #7 (permalink)
Member
Verified Customer
 
Join Date: Feb 2007
Posts: 57
Just a note, the relist and expiation are linked to the auto responce, once that was set right it all works.

Still wondering about bumping the relisted ads though.
PanamaRed is offline   Reply With Quote
Old March 13th, 2007, 05:06 PM   #8 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,689
yes relisting them is not going to bump them to the top cause all your doing is changing the expire date not the date posted etc.
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Old September 7th, 2011, 01:21 AM   #9 (permalink)
Member
Verified Customer
 
Join Date: Mar 2010
Posts: 111
Quote:
Originally Posted by Chuck S View Post
yes relisting them is not going to bump them to the top cause all your doing is changing the expire date not the date posted etc.
Is there an expiration variable in the db to show the expire date in showcat, I know there's a duration variable in db that can be retreive that show 7 days 10 days, 15 days etc

Instead of displaying the duration of the ad in showcat, I like to display the expire date in addition to the date posted.

I found the enddate below, but the format for the enddate is "1315249683" <- what format is this and how can I convert to normal day, yy and month?

I've added below line to showcat.php and showcat.tmpl, but the output is in 1315249683 on my website, how can I convert 1315249683 to ->day yy and month? Help.


$ppdate = formatppdate( $date );
$pptime = formatpptime( $date );
$ppenddate = formatppenddate( $enddate ); <- I added this in showcat.php but doesn't convert.

--------dbase
SELECT *
FROM `pp_products`
ORDER BY `pp_products`.`enddate` ASC
LIMIT 0 , 30

-------- showcat.php
$gallery['ppenddate'][$count] = "$enddate";

-------- showcat.tmpl
{$gallery['ppenddate'][$x]}

Last edited by gmptp; September 7th, 2011 at 04:44 AM.
gmptp is offline   Reply With Quote
Old September 7th, 2011, 04:59 AM   #10 (permalink)
Member
Verified Customer
 
Join Date: Mar 2010
Posts: 111
Quote:
Originally Posted by gmptp View Post
Is there an expiration variable in the db to show the expire date in showcat, I know there's a duration variable in db that can be retreive that show 7 days 10 days, 15 days etc

Instead of displaying the duration of the ad in showcat, I like to display the expire date in addition to the date posted.

I found the enddate below, but the format for the enddate is "1315249683" <- what format is this and how can I convert to normal day, yy and month?

I've added below line to showcat.php and showcat.tmpl, but the output is in 1315249683 on my website, how can I convert 1315249683 to ->day yy and month? Help.


$ppdate = formatppdate( $date );
$pptime = formatpptime( $date );
$ppenddate = formatppenddate( $enddate ); <- I added this in showcat.php but doesn't convert.

--------dbase
SELECT *
FROM `pp_products`
ORDER BY `pp_products`.`enddate` ASC
LIMIT 0 , 30

-------- showcat.php
$gallery['ppenddate'][$count] = "$enddate";

-------- showcat.tmpl
{$gallery['ppenddate'][$x]}
Problem solve above, just add below to showcat.php and tmpl

php-> $ppenddate = formatppdate( $enddate );
tmpl-> {$gallery['ppenddate'][$x]}
gmptp is offline   Reply With Quote
Old September 7th, 2011, 08:18 AM   #11 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,689
Yup you need to format the unix timestamp into a date that can be displayed
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Why arent ads expiring? tugbrian Classifieds How do I...? 19 April 22nd, 2007 07:01 PM
60 day ads not expiring? AmericanBulldog Classifieds How do I...? 8 October 4th, 2006 12:43 PM
Show ads without image on recent ads Kafi Classifieds How do I...? 2 October 19th, 2005 09:21 AM
Feature requests: Payment for renewing ads - List of close to expiring ads - & more criscokid Classifieds Suggestions 1 August 4th, 2005 07:17 AM
Non-expiring Ads gholsie Classifieds Suggestions 5 January 26th, 2005 11:00 AM


All times are GMT -5. The time now is 05:26 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0