| 3 Nov 20:39

[Campsite Support] Missing File.php

Author: Dave
Link:  http://code.campware.org/phorum/read.php?8,2929,2929#msg-2929
--------------------------------------------------------------------------------

When I access mysite.com/admin/login.php I recieve this error.

Warning: main(File.php): failed to open stream: No such file or directory in
/usr/local/campsite/www-common/html/priv/localizer/Localizer.php on line 12

I cant find this file anywhere.

Also in Localizer there is this line

require_once('File/Find.php');

I dont have this either

Also, there is a call in Serializer.php to XML/Util.php

Cant find that either.

Did I do something wrong on install?

Thanks

--

-- 
Sent from Campware Forums
http://code.campware.org/phorum

(Continue reading)

Paul Baranowski | 3 Nov 20:50

Re: [Campsite Support] Missing File.php

Hi Dave -

Those are PEAR libraries.  They should have been installed automatically
when you installed Campsite, but looks like it didnt happen.

To install them, you need to run the "pear" command:

# pear install File
# pear upgrade File
# pear install File_Find
# pear upgrade File_Find
# pear install XML_Util
# pear upgrade XML_Util

- Paul

phorum <at> code.campware.org wrote:
> Author: Dave
> Link:  http://code.campware.org/phorum/read.php?8,2929,2929#msg-2929
> --------------------------------------------------------------------------------
> 
> When I access mysite.com/admin/login.php I recieve this error.
> 
> Warning: main(File.php): failed to open stream: No such file or directory in
/usr/local/campsite/www-common/html/priv/localizer/Localizer.php on line 12
> 
> I cant find this file anywhere.
> 
> Also in Localizer there is this line
> 
(Continue reading)

| 3 Nov 21:26

[Campsite Support] Re: Missing File.php

Author: Dave
Link:  http://code.campware.org/phorum/read.php?8,2930,2931#msg-2931
--------------------------------------------------------------------------------

Beautiful! Thank you.

FYI Also had to install:

Net_URL
Net_Socket
HTTP_Request
HTTP_Client

Thanks again!

p.s. Campsite looks fantastic!

--

-- 
Sent from Campware Forums
http://code.campware.org/phorum

| 3 Nov 21:40

[Campsite Support] Steps for installing on fedora core 1

Author: Dave
Link:  http://code.campware.org/phorum/read.php?8,2932,2932#msg-2932
--------------------------------------------------------------------------------

In case anyone wants to install on fedora core 1. Its very simple, just a few extra steps.

My server:
Fedora core 1
MySQL 4.0.21
PHP 4.3.*

I had to install libidn-0.5.9 Very straightforward install. Get it here: http://josefsson.org/libidn/releases/

After install libidn, I ran the install again and got a few file permission errors. The install_log explain
it all.

After fixing file permission, I tried to hit mysite.com/admin and got file not found errors. Paul
explained to me I was missing PEAR libraries and explained how to install them:

pear install FILE_NAME

I had to install:
File
File_Find
Net_URL
Net_Socket
HTTP_Request
HTTP_Client

Hit mysite/admin again and everything is working great.
(Continue reading)

Paul Baranowski | 3 Nov 22:17

Re: [Campsite Support] Steps for installing on fedora core 1

Thanks for sending these instructions!  I added it as a note in the manual:
http://code.campware.org/manuals/campsite/2.3/index.php?id=6

- Paul

phorum <at> code.campware.org wrote:
> Author: Dave
> Link:  http://code.campware.org/phorum/read.php?8,2932,2932#msg-2932
> --------------------------------------------------------------------------------
> 
> In case anyone wants to install on fedora core 1. Its very simple, just a few extra steps.
> 
> My server:
> Fedora core 1
> MySQL 4.0.21
> PHP 4.3.*
> 
> I had to install libidn-0.5.9 Very straightforward install. Get it here: http://josefsson.org/libidn/releases/
> 
> After install libidn, I ran the install again and got a few file permission errors. The install_log
explain it all.
> 
> After fixing file permission, I tried to hit mysite.com/admin and got file not found errors. Paul
explained to me I was missing PEAR libraries and explained how to install them:
> 
> pear install FILE_NAME
> 
> I had to install:
> File
> File_Find
(Continue reading)


Gmane