[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [cobalt-users] PHP-4.3.4 on RAQ550
- Subject: RE: [cobalt-users] PHP-4.3.4 on RAQ550
- From: "Phil Ewington - 43 Plc" <phil.ewington@xxxxxxxxx>
- Date: Fri Feb 20 05:41:08 2004
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
> > >
> > > Hi All,
> > >
> > > Just upgraded my RAQ3 to a RAQ550 and before moving all the
> > > sites and email accounts over I installed PHP-4.3.4. I used
> > > the configure options stated in phpinfo() for 4.0.5, the
> > > default PHP install on the RAQ550 when I got it. I added a
> > > couple of config options to add WDDX and FreeType support and
> > > installed PHP as normal. I checked the install using
> > > phpinfo() again and all was well. My problem being that the
> > > RAQ550 GUI no longer works, I get an error about a missing
> > > function when hitting the login screen. It appears that
> > > objects are not supported as the error occurs while calling a
> > > constructor function for a class. Has anyone else had this problem?
> > >
> > > TIA
> > >
> > > Phil.
> > >
> > >
> >
> > Yes, you should keep a seperate copy of the 406 version for the GUI. The
> > link below described the process for a Qube3, but you can
> easily adept it
> > for a 550. There has been talk on the list (search the
> archives) as to the
> > exact reason of the failure/missing components.
> >
> > http://www.depopo.net/content/howto/cobalt-qube3-php433.htm
> >
> >
>
> Thanks Bob, I found a similar resource to the one above which
> states exactly
> the same.
>
> Phil.
>
As a follow up to my last post, installing PHP-4.0.5 with the following
configure string enabled the RAQ550 GUI again, could be useful to someone
else who has killed their GUI from a PHP upgrade ;o)
I always use a configure.sh in the src dir to keep track of changes...
./configure \
--prefix=/usr \
--with-apxs=/usr/sbin/apxs \
--enable-safe-mode \
--with-config-file-path=/etc/httpd \
--with-exec-dir=/usr/bin \
--with-zlib \
--with-ftp \
--with-iconv \
--enable-mbstring \
--with-interbase=shared \
--with-pgsql=shared \
--enable-magic-quotes \
--with-regex=system \
--enable-track-vars \
--enable-trans-sid \
--enable-xml \
--enable-wddx \
--disable-debug \
--with-gd \
--with-mysql=shared \
--with-openssl=/usr \
--with-jpeg-dir=/usr \
--with-png-dir=/usr
- Phil.