[PHP-INST] php on xp

2002-10-31 Thread -=Antibiotic789=-
I want to install php on my computer You will say: Oh, that's great. But, ther is a problem... :-( I don't know what, so I will write the steps I follow: Tell me if something is wrong... PS: My computer: Win XP, C: on FAT32, and D,E,F,G,...- NTFS PHP install 1) Unzip to c:\php\ 2) Copy php4ts.dll

[PHP-INST] Re: Apache 2.0.40/PHP 4.2.2 Win2000 Help

2002-10-31 Thread Brett Curtiss
Did you add the entries to httpd.conf exactly as you typed in your message? If so, they are incorrect. You MUST use LoadModule BEFORE you use AddModule, so what you typed would be incorrect: -->AddModule mod_php4.c -->LoadModule php4_module "c:/php/sapi/php4apache2.dll" AddType application/x-httpd

Re: [PHP-INST] redhat8 php4.3.0pre2 apxs problem

2002-10-31 Thread Gareth Thomas
Rasmus, thanks for the speedy help! However I now have 2 new problems. RH 8 gave me an error removing Apache (although it did seem to do it) and when I try and run the RPM for Apache 1.3.23-11 I get a dependancy error looking for libmm.so.11. I can only find this for Redhat 7.2 should I install t

Re: [PHP-INST] redhat8 php4.3.0pre2 apxs problem

2002-10-31 Thread Pierre-Alain Joye
> Where do I find APXS? remove all apache and php rpms (rpm -e apache). Downgrade to apache 1.3.xx then compile php against apache 1.3.xx hth pa -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-INST] redhat8 php4.3.0pre2 apxs problem

2002-10-31 Thread Rasmus Lerdorf
Just install the apache-devel rpm. But, while you are at it, get rid of Apache2 and install the Apache 1.3 apache and apache-devel rpms and everything will be fine. Everything can of course be found on rpmfind.net -Rasmus On Thu, 31 Oct 2002, Gareth Thomas wrote: > I am a Linux newbie, so any

[PHP-INST] redhat8 php4.3.0pre2 apxs problem

2002-10-31 Thread Gareth Thomas
I am a Linux newbie, so any help will be appreciated. I am upgrading the version of PHP to the latest and greatest (4.3.0pre2), I have removed the version that came with RH8 (4.2.3?) using the RH unistall, then I followed the install instructions that came with PHP, httpd -l looked fine so I ran co

[PHP-INST] image insert into MSSQL database how to

2002-10-31 Thread Yunier Saborit
hello people: y have a problem when i try to insert an image into a MS SQL SERVER database, i capture the image from POST method , ¿how can i do this?¿how can i construc a sql query for do this? sorry my english... i speak spanish... please help me yony

[PHP-INST] interbase problem

2002-10-31 Thread Jaime Garcia
Howdy! OS:freebsd 4.7 php-version:4.2.3 apache 1.3.26 Interbase 4.0 first i compile php ./configure --with-apache --with-interbase=/usr/interbase -- with-mysql support (/usr/interbase is my current interbase install location) and all goes fine but when i try to compile apache an error sto

Re: [PHP-INST] n00b - PHP on IIS 5 - Not Allowing File Writes Though All Permissions Seem Correct

2002-10-31 Thread David Kaplowitz
"Simple answer... it is just a warning" Correct! That's exactly what was happening in the case of the PHP Nuke install. Changing the parameter in my PHP.INI file to the one in your example turned that off. "register_globals is off?" Yes, it was off. That fixed the input not being posted to

php-install Digest 31 Oct 2002 18:29:16 -0000 Issue 1097

2002-10-31 Thread php-install-digest-help
php-install Digest 31 Oct 2002 18:29:16 - Issue 1097 Topics (messages 8982 through 8991): numbers 8982 by: Marcus Van Wyk 8983 by: David Phillips LoadModule fails 8984 by: samug Problems apache2, php 4.2.3 and typo3 8985 by: Marcel Odendahl n00b - PHP on II

[PHP-INST] Re: mail()

2002-10-31 Thread Tony Simopoulos
Actually, its the latest version of PHP, on the latest version of REDHAT linux. There doesn't even seem to be a configure option for getting mail to work, and its not clear at all why the mail is not working. tonys. "Yasuo Ohgaki" <[EMAIL PROTECTED]> wrote in message news:3DC0A56C.5050908@;ohgaki

Re: [PHP-INST] php-4.2.x + gd-2.0.4

2002-10-31 Thread Rasmus Lerdorf
Yes, we know. You'll either need to hack those instances to refer to ->gd_free instead of ->free or wait for 4.3. -Rasmus On Thu, 31 Oct 2002, EG Ortego wrote: > gcc -I. -I/usr/local/src/php-4.2.3/ext/gd -I/usr/local/src/php-4.2.3/main >-I/usr/local/src/php-4.2.3 -I/usr/local/src/apache_1.3.27

[PHP-INST] php-4.2.x + gd-2.0.4

2002-10-31 Thread EG Ortego
gcc -I. -I/usr/local/src/php-4.2.3/ext/gd -I/usr/local/src/php-4.2.3/main -I/usr/local/src/php-4.2.3 -I/usr/local/src/apache_1.3.27//src/include -I/usr/local/src/apache_1.3.27//src/os/unix -I/usr/local/src/php-4.2.3/Zend -I/usr/local/include/freetype2/freetype -I/tmp/epache/gd-2.0.4/ -I/usr/loc

Re: [PHP-INST] n00b - PHP on IIS 5 - Not Allowing File Writes Though All Permissions Seem Correct

2002-10-31 Thread Stephen Edmonds
Simple answer... it is just a warning When you first create a variable, you normally assign it a value. EG: $MyVariable = "value"; However, you can (and quite often want to) not assign a value to the variable before you use it. This is espically true in forms where the values are sent by the use

Re: [PHP-INST] n00b - PHP on IIS 5 - Not Allowing File Writes Though All Permissions Seem Correct

2002-10-31 Thread Chris Hewitt
David Kaplowitz wrote: But, if I try to run any kind of script that requires writing to a file, (with or from a variable for instance - see example script lines below), it seems to fail with a "Notice: Undefined variable: YourName in *dons flame suit* register_globals is off? HTH Chris -- P

[PHP-INST] n00b - PHP on IIS 5 - Not Allowing File Writes Though All Permissions Seem Correct

2002-10-31 Thread David Kaplowitz
Hi, I've installed PHP 4.2.3 on a Win2k Workstation (sp2) Box that is running IIS5. If I run the PHPInfo script, it gives me the proper HTML feedback about the server, which seems to say everything's fine. I'm also successfully running PHPMyAdmin on the box and have successfully entered SELECT st

[PHP-INST] Problems apache2, php 4.2.3 and typo3

2002-10-31 Thread Marcel Odendahl
Hi, I wanted to install the typo3 on a linux machine with apache2 and php 4.2.3. After installing apache2 and php I installed the typo3 testsite. Everything worked fine. In the installation tool the menu item "Image Processing" works. But if I browsed the testsite in the frontend I got no graphics

[PHP-INST] LoadModule fails

2002-10-31 Thread samug
When launching apache.exe from the commandline, I get an errormesage: apache: module "c:\php4build\snap\sapi\apache2filter\sapi_apache2.c" is not comp atible with this version of Apache (found 20020628, need 20020903). Please contact the vendor for the correct version. I'm using Apache 2.0.43 for

Re: [PHP-INST] numbers

2002-10-31 Thread David Phillips
This is off-topic for this list. Marcus Van Wyk writes: > Anyone in list know how to strip number and round off to the nearest Learn how to read and search the manual. Everything is categorized and easy to find, provided you are willing to actually look for it. Big hint: you already said the na

[PHP-INST] numbers

2002-10-31 Thread Marcus Van Wyk
Hi there Guys Anyone in list know how to strip number and round off to the nearest meaning if Number = R245.614035088 it should strip it down to R245.61 Thank in advance Marcus PS* i have bcmath enable in PHP == This message contai