View Single Post
Old November 17th, 2010, 10:55 AM   #15 (permalink)
Chuck S
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,702
Example here if you know about phpmyadmin where you can view the products in your database you can run the following query which will tell you how many sold/expired ads that have been expired sold in the past two weeks and should show in a specific category

SELECT * FROM cp_products WHERE status != 0 AND status > 1288760400 AND cat = 30;

Take for instance I used cat equals 30 where 30 is the numeric id off the cat of ads your viewing.

This goes back to the original discussion we had where we found out ad ad was expired sold in the time period you specified.

You can also edit pp-inc.php and the following line

Code:
Content visible to verified customers only.
change that to

Code:
Content visible to verified customers only.
if your debug option is set to display errors as admin you should see all the queries for your page printed in the footer you could post those here and I should show you explicitly why ads show if you do not understand.
__________________
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