[PHP-INST] Re: mail()

2002-11-01 Thread Yasuo Ohgaki
#x27;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 > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... >

[PHP-INST] Re: mail()

2002-10-30 Thread Yasuo Ohgaki
I guess you are using older PHP. You have to rebuild PHP with sendmail compatible command installed or get newer PHP (which is better) -- Yasuo Ohgaki Tony Simopoulos wrote: > folks, > > ./configure did not specify any fancy directives for installing mail() > sup

[PHP-INST] Re: PHP 4.2.* & GD 2.0.4

2002-10-30 Thread Yasuo Ohgaki
Don't expect newer libs works well If you really need GD2.0.4, try CVS versoin. -- Yasuo Ohgaki Eg Ortego wrote: Iv'e been trying to compile php with gd, I had been running PHP 4.2.1 and first tryed to use that version when I was unsucessful I figured the next PHP versio

[PHP-INST] Re: [php 4.2.3] trouble in setting up debugger

2002-10-30 Thread Yasuo Ohgaki
It simply does not work with PHP4. (Not supported) -- Yasuo Ohgaki Dennis Leist wrote: I have troubles in setting up the debugger. My php.ini goes like this: debugger.host = 192.168.1.99 debugger.port = 7869 debugger.enabled = True But when checking these values via phpinfo() I never see

[PHP-INST] Re: [PHP-DEV] Re: Multibyte ([PHP-INST] Re: "If-Modified-Since"..)

2002-10-16 Thread Yasuo Ohgaki
Thanks for heads up. I made the same mistake several times even if I wrote english version of the manual page. Guessing encoding every time is stupid :) You should have wrong internal_encoding. -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-INST] Re: Multibyte ([PHP-INST] Re: "If-Modified-Since"..)

2002-10-16 Thread Yasuo Ohgaki
Forgot to what it's doing. Since the multibyte char sequence is too short, mbstring is failing to detect encoding correctly. In this case, we can specify encoding or modify detect order. -- Yasuo Ohgaki Yasuo Ohgaki wrote: > Ryo Takagi wrote: > >> If the line

[PHP-INST] Re: Multibyte ([PHP-INST] Re: "If-Modified-Since"..)

2002-10-16 Thread Yasuo Ohgaki
This cannot be fixed. Check & modify your detect order by mb_detect_order(). -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-INST] Re: Apache 2 & incorrect 304 response to "If-Modified-Since"

2002-10-14 Thread Yasuo Ohgaki
p.dev also. > > I could not test 4.3.0-pre1 thoroughly because it did not work when I > used it with multibyte character contents, but the header issue seems to > be the same. Hmm... Let us know the problem so that we can fix problems before release. -- Yasuo Ohgaki > > Thanks in adv

[PHP-INST] Re: zip/zziplib segfaults

2002-09-25 Thread Yasuo Ohgaki
a zip_open then attempts a zip_read, gets a segmentation fault on > the zip_read (or even a zip_close immediately after the open). > > Can anyone shed some light on how to get zip support working? It may be broken in that version. Try newer version. -- Yasuo Ohgaki -- PHP Install Maili

[PHP-INST] Re: Segmentation fault

2002-09-25 Thread Yasuo Ohgaki
build is not working. Striting it > from the shell it provides a "Segmentation fault". > I couldn't find any help from the net, so I hope, that anyone can provide a > clue for the problem. Visit bugs.php.net and get backtrace as described, submit bug report. -- Yas

[PHP-INST] Re: Install problems on Solaris 8 with PHP 4.2.1

2002-06-21 Thread Yasuo Ohgaki
Yasuo Ohgaki wrote: > Thomas Bader wrote: > >> Hello >> >> Just tried to compile PHP 4.2.1 and I got the following >> error: > > > Thomas, you should use other mail address to post article here. > Oops, sorry it's not your fault. -- Ya

[PHP-INST] Re: Install problems on Solaris 8 with PHP 4.2.1

2002-06-21 Thread Yasuo Ohgaki
s been taken. Message-Id: <[EMAIL PROTECTED]> From: [EMAIL PROTECTED] Time-Stamp: Sat, 22 Jun 2002 10:47:15 +0900 : Message contains [1] file attachments Subject: [PHP-INST] Re: Install problems on Solaris 8 with PHP 4.2.1 From: Yasuo Ohgaki <[EMAIL PROTECTED]> Date: Sat, 22 Ju

[PHP-INST] Re: Install problems on Solaris 8 with PHP 4.2.1

2002-06-21 Thread Yasuo Ohgaki
It's been asked sevral times. You can find answers in archive. -- Yasuo Ohgaki Thomas Bader wrote: > Hello > > Just tried to compile PHP 4.2.1 and I got the following > error: > > [thomasb@stinky php-4.2.1 149/2] % uname -a > SunOS stinky 5.8 Generic_108528-10 sun

[PHP-INST] Re: php 4.2.1 apache 2.0.39 cookie problems after sapi make problems

2002-06-20 Thread Yasuo Ohgaki
If you search archive, you'll find useful information about Apache2filter support. (Or read 4.2.0 release note) BTW, cookie problem is fixed in CVS IIRC. -- Yasuo Ohgaki Robin Edgar wrote: > Hi, > I've installed Apache 2.0.39 on Debian 2.2 and 2.4, which went fine. > Then i

[PHP-INST] Re: mail() doesn't work for me

2002-05-30 Thread Yasuo Ohgaki
o php.ini but no luck help please ... You don't need any lib, but sendmail binary. configure script is failing to detect sendmail somehow. Are you sure you have sendmail under /usr/sbin or /usr/lib? -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-INST] Re: Using php to parse mail

2002-05-25 Thread Yasuo Ohgaki
I just replied to qmail list, but anyway, You are having problem with a little exit/die behavior. Look for it and change it to "return" (or return numeric 0 e.g. exit(0);) Then your script would work properly. (I'm still guessing since you provide no error message nor code)

[PHP-INST] Re: upgrade and now no formdata?

2002-05-03 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: > Any form pages I had, which used to work, no always behave as if the > data passed from the form is blank. > > Did I do something wrong in the install? Yes. You didn't read NEWS or release note :) -- Yasuo Ohgaki -- PHP Install Mailing List (h

[PHP-INST] Re: Apache 2 ?

2002-04-30 Thread Yasuo Ohgaki
ache2 support is _NOT_ for general public. It's only good if you are willing to find out bugs and fill out _good_ bug reports for Apache2. -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-INST] Re: Blank page - one possible resolution.....

2002-04-30 Thread Yasuo Ohgaki
Apache and you can execute .php scsripts. You should be able to change php file extension like AddType application/x-httpd-php .html .php .phtml .html, .php or .pthml are treated as php script by Apache with this example. -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/)

[PHP-INST] Re: PHP error when starting Apache, Undefined symbol "pthread_getspecific",what's this???

2002-04-30 Thread Yasuo Ohgaki
srv/progs/php > > The system that i do this on is FreeBSD 4.5 > I don't use FreeBSD, but are you sure you have pthread? You may try other thead lib. Do ./configure --help for other options. -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-INST] Re: PHP_SELF

2002-04-30 Thread Yasuo Ohgaki
. It's mentioned in NEWS file. register_globals=Off by default from 4.2.0 -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-INST] Re: Problem with msession when compiling Apache 1.3.24 and PHP 4.2.0(FreeBSD 4.5)

2002-04-30 Thread Yasuo Ohgaki
Are you sure you have libphoenix? -- Yasuo Ohgaki Carsten Gehling wrote: > I have problems compiling Apache 1.3.24 after configuring PHP 4.2.0 > > The technical stuff: > OS: FreeBSD 4.5 (tiny) > Apache: 1.3.24 > PHP: 4.2.0 > MySQL: 2.23.49 (just to be verbose) > &g

[PHP-INST] Re: PHP4.2.0 + Apache2 prints code

2002-04-30 Thread Yasuo Ohgaki
t help is an > AddHandler line, but I don't know what I'd put there as a handler. > > Any thoughts/comments/ideas would be greatly appreciated. > Read README file in the SAPI directory. sapi/apache2filter/README -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-INST] Re: unlink security problem

2002-04-16 Thread Yasuo Ohgaki
This is fixed in CVS version and in 4.2.0RCs. -- Yasuo Ohgaki Patrick Cossette wrote: > Hi, I've already sent that to the php-general list before discovering php-install. >Sorry for the duplicate. > > I'm running PHP 4.1.2 as an Apache module (Apache 1.3.24) under AIX

[PHP-INST] Re: php4.2.0RC4 apache2

2002-04-16 Thread Yasuo Ohgaki
Petrov Ivan wrote: > Hi! > > Is the subj still doesn't work together? > It should compile, but I wouldn't say it works. It crashes more compare to Apache 1.3x SAPI. It's experimental anyway. -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/)

[Fwd: [PHP-INST] READ-FIRST: Apache2 Install FAQ [T2002041000BS]]

2002-04-09 Thread Yasuo Ohgaki
Who is responsible for this? I'm getting this for every post to php.net. Fix your mail server filter setting or unsubscribe from list. You can use news.php.net also. If NNTP is filtered by firewall, try http://news.php.net/ -- Yasuo Ohgaki Original Message Subject: [PHP

[PHP-INST] Re: Error compiling Apache 1.3.24 with PHP 4.1.2

2002-04-09 Thread Yasuo Ohgaki
tunately that did not solve the problem. Any other suggestions? > Since you are uisng RH6.2, you upgraded glibc I suppose. You did some thing wrong when you upgrade glibc. I suggest you to get help from RedHat user mail list. -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net

[PHP-INST] READ-FIRST: Apache2 Install FAQ

2002-04-09 Thread Yasuo Ohgaki
know, they are suppose to search archive. BTW, Apache2 support may not available in PHP 4.2.0 release. Since too many people will not read RELEASE notes and will not notice Apache2filter SAPI is *EXPERIMENTAL*. -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To

[PHP-INST] Re: pgsql.so

2002-04-09 Thread Yasuo Ohgaki
module in PHP whenever possible, but you can do --with-pgsql=shared,/usr/local/pgsql You you don't specify "shared", pgsql module is in libphp4.so. -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-INST] Re: Error compiling Apache 1.3.24 with PHP 4.1.2

2002-04-09 Thread Yasuo Ohgaki
Sorry Jasper, I'm replying to wrong one. It seems you have problem with resolver lib. As someone already mentioned. rpm -qf /lib/libresolve.so.* to find out package name. The reinstall both resolver rpm and it's devel rpm (if any) Then your problem should be fixed. -- Yasuo Ohgak

[PHP-INST] Re: Error compiling Apache 1.3.24 with PHP 4.1.2

2002-04-09 Thread Yasuo Ohgaki
Hi Jasper, Search archive :) I've answered enough to say that, I think. -- Yasuo Ohgaki Jasper Metselaar wrote: > Hello, > > I am trying to compile Apache 1.3.24 with PHP 4.1.2, but when > compiling I get the following errors: > > modules/php4/libphp4.a(dns.o): In f

[PHP-INST] Re: php-4.2.0RC2 compile and install problems

2002-04-08 Thread Yasuo Ohgaki
ith-apxs2=/usr/local/apache2/bin/apxs > make > make install Are you guys using --with-apxs? It will never work. Read README in sapi/apache2filter/ at least... (And ./configure --help...) -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-INST] Re: php-4.2.0RC2 compile and install problems

2002-04-06 Thread Yasuo Ohgaki
Check out CVS version (PHP_4_2_0 brach) Get Apache 2.0.35. Then it should be fine. -- Yasuo Ohgaki Sebastian Wolfgarten wrote: > Hi, > > I'm trying to install php 4.2.0RC2 on apache 2.0.32 > but when I compile the software I get this error: > > Making all in apache2fil

[PHP-INST] Re: really simple question

2002-03-29 Thread Yasuo Ohgaki
Any other way? PHP4.2.0 will have constant -- Yasuo Ohgaki > > Thanks, > > Vasiliy Boulytchev > Colorado Information Technologies Inc. > -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-INST] Re: Zend compile problem on Solaris 8

2002-03-15 Thread Yasuo Ohgaki
make distclean; ./configure ; make does not fix the problem? -- Yasuo Ohgaki Tony wrote: > PHP seems to configure just fine with: > > # > ./configure --with-mysql=/usr/local/mysql --with-apache=../apache_1.3.23 --e > nable-track-vars --disable-short-tags > > However, w

[PHP-INST] Re: Postgres 7.2 Support w php 4.12

2002-03-05 Thread Yasuo Ohgaki
> /usr/local/lib/libpg.so.2.2 (2.1 & 2) as suggested on php site > > Still no go !!! > > Any help greatly appreciated make install-header (or make install-all-header? I forgot exact target name) is missing? -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-INST] Re: Aix 4.3.3 + Apache 1.3.23 + Php 4.1.1 = CORE DUMP! HELP!

2002-03-01 Thread Yasuo Ohgaki
Did you try to install with minmum settings? Paste backtrace if you have segfalut. If you want to use Java extension, try JDK 1.2. -- Yasuo Ohgaki [EMAIL PROTECTED] wrote: > I have been trying very unsuccessfully to get Apache 1.3.23 to run php > 4.1.1 as a DSO. I can get everything to c

[PHP-INST] Re: Removing headers?

2002-02-28 Thread Yasuo Ohgaki
know how to do this? > New CLI SAPI does not print header at all. Wait for PHP 4.2.0 or use snapshot. http://snaps.php.net/ -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-INST] Re: Sporadic "Document Contains No Data" pages

2002-02-26 Thread Yasuo Ohgaki
looks you have crash bug, get backtrace and send bug report. Don't forget to try latest CVS snapshot. http://snaps.php.net/ -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-INST] Re: Problems starting Apache 1.3.22 after rebuild with Php 4.1.1

2002-02-25 Thread Yasuo Ohgaki
Just a guess. It looks you are trying to run httpd with gid -1, aren't you? -- Yasuo Ohgaki Vic Sutton wrote: > I have rebuilt Apache 1.3.22 with PHP 4.1.1 successfully on Linux 6.0, but > fail to get httpd process started using the command line: > > /usr/local/apache/bi

Re: [PHP-INST] Re: php java extension (php 4.1.1 and jdk1.4) not working

2002-02-24 Thread Yasuo Ohgaki
ut control problems rather than exprimental Java extension ;) -- Yasuo Ohgaki > > - Original Message - > From: Yasuo Ohgaki <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]>; Sukhwinder Singh <[EMAIL PROTECTED]> > Sent: Sunday, February 24, 2002 9:25 AM

Re: [PHP-INST] Re: php java extension (php 4.1.1 and jdk1.4) not working

2002-02-24 Thread Yasuo Ohgaki
ut control problems rather than exprimental Java extension ;) -- Yasuo Ohgaki > > - Original Message - > From: Yasuo Ohgaki <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]>; Sukhwinder Singh <[EMAIL PROTECTED]> > Sent: Sunday, February 24, 2002 9:25 AM

[PHP-INST] Re: php java extension (php 4.1.1 and jdk1.4) not working

2002-02-23 Thread Yasuo Ohgaki
or earlier) and jdk1.2.2 worked >without any problems (and without exporting LD_LIBRARY_PATH). Questions I have begin >with ( four @ symbols). > > With php 4.1.1 and jdk1.4, I faced 100s of problems: > -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net

[PHP-INST] Re: make of php 4.1.1 with apache 2.0.32 fails

2002-02-17 Thread Yasuo Ohgaki
Guys, Use PHP CVS or shapshot if you want to play with Apache2. Apache2 is underdevelopment, it may not work/compile with PHP. If it does not work, submit patch for CVS source instead of asking ;) It's more constructive. -- Yasuo Ohgaki [EMAIL PROTECTED] wrote: > > Hi. I'm t

Re: [PHP-INST] Re: Apache2.0 + PHP4.1 - Missing Variables

2002-02-16 Thread Yasuo Ohgaki
Are you using Alpha version of Apache? (version 2.0.31) There is no stable Apache2 yet and PHP does not support beta. BTW, I'm not trying to use Apache2 for production system. Just doing some tests. -- Yasuo Ohgaki [EMAIL PROTECTED] wrote: > Well, I got php-200202160900, but had build

[PHP-INST] Re: Apache2.0 + PHP4.1 - Missing Variables

2002-02-15 Thread Yasuo Ohgaki
riables are there. One in particular that I was expecting to see is > $_SERVER['REMOTE_ADDR']. > > Has anyone had any experience with this? can anyone offer me some advice? > > Thanks Much, > Joe > Try snapshot. http://snaps.php.net/ It works well for me. -- Y

[PHP-INST] Re: ap_block_alarm

2002-02-14 Thread Yasuo Ohgaki
k_alarms > " > > Is there a module somebody out there can hopefully > make that defins this symbol? This is apache 2.0.28 > on Redhat Linux 7.2. Thank you in advance. --Don README says download CVS or alpha. I'm uisng alpha(2.0.31) and does not have any problem to build/

[PHP-INST] Re: Error 1 on GD compile

2002-02-13 Thread Yasuo Ohgaki
rror - I welcome your suggestions. > It looks you have multiple gd installations. Get rid of all gd related files. header, shared/static lib. Look for all directory under your file system. Install a gd version you need again. Then it should compile. (If you know build system, you can

[PHP-INST] Re: Pre-defined vars not working

2002-02-11 Thread Yasuo Ohgaki
gt; echo "URL referida: $HTTP_REFERER "; > echo "IP del cliente: $REMOTE_ADDR "; > ?> Register globals are no longer recommended and it will be off by default from PHP 4.2. Use track vars. $_SERVER for example. -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-INST] Re: error: cannot find output from lex

2002-02-11 Thread Yasuo Ohgaki
Install "flex". You probably need more tools to build php... Read manual for tools you need. -- Yasuo Ohgaki Johannes Tyra wrote: > Hi List, > > with SuSE 7.3 I have an error with ./configure > > checking for flex... lex > checking for yywrap in -ll... no >

Re: [PHP-INST] MM save hanlder problem

2002-02-08 Thread Yasuo Ohgaki
Could you do ./cvsclean ./buildconf ./configure make again? -- Yasuo Ohgaki Rick Morris wrote: > - Original Message - > From: "Yasuo Ohgaki" <[EMAIL PROTECTED]> > To: "Rick Morris" <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> >

[PHP-INST] MM save hanlder problem

2002-02-07 Thread Yasuo Ohgaki
uggestions? > > Thanks for the help, > Hmm. What is your session.save_path? MM files are now created under session.save_path. If it is invalid, mm save handler does not work. (UID of httpd process should be able to write) -- Yasuo Ohgaki _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-INST] How to apply patch files

2002-02-06 Thread Yasuo Ohgaki
in this function) > *** Error code 1 Hi, patch is not applied correctly. Change directory to php4 source root. then patch -p0 < session.diff (Since file path in the patch is "ext/session/") Then you should be able to compile w/o any warnings and errors. You need to change directo

[PHP-INST] Re: POST vs GET?

2002-02-06 Thread Yasuo Ohgaki
some php.ini settings (I'm running PHP 4.1.1 with Apache 1.3.22 > under Win98): > > variables_order = "EGPCS" > register_globals = On > register_argc_argv = On > gpc_order = "GPC" > > Thanks... This list is not a right list for this question. Ask install/co

[PHP-INST] Re: Linux and mm session handler -- does it really handle high load?

2002-02-05 Thread Yasuo Ohgaki
to fix it before commit. -- Yasuo Ohgaki Yasuo Ohgaki wrote: > Looks like I've done something wrong. Older patch performs well but > not this one. Don't even try the patch. > > -- > Yasuo Ohgaki > > > Rick Morris wrote: > >> I have tried mm as a session

[PHP-INST] Re: Linux and mm session handler -- does it really handle high load?

2002-02-05 Thread Yasuo Ohgaki
Looks like I've done something wrong. Older patch performs well but not this one. Don't even try the patch. -- Yasuo Ohgaki Rick Morris wrote: > I have tried mm as a session handler three times, on three different Linux > boxes. Each one was a server under heavy load, running

[PHP-INST] Re: Linux and mm session handler -- does it really handle high load?

2002-02-05 Thread Yasuo Ohgaki
p source root. -- Yasuo Ohgaki Rick Morris wrote: > I have tried mm as a session handler three times, on three different Linux > boxes. Each one was a server under heavy load, running many concurrent > sessions, so I was hoping mm would solve some performance issues, but have > been disapp

[PHP-INST] Re: php 4.1.1 and bsdi 4.2 -> incompatible type for argument 4 of `semctl'

2002-02-04 Thread Yasuo Ohgaki
>what > sysvsem is, tried taking out a few other things but then get errors involving >session > support, etc. > > Any clue what i can do? > > thanks, > shawn Get rid of --enable-sysvsem from your configure line. BTW, could you send me to man 2 semctl page? -- Yasuo

Re: [PHP-INST] Re: /usr/bin/ld: cannot find -lgssapi_krb5

2002-01-27 Thread Yasuo Ohgaki
Shena Delian O'Brien wrote: > Yasuo Ohgaki wrote: > >>No. There should not be any output. >>Try to rebuild PHP again, it may work now. >> > > No, it's not going to. You see, I did not execute ldconfig when I > replied to you. I executed it last sever

Re: [PHP-INST] Re: /usr/bin/ld: cannot find -lgssapi_krb5

2002-01-27 Thread Yasuo Ohgaki
Shena Delian O'Brien wrote: > Yasuo Ohgaki wrote: > >>You must have >>libgssapi_krb5.* some where ld can access. >> > > Yes and when we do and it still errors? > Where do you have it? Is the installed directory listed in /etc/ld.so.conf? (or in /li

[PHP-INST] Re: /usr/bin/ld: cannot find -lgssapi_krb5

2002-01-27 Thread Yasuo Ohgaki
You must have libgssapi_krb5.* some where ld can access. -- Yasuo Ohgaki Please CC me when you reply to news/list messages. Do not reply only to me :) -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

[PHP-INST] Re: Old question: undefined symbol: uncompress

2002-01-27 Thread Yasuo Ohgaki
: uncompress > > Line 236 of http.conf: > LoadModule php4_modulelibexec/libphp4.so > > > Thanks for you help. > David Jackson > -- Yasuo Ohgaki Please CC me when you reply to news/list messages. Do not reply only to me :) -- PHP Install Mailing List (http:

[PHP-INST] Re: PHP + Postgresql + Linux = Frustration

2002-01-27 Thread Yasuo Ohgaki
lation instruction closely (PostgreSQL, Apache, PHP) there would be no problems. Make sure you build/install them with this order. PostgreSQL->Apache->PHP. > > Is there an easy way to do this sort of stuff on Linux or is it better to > just buy off the shelf products that work?

Re: [PHP-INST] Re: FreeBSD 4.4 / PHP 4.1.1 / PG 7.x --- /usr/libexec/elf/ld: cannot find -lpq

2002-01-25 Thread Yasuo Ohgaki
s not secure and is only in > place as a temporary POC. > ** NOTICE ********** > - Original Message - > From: "Yasuo Ohgaki" <[EMAIL PROTECTED]> > To: "Eric Jones (Contractor)" <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> >

Re: [PHP-INST] Re: FreeBSD 4.4 / PHP 4.1.1 / PG 7.x --- /usr/libexec/elf/ld: cannot find -lpq

2002-01-25 Thread Yasuo Ohgaki
fined symbol "X509_free" > Just my guess. You don't have LDAP libs, don't you? -- Yasuo Ohgaki _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com -- PHP Install Mailing List (http://www.php.

[PHP-INST] Re: php cannot run as command at LINUX

2002-01-24 Thread Yasuo Ohgaki
gt; How could you get this error message with CGI version (ie php executable) Tipcally, to run a PHP script like a shell script, you do php -q -f php_script_file_name_here and php_script_file_name_here could be -- Yasuo Ohgaki Please CC me when you reply to news/list messages. Do not reply only

[PHP-INST] Re: FreeBSD 4.4 / PHP 4.1.1 / PG 7.x --- /usr/libexec/elf/ld: cannot find -lpq

2002-01-24 Thread Yasuo Ohgaki
roblem when i do a make on my system. > *SNIP* > /usr/libexec/elf/ld: cannot find -lpq > > end - > > I see that the file /usr/libexec/elf/ld is on my system. > > i'm not sure what to do so any help would be great! -- Yasuo Ohgaki Please CC

[PHP-INST] Re: Bug #15179 Updated: php cannot find zlib when configuring

2002-01-24 Thread Yasuo Ohgaki
Carlo de Bruin wrote: > hi > The syntax on the command was right > and i did try that but to no avail Are you really have zlib and zlib-devel packages? (I'm assuming you're using RedHat or like) What do you get from following command? rpm -qa | grep "zlib" -- Y

[PHP-INST] Re: PAM_PHP module help

2002-01-22 Thread Yasuo Ohgaki
7; > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory `/usr/src/php/php-4.1.0/ext' > make: *** [all-recursive] Error 1 > > > anyone have these experiences? No, since I don't use PAM extension :) but, I guess you can build if you use buildconf script.

[PHP-INST] Re: Quick Question - Copying LibPHP4.so's

2002-01-22 Thread Yasuo Ohgaki
Jonathan Hilgeman wrote: > Just a quick yes or no question: > If I have a working system with PHP 4.1.1 on it, can I copy its libphp4.so > to another server without PHP and get that other server working, assuming I > have all the necessary libraries on the target system? >

[PHP-INST] Re: Php + pgsql

2002-01-17 Thread Yasuo Ohgaki
old libpq. > /usr/local/pgsql/lib > /usr/lib > /usr/lib/qt-2.1.0/lib > /usr/lib/qt-1.45/lib > /usr/X11R6/lib > /usr/local/BerkeleyDB.3.2/lib > -- Yasuo Ohgaki Leonard Bouchet wrote: > Hi, > > I saw this problem has been reported a few times, but I still can&#

[PHP-INST] Re: Newbie help please :) "incule_path=''.. see inside

2002-01-16 Thread Yasuo Ohgaki
nknown on line 0 > There is a known issue for include path. (GCI version) You may need to specify include_path="c:\php/includes" or include_path="c:/php\indluees" I forgot which is working. BTW, searching bug db would help for these kind of problems ;) -- Yasuo Ohga

[PHP-INST] Re: Silly little problem

2002-01-14 Thread Yasuo Ohgaki
nfiguration if you are using. I guess that's the cause ;) -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-INST] Re: Silly little problem

2002-01-14 Thread Yasuo Ohgaki
bilities Good luck. -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-INST] Re: Strage zlib configure options in PHP 4.1.1

2002-01-14 Thread Yasuo Ohgaki
DIR is the zlib install directory. > > That's a bug, right? > I don't think it's a bug. Some extensions need zlib, but they don't need zlib module :) -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

Re: [PHP-INST] Problems with mm shared memory session handler on Linux 2.2.19

2002-01-09 Thread Yasuo Ohgaki
. > > Any and all help appreciated, because the session usage is killing the > server, and I was hoping mm as a session handler would help. > > Thanks, > > Rick Morris > > -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-INST] Re: Problems with Apache2 + PHP4.1.1 ... making headway, I think ....

2002-01-06 Thread Yasuo Ohgaki
gt; > Thanks ... > Hi Marc, I'm not using Apache2 yet, but I think you have better chance to build PHP&Apache2 right with CVS version from http://snaps.php.net -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-INST] Re: Qmail; PHP 401 and 410

2001-12-25 Thread Yasuo Ohgaki
ile > > Could you post e-mail message that didn't work with header? (i.e. try with other SMTP server and get message with header) -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-INST] Re: web server crashing with either 4.1.0 or 4.0.6

2001-12-21 Thread Yasuo Ohgaki
gt; ?> > > > any help would be appreciated. > Visit http://bugs.php.net/ and read *carefully* how to report bug. There is link for "How to generate back trace". Make sure you paste backtrace to your bag report. -- Yasuo Ohgaki -- PHP Install Mailing List (http://ww

[PHP-INST] Re: php410, gd=shared, missing gd.so

2001-12-12 Thread Yasuo Ohgaki
known problems also (It works most for cases, so you probably don't have to worry) Anyway, you can try to build gd module as self contained module. Read README.SELF-CONTAINED-EXTENSION in PHP source root to build it as self contained module. It may work. -- Yasuo Ohgaki -- PHP Install Mail

[PHP-INST] Re: Compile problems under Mac OS X 10.1 (Darwin)

2001-12-12 Thread Yasuo Ohgaki
is declared to -dlopen it. > > And then way too much errors to put here... I don't use Mac OS X, so this just my guess. I think you have shared libs that are required. Make sure you have all *shared* libs you need. I've never tried to build with static lib, but you can try. --

[PHP-INST] Re: readline

2001-12-12 Thread Yasuo Ohgaki
u cannot use readline with web server SAPI. Readline is useless unless you build CGI SAPI. Regards, -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-INST] Re: How to compile PHP-4.1.0 or 4.0.6 with Oracle-9i ?

2001-12-12 Thread Yasuo Ohgaki
... /u01/app/oracle/product/9.0.1 >checking Oracle version... configure: error: Oracle-OCI8 needed > libraries not found > >I want to compile PHP with Oracle-9i. >Please let me know more detail how to solve this problem ? > thank you very much

[PHP-INST] Re: build error, somebody please help me!!!!

2001-12-11 Thread Yasuo Ohgaki
re using UNIX like system, you should be able to build/install PHP. PS: Don't forget to mention your OS/version next time. -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-INST] Re: Undefined Variable Warnings & Mail Settings

2001-12-11 Thread Yasuo Ohgaki
P = smtp.louisville.edu > > ; For Win32 only. > sendmail_from = [EMAIL PROTECTED] > > ; For Unix only. You may supply arguments as well (default: 'sendmail -t -i'). > ;sendmail_path = > You should be able to send simple mail from Windows with above setting, if

[PHP-INST] Re: Cannot load libphp4.so

2001-12-07 Thread Yasuo Ohgaki
t rid of some option or change loading order of modules, it may work. -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP-INST] Re: Warning: mail() is not supported in this PHP build

2001-12-07 Thread Yasuo Ohgaki
wrapper is flawed, or there is > something else I'm missing in my PHP compile. Is there a way to use qmail > binaries with PHP rather than expecting sendmail on every machine? Use qmail-inject then. You may want to use nullmailer aslo. (Use nullmailer-inject for thi

[PHP-INST] Re: Unable to make PHP under HP-UX 10.20

2001-12-07 Thread Yasuo Ohgaki
.. > Post debug.log instead. It's much more useful. Anyway, I suggest to try CVS version to see if you have problems. http://snaps.php.net/ Regards, -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

[PHP-INST] Re: Problem: "Unable to load dynamic library ... imap.so"

2001-12-07 Thread Yasuo Ohgaki
from your system. For example, if you install libcurleasy.so in /usr/local/curl/lib/, you should edit /etc/ld.so.conf and run ldconfig. Search archive of this list, you'll find many useful info. Regards, -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-INST] Re: Warning: mail() is not supported in this PHP build

2001-12-07 Thread Yasuo Ohgaki
figure. Simplest solution to enable mail support is installing sendmail wrapper that comes with qmail. Regards, -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-INST] Re: Problems with php install

2001-12-01 Thread Yasuo Ohgaki
-lcrypt -lnsl -lresolv 1>&5 > /usr/bin/ld: cannot find -lmysqlclient > collect2: ld returned 1 exit status > You are specifying invalid path to MySQL lib. /usr/local/mysql-3.22.32-pc-linux-gnu-i686//lib/mysql Fix your configure line or use built in mysql lib. -- Yasuo Ohgaki

[PHP-INST] Re: debugger?

2001-11-15 Thread Yasuo Ohgaki
om/ or DGB (I forgot URL) -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-INST] Re: How Java support for php

2001-11-14 Thread Yasuo Ohgaki
Gianni wrote: > How can I install java support for php? > > Gianni from Italy > Read README file in Java extension directory in source. or/and Try servlet SAPI. -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

[PHP-INST] Re: PHP script problem

2001-11-14 Thread Yasuo Ohgaki
not seem valid. The manual & notes should help to find out what's wrong. Instead of using globals, use $HTTP_SESSION_VARS, then you don't have to use session_register()/session_is_registered()/session_unregister(). -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.ne

[PHP-INST] Re: "Function registration failed" and "Module compiled with debug=0" errors

2001-11-14 Thread Yasuo Ohgaki
It may be wrong, but it seems you have modules loaded in php.ini. Are there extension="php_pgsql.so", etc, in your php.ini? -- Yasuo Ohgaki Richard Lynch wrote: > Trying to compile 4.0.6 from source on Mandrake 8.0 using: > > ./configure \ > --with-apxs=/usr

[PHP-INST] Re: refreshing and code editing problem.

2001-11-03 Thread Yasuo Ohgaki
using session module, use "private" or "nocache" for cache limitter) Read RFC2616 for full description. -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-INST] Re: Installed PHP4 And Apache on Debian

2001-11-01 Thread Yasuo Ohgaki
e in the httpd.conf >> >>Any ideas? >> > > Add the following: > > AddModule mod_php4.c > > I stepped into the same trap :) That's possible. If there is ClearModule directive after LoadModule, AddModule mod_php4.c is required. -- Yasuo Ohgaki --

[PHP-INST] Re: Installed PHP4 And Apache on Debian

2001-10-31 Thread Yasuo Ohgaki
work. Read INSTALL, README in source and the manaul again. -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP-INST] Re: compiling php as an module

2001-10-28 Thread Yasuo Ohgaki
e Apache again!! Why not? It's not like compiling kernel or X. It compiles in a few minutes. Anyway, if you not prefer to compile, use binary packages. -- Yasuo Ohgaki _ Do You Yahoo!? Get your free @yahoo.com address at http:

[PHP-INST] Re: compiling php as an module

2001-10-28 Thread Yasuo Ohgaki
ce? http://www.php.net/manual/en/install.unix.php try ./configure --help for configure options, also. -- Yasuo Ohgaki -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

  1   2   >