php-install Digest 13 Mar 2002 11:02:29 -0000 Issue 742

Topics (messages 6323 through 6330):

Uninstalling PHP
        6323 by: Vix

Uninstalling PHP (corrected)
        6324 by: Vix
        6325 by: Jason Cox

mail doesn't work
        6326 by: Joe Lira

Problems with older
        6327 by: Lists

Re: confirm subscribe to [EMAIL PROTECTED]
        6328 by: Barrios, Alvaro J.

Re: gd-library on windows ...
        6329 by: Jürgen Schoch

Re: apache make falure with php module
        6330 by: Jürgen Schoch

Administrivia:

To subscribe to the digest, e-mail:
        [EMAIL PROTECTED]

To unsubscribe from the digest, e-mail:
        [EMAIL PROTECTED]

To post to the list, e-mail:
        [EMAIL PROTECTED]


----------------------------------------------------------------------
--- Begin Message ---
Hi,

I installed PHP4.1.1 using the MAKE utility.
How can I uninstall it?

make uninstall
and
make deinstall
are not available.

Any help?

Best regards,

Vix!


=====
_,.«~=`^`=~».,_,.«~=`^`=~».,_,.«~=`^`=~».,
------> tAke a bReak! gEt eNtertained!
------> http://www.sallini.com/
^`=~».,_,.«~=`^`=~».,_,.«~=`^
-> http://netdesignplus.net/
-> It works... It Pays...
_,.«~=`^`=~».,_,.«~=

__________________________________________________
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!
http://mail.yahoo.com/
--- End Message ---
--- Begin Message ---
I am sorry for this, but the PHP version that I installed is 4.1.2 :)
I am running a Linux operating system.

I installed PHP using "make install"

The Makefile does not contain any "uninstall" or "deinstall" option.

How can I uninstall PHP?

Best regards,

Vix!


=====
_,.«~=`^`=~».,_,.«~=`^`=~».,_,.«~=`^`=~».,
------> tAke a bReak! gEt eNtertained!
------> http://www.sallini.com/
^`=~».,_,.«~=`^`=~».,_,.«~=`^
-> http://netdesignplus.net/
-> It works... It Pays...
_,.«~=`^`=~».,_,.«~=

__________________________________________________
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!
http://mail.yahoo.com/
--- End Message ---
--- Begin Message ---
Vix,

If you've compiled it as a static apache module, you'll need to just
recompile apache without it.  If you did it as a DSO, I believe you can just
delete it and remove the references to it.  If you compiled it as a cgi
binary, just delete it.  All 'make install' does is copy the newly compiled
file created by make to it's final location.  Linux doesn't really install
things in the sense that other operating systems seem to.  If you want to
remove apache, just delete it.

Jason
----- Original Message -----
From: "Vix" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, March 12, 2002 2:28 PM
Subject: [PHP-INST] Uninstalling PHP (corrected)


> I am sorry for this, but the PHP version that I installed is 4.1.2 :)
> I am running a Linux operating system.
>
> I installed PHP using "make install"
>
> The Makefile does not contain any "uninstall" or "deinstall" option.
>
> How can I uninstall PHP?
>
> Best regards,
>
> Vix!
>
>
> =====
> _,.«~=`^`=~».,_,.«~=`^`=~».,_,.«~=`^`=~».,
> ------> tAke a bReak! gEt eNtertained!
> ------> http://www.sallini.com/
> ^`=~».,_,.«~=`^`=~».,_,.«~=`^
> -> http://netdesignplus.net/
> -> It works... It Pays...
> _,.«~=`^`=~».,_,.«~=
>
> __________________________________________________
> Do You Yahoo!?
> Try FREE Yahoo! Mail - the world's greatest free email!
> http://mail.yahoo.com/
>
> --
> PHP Install Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
>

--- End Message ---
--- Begin Message ---
Hi - my first post on this list

I am a complete newbie to php, so forgive me if this is a stupid question.

I installed php and mySQL, and phpBB. The mail function on phpBB isn't
working. It says it sent the email but it never arrives at anyone's inbox. I
asked the phpBB guys about it and they pointed me at php saying it was a php
configuration problem.

To try it yourself, visit http://forums.joe.to

Can anyone suggest steps to troubleshoot or fix this?

Thanks
joe


--- End Message ---
--- Begin Message ---
Hello all,

I'm trying to recompile PHP on a Cobalt Qube to include the curl module.  However, on 
the qube there are two modules which are made by cobalt, i18n and cce.  When I try and 
link these into my new PHP binary using dl(), I get the following error.

Warning: i18n: Unable to initialize module 

Module compiled with debug=0, thread-safety=0 module API=20000609 
PHP compiled with debug=0, thread-safety=0 module API=20001214 

Is there any way of compiling php with module API=20000609 ?

Thanks in advance
Sam


--- End Message ---
--- Begin Message ---
 
--- End Message ---
--- Begin Message ---
Forget aboout compiling, use binaries instead.
The following worked for my system (Win2000 and Apache3.1.22):

1) Download Windows binaries php-4.1.1-installer.exe and php-4.1.1-Win32.zip
from www.php.net
    (The version 4.1.1 was yesterday replaced by 4.1.2, but I hope the new
one will work too. Else contact me for the older one)

2) Don't try to install php from the zip but use the exe to install php
without extensions. This will put all standard dlls to the right place and
do some registry entries.

3) Unpack the zip and copy the extensions folder to your php install
directory (e.g. c:\webserver\php)
    There a precompiled php_gd.dll is contained with support for jpeg, png,
freetype2, ttf

4) Edit php.ini which resides in %Windir%
Locate the paths and directories section and make entries similar to below:
    ;;;;;;;;;;;;;;;;;;;;;;;;;
    ; Paths and Directories ;
    ;;;;;;;;;;;;;;;;;;;;;;;;;
    include_path=; UNIX: "/path1:/path2"  Windows: "\path1;\path2"
    doc_root=; the root of the php pages, used only if nonempty
    user_dir=; the directory under which php opens the script using /~username
    ; directory in which the loadable extensions (modules) reside
    extension_dir=c:\webserver\php\EXTENSIONS
    extension=php_gd.dll
    extension=php_zlib.dll
    enable_dl=On

I am not sure about dependencies, but it may be that for png support zlib is
necessary (at least when compiling it in unix), so it may be good to enable
php_zlib.dll too.

5) Configurate and restart your webserver
eg. for apache in httpd.conf:

    # Path to PHP.EXE directory -- change ScriptAlias to suit your config.
    # Attention: Paths are unix style with slash not backslash, even on
Windows-PCs
    ScriptAlias /php4/ "c:/webserver/php"
    Action application/x-httpd-php4 "/php4/php.exe"
    AddType application/x-httpd-php4 .php
    AddType application/x-httpd-php4 .php3
    DirectoryIndex index.html default.htm index.php index.php3

6) Check installation by a script containing
    <?php phpinfo(); ?>
    The output should contain a section:
gd
      GD Support enabled
      GD Version 1.6.2 or higher
      FreeType Support enabled
      FreeType Linkage with TTF library
      JPG Support enabled
      PNG Support enabled
      WBMP Support enabled


I hope this helps.

Jürgen Schoch


Marcel Besancon wrote:

> Hi everybody,
>
>     i'm want to use windows for developing PHP-Scripts. Now here's my
> problem. Is there any way to use the gd-library under windows? Or where do I
> put the gd.dll. I tried many directories but none of them worked (Though
> some of them have been written to the php.ini as include-directory !!!)
>
> I hope this question isn't to stupid for all of you. Any hint can be useful
>
> THX
>
> Marcel
>
> --
> registered Fli4l-User #00000388

--- End Message ---
--- Begin Message ---
Hi James,
maybe it's a typo:
in php configure you use
    --with-apache=../apache_.1.3.23
but then you use
    cd apache_1.3.23
One dot missing or too much?!

make install in php will copy the necessary files to src/modules/php4 in the
directory given --with-apache=



James Austin wrote:

> Hello,
>
> It has been days and many attempts to install PHP on Linux RedHat 7.1.
> I've tried RPMs and compiles to no avail.  Can please someone help?
>
> Here is the latest documentation steps I've tried:
>
> cd apache_1.3.23
> ./configure
>
> cd ../php-4.1.2
> ./configure --with-mysql --with-apache=../apache_.1.3.23
> --enable-track-vars
> make && make install
>
> cd ../apache_1.3.23
> ./configure --activate-module=src/modules/php4/libmodphp4.a
> (here the docs says php3/libphp3.a, but since this doesn't exist I have
> selected libmodpbp4.a, could this be the problem?)
> make
>
> Below is the last few lines of the make:
>
> ===> src/modules/php4
> gcc -c  -I../../os/unix -I../../include   -DLINUX=22 -DUSE_HSREGEX
> `../../apaci`
>    mod_php4.c
> mod_php4.c:28:18: zend.h: No such file or directory
> mod_php4.c:29:17: php.h: No such file or directory
> mod_php4.c:30:27: php_variables.h: No such file or directory
> mod_php4.c:47:21: php_ini.h: No such file or directory
> mod_php4.c:48:25: php_globals.h: No such file or directory
> mod_php4.c:49:18: SAPI.h: No such file or directory
> mod_php4.c:50:22: php_main.h: No such file or directory
> mod_php4.c:52:26: zend_compile.h: No such file or directory
> mod_php4.c:53:26: zend_execute.h: No such file or directory
> mod_php4.c:54:28: zend_highlight.h: No such file or directory
> mod_php4.c:55:25: zend_indent.h: No such file or directory
> mod_php4.c:57:39: ext/standard/php_standard.h: No such file or directory
> make[4]: *** [mod_php4.o] Error 1
> make[3]: *** [all] Error 1
> make[2]: *** [subdirs] Error 1
> make[2]: Leaving directory `/home/auji/apache_1.3.23/src'
> make[1]: *** [build-std] Error 2
> make[1]: Leaving directory `/home/auji/apache_1.3.23'
> make: *** [build] Error 2
>
> Thanks very much for any thoughts on why I don't have these files after
> many attempts.  Shouldn't these file be created whem I make php?
>
> jim

--- End Message ---

Reply via email to