Cant figure this one out

Please post all install related problems here. Visit this forum first for troubleshooting.
User avatar
Oliver Georgi
Site Admin
Posts: 9889
Joined: Fri 3. Oct 2003, 22:22
Contact:

Post by Oliver Georgi »

sounds as you are not using a default phpwcms installation - is it the phpwcms-xt thing?

Oliver
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Post by flip-flop »

$phpwcms["site"] = "http://www.quinonline.com/phpwcms";
$phpwcms["site"] = "http://www.quinonline.com/";
Last edited by flip-flop on Tue 15. Aug 2006, 15:04, edited 1 time in total.
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Re: Cant figure this one out

Post by DeXXus »

This looks duplicated, maybe??
EwedaMaan wrote:conf.inc.php
===============
// site values
$phpwcms["site"] = "http://www.quinonline.com/phpwcms";
$phpwcms["admin_email"] = "info@quinonline.com";

// paths
$phpwcms["DOC_ROOT"] = $_SERVER['DOCUMENT_ROOT'];
$phpwcms["root"] = "phpwcms";
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post by DeXXus »

HA!!
flip-flop is a quicker to the draw!
User avatar
Oliver Georgi
Site Admin
Posts: 9889
Joined: Fri 3. Oct 2003, 22:22
Contact:

Post by Oliver Georgi »

This is what you have to change!

Code: Select all

$phpwcms["site"] = "http://www.quinonline.com/";
$phpwcms["root"] = "phpwcms";
Oliver
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
User avatar
Oliver Georgi
Site Admin
Posts: 9889
Joined: Fri 3. Oct 2003, 22:22
Contact:

Post by Oliver Georgi »

$phpwcms['DOC_ROOT'] = 'D:/hshome/quingbs/quinonline.com';

Oliver
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
User avatar
Oliver Georgi
Site Admin
Posts: 9889
Joined: Fri 3. Oct 2003, 22:22
Contact:

Post by Oliver Georgi »

Check if ss_image.class.php is file is there!

Oliver
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post by DeXXus »

Oliver Georgi wrote:$phpwcms['DOC_ROOT'] = 'D:/hshome/quingbs/quinonline.com';

Oliver
Make sure you followed OliverG's example and DID NOT place a "slash" on the end. The (include_path='.;c:\php4\pear') message means... it is not finding ss_image.class.php at the full path --> which is a concatenation of your $phpwcms['DOC_ROOT'] path and the "relative" address of the file name:
$phpwcms['DOC_ROOT'] + /phpwcms/include/inc_ext/ss_image/ss_image.class.php

D:/hshome/quingbs/quinonline.com + /phpwcms/include/inc_ext/ss_image/ss_image.class.php

D:/hshome/quingbs/quinonline.com/"/phpwcms/include/inc_ext/ss_image/ss_image.class.php
Otherwise, maybe something to do with Virtual Hosts setup maybe?
Post Reply