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.