Version: 1.00, by JimmyN
Developer Last Online: Nov 2007
Category: Add-On Releases -
Version: 3.6.4
Rating:
Released: 12-15-2006
Last Update: Never
Installs: 29
Uses Plugins Template Edits
No support by the author.
Hi everyone,
this is my first mod and i though it will really help people out.
Basicly it shows either random, most_viewed or latest and can show a custom set of ads across in either vertical or horizontal position. It uses a external file that comes included with your Photopost Classifieds install.
How to install
1)install the plugin
2)tempate modification (optional in custom places)
template FORUMHOME find this code or other place you would like
find:
Code:
$navbar
right under this place:
Code:
$classifiedsfeature
Note: Make sure this plug in is enabled. It should automaticly install the template code so you will not have to do it, but if not follow the instructions above.
Remember Yoy may modify options in the inc_features.php (this is a PhotoPost file).
In that file you may set the layout, how many ads to show, and what type e.g. random, recent etc
Please let me know if you have any questions, ideas or need help
I see the problem here....it's attempting to point to files from a path that is incorrect. Each one of these errors are pointing to incorrect paths in the urls. For instance....taking the first one... http://www.f-bodyhideout.com/forums/classifieds/data1/thumbs/9511P7031738.JPG
K, got the connection it appears now with my databases. However, I'm getting the following errors:
I see the problem here....it's attempting to point to files from a path that is incorrect. Each one of these errors are pointing to incorrect paths in the urls. For instance....taking the first one... http://www.f-bodyhideout.com/forums/classifieds/data1/thumbs/9511P7031738.JPG
smoknz28, i see that you got this error i had got the same error on the second board i installed this one. I visited your forum and see theres no error there now, how did you get that fixed?
Sorry...yea, I should have posted up how I fixed the errors.
First...one of my issues was that I had upgraded my Classifieds version...and with that came an error on my part. When I was transcribing the paths, etc...I screwed up the path to my data directory. Actually, I just left off the trailing "/" at the end of data so just went into my config-int.php of my Classifieds and edited line #23 $data_dir and added the ending "/".
Putting the "/" at the end of data directory cured the errors I was getting when the hack or inc_ads.php was trying to pull images.
Next up....
Second one I was having was the default directory that the plugin was pointing to for my inc_ads.php.
The default was set to: include('../classifieds/inc_ads.php');
Which didn't work for me because my inc.ads.php file was in my Classifieds directory. So, just edited the path to:
include('./classifieds/inc_ads.php');
So, vice ../classifieds I changed it to ./classifieds
Hopefully all of this made sense to you and the others who may be experiencing similar issues.