Here's the config-int
I can see the classifieds admincp but not the web pages for the classifies
If I change the
vb path from /ppclass/forums
to
/forums
I get the classifeds, but if I click on the admin it goes to
vb admincp
not classifieds admincp
Quote:
<?php
//-----------------------------------------------------------------------------------//
// Forum Integration Configuration File
//
// For users using our forum integration files, there are a few things
// we need to know - like the location of Classifieds and your forums; this
// prevents us from doing alot of extra processing in these scripts we otherwise
// would have to do.
//
// Follow the guides to set your paths and enable the integration options you
// want.
//-----------------------------------------------------------------------------------//
// We need to know the server paths to both your vB installation and your Classifieds installation
$vbpath = "/home/pnwhosti/public_html/x_psdivers/forums/";$pppath = "/home/pnwhosti/public_html/x_psdivers/ppclass/";
// We need the URL path to your PhotoPost and vb installation
$url_path = "http://www.psdivers.com/ppclass";
$vb_urlpath = "http://www.psdivers.com/forums";
// The URL of your photo dir where your images are stored (with / at end)
$data_dir = "http://www.psdivers.com/ppclass/data";
// If your PhotoPost tables have a prefix, put it here
// Example:
// ppcl_ = "pp_";
$pp_db_prefix = "ppcl_";
//------------------------------------- vB3 -----------------------------------------//
// VB3_INTEGRATION is for using vB3 headers/footers and styles
// VB3_ENHANCEDINT is for Enhanced vB3 Integration (using vB3 elements in Classifieds)
// requires that VB3_INTEGRATION also be set to 'on'
// VB3_COMMWYSIWYG is for turning on the WYSIWYG interface on the Post A Comment page
// if you set this to 'off' then only the standard input box will appear
//
// Set to 'on' to enable specific integrations
define(VB3_INTEGRATION, 'on');
define(VB3_ENHANCEDINT, 'on');
define(VB3_COMMWYSIWYG, 'on');
//-----------------------------------------------------------------------------------// |