[geeklog-devtalk] geeklog-devel digest, Vol 1 #247 - 4 msgs

geeklog-devel-request at lists.geeklog.net geeklog-devel-request at lists.geeklog.net
Tue Jan 6 13:00:10 EST 2004


Send geeklog-devel mailing list submissions to
geeklog-devel at lists.geeklog.net

To subscribe or unsubscribe via the World Wide Web, visit
http://lists.geeklog.net/listinfo/geeklog-devel
or, via email, send a message with subject or body 'help' to
geeklog-devel-request at lists.geeklog.net

You can reach the person managing the list at
geeklog-devel-admin at lists.geeklog.net

When replying, please edit your Subject line so it is more specific
than "Re: Contents of geeklog-devel digest..."


Today's Topics:

1. pair + geeklog (Pat F)
2. Re: pair + geeklog (Tony Bibbs)
3. Re: pair + geeklog (Dirk Haun)
4. Re: pair + geeklog (Pat F)

--__--__--

Message: 1
Date: Mon, 5 Jan 2004 15:59:35 -0500 (EST)
From: Pat F <pfawcett at smx.pair.com>
To: geeklog-devel at lists.geeklog.net
Subject: [geeklog-devel] pair + geeklog
Reply-To: geeklog-devel at lists.geeklog.net

Guys,

I've been busy and haven't messed with our Geeklog installer since version
1.3.7sr2 (very bad on my part, I know). It seems to work OK except for
this one warning, then error:

...
...
Downloading package: geeklog-1.3.8-1sr3...ok
Extracting package: geeklog-1.3.8-1sr3....ok
Moving files..............................ok
Setting directory rights..................ok
Creating config.php.......................ok
Creating lib-common.php...................ok
Creating the Database.....................
Warning: main(/path/to/geeklog/system/databases/mysql.class.php): failed
to open stream: No such file or directory in
/usr/www/users/fawcett/refer/system/lib-database.php on line 111

Fatal error: main(): Failed opening required
'/path/to/geeklog/system/databases/mysql.class.php'
(include_path='/usr/local/lib/php') in
/usr/www/users/fawcett/refer/system/lib-database.php on line 111


Can you please tell me what might be the cause of this error?

Thanks,

Patrick

--__--__--

Message: 2
Date: Mon, 05 Jan 2004 15:32:08 -0600
From: Tony Bibbs <tony at tonybibbs.com>
To: geeklog-devel at lists.geeklog.net, pfawcett at smx.pair.com,
jason at whittenburgs.com
Subject: Re: [geeklog-devel] pair + geeklog
Reply-To: geeklog-devel at lists.geeklog.net

It appears that, for some reason, in config.php the $_CONF['path'] isn't
set right. Judging by the warnings, it is set to /path/to/geeklog/
(the default) instead of that actual location.

Jason, I assume this is something that should be determined
automagically, right? Can you send me the source code? We really need
to have this in CVS. Dirk, where do you want it...in /etc under
geeklog-1.3?

--Tony

Pat F wrote:

> Guys,

>

> I've been busy and haven't messed with our Geeklog installer since version

> 1.3.7sr2 (very bad on my part, I know). It seems to work OK except for

> this one warning, then error:

>

> ...

> ...

> Downloading package: geeklog-1.3.8-1sr3...ok

> Extracting package: geeklog-1.3.8-1sr3....ok

> Moving files..............................ok

> Setting directory rights..................ok

> Creating config.php.......................ok

> Creating lib-common.php...................ok

> Creating the Database.....................

> Warning: main(/path/to/geeklog/system/databases/mysql.class.php): failed

> to open stream: No such file or directory in

> /usr/www/users/fawcett/refer/system/lib-database.php on line 111

>

> Fatal error: main(): Failed opening required

> '/path/to/geeklog/system/databases/mysql.class.php'

> (include_path='/usr/local/lib/php') in

> /usr/www/users/fawcett/refer/system/lib-database.php on line 111

>

>

> Can you please tell me what might be the cause of this error?

>

> Thanks,

>

> Patrick

> _______________________________________________

> geeklog-devel mailing list

> geeklog-devel at lists.geeklog.net

> http://lists.geeklog.net/listinfo/geeklog-devel



--__--__--

Message: 3
From: "Dirk Haun" <dirk at haun-online.de>
To: <geeklog-devel at lists.geeklog.net>
Subject: Re: [geeklog-devel] pair + geeklog
Date: Mon, 5 Jan 2004 22:48:27 +0100
Organization: Terra Software Systems
Reply-To: geeklog-devel at lists.geeklog.net


>We really need to have this in CVS. Dirk, where do you want

>it...in /etc under geeklog-1.3?


/etc is currently empty and thus not included in the tarball.

I agree that the script should be in CVS, but should it be in the
distribution? If the answer is "no", then it should be somewhere outside
of /geeklog-1.3

bye, Dirk


--
http://www.haun-online.de/
http://geeklog.info/


--__--__--

Message: 4
Date: Mon, 5 Jan 2004 16:49:11 -0500 (EST)
From: Pat F <pfawcett at smx.pair.com>
To: Tony Bibbs <tony at tonybibbs.com>
cc: geeklog-devel at lists.geeklog.net, jason at whittenburgs.com
Subject: Re: [geeklog-devel] pair + geeklog
Reply-To: geeklog-devel at lists.geeklog.net

I found a potential problem, and made sure it was consistant by attempting
multiple installs. From my config.php file
in /usr/www/users/fawcett/refer I saw that it has $_CONF['path'] declared
twice:

//
+---------------------------------------------------------------------------+
// | (2) Paths

|

//
+---------------------------------------------------------------------------+

// Note for Windows users: It's safe to use the forward slash '/' instead
of
// the backslash '\' in paths. Make sure each path starts with a drive
letter!

$_CONF['path'] = '/usr/www/users/fawcett/refer/';
$_CONF['path'] = '/path/to/geeklog/'; // should end in a slash


I'm guessing that this causes a problem further down in the installation
process.

-Patrick


On Mon, 5 Jan 2004, Tony Bibbs wrote:


> It appears that, for some reason, in config.php the $_CONF['path'] isn't

> set right. Judging by the warnings, it is set to /path/to/geeklog/

> (the default) instead of that actual location.

>

> Jason, I assume this is something that should be determined

> automagically, right? Can you send me the source code? We really need

> to have this in CVS. Dirk, where do you want it...in /etc under

> geeklog-1.3?

>

> --Tony

>

> Pat F wrote:

> > Guys,

> >

> > I've been busy and haven't messed with our Geeklog installer since version

> > 1.3.7sr2 (very bad on my part, I know). It seems to work OK except for

> > this one warning, then error:

> >

> > ...

> > ...

> > Downloading package: geeklog-1.3.8-1sr3...ok

> > Extracting package: geeklog-1.3.8-1sr3....ok

> > Moving files..............................ok

> > Setting directory rights..................ok

> > Creating config.php.......................ok

> > Creating lib-common.php...................ok

> > Creating the Database.....................

> > Warning: main(/path/to/geeklog/system/databases/mysql.class.php): failed

> > to open stream: No such file or directory in

> > /usr/www/users/fawcett/refer/system/lib-database.php on line 111

> >

> > Fatal error: main(): Failed opening required

> > '/path/to/geeklog/system/databases/mysql.class.php'

> > (include_path='/usr/local/lib/php') in

> > /usr/www/users/fawcett/refer/system/lib-database.php on line 111

> >

> >

> > Can you please tell me what might be the cause of this error?

> >

> > Thanks,

> >

> > Patrick

> > _______________________________________________

> > geeklog-devel mailing list

> > geeklog-devel at lists.geeklog.net

> > http://lists.geeklog.net/listinfo/geeklog-devel

>

>


Patrick


--__--__--

_______________________________________________
geeklog-devel mailing list
geeklog-devel at lists.geeklog.net
http://lists.geeklog.net/listinfo/geeklog-devel


End of geeklog-devel Digest



More information about the geeklog-devtalk mailing list