PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Photopost Pro Installation & Upgrades (http://www.photopost.com/forum/photopost-pro-installation-upgrades/)
-   -   Featured Photos (http://www.photopost.com/forum/photopost-pro-installation-upgrades/116244-featured-photos.html)

martell October 18th, 2005 07:37 AM

Featured Photos
 
Does this guide still works? - http://www.photopost.com/members/for...d.php?t=110527

In that thread, it was mentioned to add two lines under under these four:

// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
require_once('./includes/functions_bigthree.php');
require_once('./includes/functions_forumlist.php');
include('./photopost/inc_features.php');
include('./photopost/inc_photopost.php');


But when I tried to do the above, I found the following in my forum/index.php

require_once('./global.php');
require_once(DIR . '/includes/functions_bigthree.php');
require_once(DIR . '/includes/functions_forumlist.php');

I tried to just follow the instructions but it came out blank on forum home.

iloco October 18th, 2005 08:01 AM

You got to have the path to your inc_features.

Here is how mine is.

require_once('./global.php');
require_once(DIR . '/includes/functions_bigthree.php');
require_once(DIR . '/includes/functions_forumlist.php');
include('/home/iloco/public_html//photopost/inc_features.php');
include('/home/iloco/public_html/photopost/inc_photopost.php');;

martell October 18th, 2005 09:48 AM

Tks iloco! Managed to get that to work. But now no photos showed up. Any ideas? :(

Chuck S October 18th, 2005 09:58 AM

Check your url statements in the integration settings in photopost admin and also make sure the overlay images are uploaded to your photopost images directory

iloco October 18th, 2005 09:59 AM

Chuck or Michael may need to help you with no photos showing.

Its problem how you edited inc_features.php and inc_photopost.php.
Make sure nothing is commented where it shouldnt be.

Did you add the in your forum home template under the nav bar.

It should look like this.




martell October 18th, 2005 05:24 PM

Ok done. Just did some tweaking in inc_features.php

mtha November 1st, 2005 08:03 PM

Quote:

Originally Posted by Chuck S
Check your url statements in the integration settings in photopost admin and also make sure the overlay images are uploaded to your photopost images directory


after a while, I figure out that it need a trailing slash / for URLs


All times are GMT -5. The time now is 07:08 PM.

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


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97