[PHP-INSTALL] Re: problem to modify httpd.conf

2003-12-10 Thread Seung Hwan Kang
in my apache httpd.conf. // apache 2.0.48 // line 173 LoadModule php4_module c:/php/sapi/php4apache2.dll // line 322 DirectoryIndex index.htm index.html index.php // 780 # To use PHP scripts # AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps > Dear all, > I hav

Re: [PHP-INSTALL] Re: Installation on XP

2003-12-09 Thread Seung Hwan Kang
dex, that's all for httpd.conf. If it doesn't work, let me or others know. :) Any ideas? -----Original Message- From: Seung Hwan Kang [mailto:[EMAIL PROTECTED] Sent: 07 December 2003 07:41 To: [EMAIL PROTECTED] Subject: [PHP-INSTALL] Re: Installation on XP Clive R Sweeney wrote

[PHP-INSTALL] Re: Unable to pass values throug form

2003-12-06 Thread Seung Hwan Kang
register_globals = off since PHP 4.1 > that means you got to use $_GET or $_POST and so on. Perdeep Singh wrote: Sir, i installed php 4.3.3 on windows xp having iis 5.1 it's great working except that it not able to take value through form .As shown in below code show() function called

[PHP-INSTALL] Re: Installation on XP

2003-12-06 Thread Seung Hwan Kang
Clive R Sweeney wrote: I tried for some hours last night to get Apache and PHP working together in a Windows XP machine. Apache 1.3 seems to work and PHP 4.3.4 seems to work, but I still can't open a PHP test file in my web browser. Believe me, I've tried to follow the instructions very carefully

[PHP-INST] Re: Please Help: PHP and Apache Installation

2003-07-26 Thread Seung Hwan Kang
Wx wrote: I have php version 5.0.0b1 installed and apache 2.046. I also have mySQL 4 4.013 installed on a windows XP home Computer. MySQL works, PHP works and Apache works when the following lines are not added to the httpd.con LoadModule php4_module "C:/Program Files/Apache use php5_module

[PHP-INST] Re: Problem Installing On XP

2003-07-25 Thread Seung Hwan Kang
from PHP manual - apache 1.x module install 1. If you would like to use PHP as a module in Apache, be sure to copy php4ts.dll to the windows/system (for Windows 9x/Me), winnt/system32 (for Windows NT/2000) or windows/system32 (for Windows XP) directory 2. Open httpd.conf with your favorite edit

[PHP-INST] Re: Sessions help needed!

2003-07-06 Thread Seung Hwan Kang
I assume you use PHP 4.3x with register_globals = off in php.ini. Please read though my comments in your codes. I hope this helpful! John Fuller wrote: Hello all, I am new to php in general and am trying to set up a user authentification system with mysql. The registration page works well

[PHP-INST] Re: How do I compiling MySQL Clients on Windows

2003-07-04 Thread Seung Hwan Kang
files that use $PHP_SELF? does not work... along with other PHP functions. I have yet to try MySQL on PHP5 because I cant use any of my scripts that use MySQL! "Seung Hwan Kang" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Help!!! I just installed PHP 5.0.0 Beta 1 wit

[PHP-INST] How do I compiling MySQL Clients on Windows

2003-07-04 Thread Seung Hwan Kang
Help!!! I just installed PHP 5.0.0 Beta 1 with Apache on W2K SP4, and I also read though the postings. The problem is that we have to use mysql clients which comes with mysql to use PHP. I read following mysql docs, and I don't have any clue, anyone? --

[PHP-INST] Re: PHP5 beta 1 + Apache 2.0.46 on WinXP SP1

2003-06-30 Thread Seung Hwan Kang
Hello Azn, I tried PHP as an Apache module on W2K with Apache 2.0.46 & PHP 5.0.0 Beta 1, but didn't work. You may need to install it as a CGI. It works! Azn wrote: Hi, Can anyone get PHP5 beta to work on Apache 2.0.46? Heres what I'm doing: Extract PHP5 to C:\php Put php4ts.dll into C:\WINDOW

[PHP-INST] Re: setting up local php+apache enviroment on w2k

2003-06-10 Thread Seung Hwan Kang
Please use following... echo "hello, " . $_POST["name"] " !"; ?> Funkyflo wrote: Hello! I have a problem with setting up apache+php on my local win2k-machine. I use apache 1.3.27 and PHP 4.3.2 (installer-package) When I try to execute this test-script: Enter your Name:     I

[PHP-INST] Re: problem installing php with apache on windows

2002-11-09 Thread Seung Hwan Kang
No! You forgot to put php.ini file from c:\PHP4 into Windows (WINNT) directory. When you look at PHP4 directory, there are two INI files, php.ini-dist and php.ini-recommended. You can copy to c:\windows directory and rename it to php.ini. "Josh" <[EMAIL PROTECTED]> wrote in message news:2002110

[PHP-INST] Re: load module php_4crashed Apache2

2002-11-09 Thread Seung Hwan Kang
It depends on version of your Apache and PHP. Old version of PHP does not work on new Aapche. I installed on W2K Pro. apache 2.0.43 with PHP 4.2.3 - ok apache 2.0.43 with PHP 4.3.pre2 - ok "Josh" <[EMAIL PROTECTED]> wrote in message news:20021109203744.78402.qmail@;web13310.mail.yahoo.com... >

[PHP-INST] Re: php4.2.2 remembers last GET and POST vars in HTTP_SESSION_VARS also

2002-11-06 Thread Seung Hwan Kang
PHP 4.2.* has "register_globals = off" as a default. You variables has to be $_POST["fname"] or $_POST["fname"] or $_SERVER["PHP_SELF"] etc., or you can simple incides one file eg. //extract.php in your old codes... require_once "extract.php"; "Alexander Piavka" <[EMAIL PROTECTED]> wrote in