[PHP-WIN] problem login as root

2002-01-02 Thread Albert Leonardo
Help me!!! I have problem login as root at my MySQL. I remember the last thing I did before this happened, is that I deleted the root column from user table from mysql database. Since then, I can login as root (without password), but when I want to use the databases, I can't. I also cannot grant(g

php-windows Digest 2 Jan 2002 08:29:33 -0000 Issue 932

2002-01-02 Thread php-windows-digest-help
php-windows Digest 2 Jan 2002 08:29:33 - Issue 932 Topics (messages 11255 through 11265): 500 Internal Server Error 11255 by: Chris Burwell 11258 by: Chris Burwell Cookies 11256 by: Chris Burwell Re: Passing by reference... 11257 by: Ignatius Teo 11

[PHP-WIN] Re: MSSQL DB Connect

2002-01-02 Thread Jerry
Thanks Jeremy, I finally found the solution: 0){ print "Number of rows: $number"; while($i < $number){ $dateval= mssql_result($result,$i,"dateval"); echo "$dateval"; $i++;} }?> And it works fine ! Now I'm looking for the same function for IBM DB2 database connection... Jerry "Jeremy Reed"

Re: [PHP-WIN] Re: 500 Internal Server Error

2002-01-02 Thread Olivier Mascia
Hello, Chris Burwell wrote: CB> Now i am encountering another problem. It seems session vars do not retain CB> their values once you leave the page that registers them. I have found CB> several entries in the bug database about this. My question is does anyone CB> else encounter this problem, an

Re: [PHP-WIN] Settings per virtual site on IIS ?

2002-01-02 Thread Olivier Mascia
Hello, Shane Caraveo wrote: SC> Yes, you can use the registry to do per-directory settings. SC> SC> HKEY_LOCAL_MACHINE\SOFTWARE\PHP\Per Directory Values SC> SC> Create keys for each directory, then add the entries. So if you're SC> website is at c:\inetpub\wwwroot, under the above key, add: S

Re: [PHP-WIN] Settings per virtual site on IIS ?

2002-01-02 Thread Olivier Mascia
Hello, Olivier Mascia wrote: OM> SC> Yes, you can use the registry to do per-directory settings. OM> SC> HKEY_LOCAL_MACHINE\SOFTWARE\PHP\Per Directory Values OM> SC> Create keys for each directory, then add the entries. So if you're OM> SC> website is at c:\inetpub\wwwroot, under the above key,

Re: [PHP-WIN] problem login as root

2002-01-02 Thread Pac mon
Did you mean to delete the column!? I'd suggest just backing up the data and reinstalling MYSQL. Then restoring the data. Easiest and most likely to work.. > >Help me!!! I have problem login as root at my MySQL. I remember the last >thing I did before this happened, is that I deleted the root c

[PHP-WIN] PHP and IIS

2002-01-02 Thread Matt Obstgarten
Hello, I am new to PHP. I have PHP (cgi version) configured on my machine running XP Pro and IIS. It works fine. The first script I wanted to write was the ever-useful feedback form script where the contents of a form are e-mailed to the webmaster. I am sure that I have a working script

Re: [PHP-WIN] Settings per virtual site on IIS ?

2002-01-02 Thread Christoph Grottolo
"Olivier Mascia" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... | Hello, | | Olivier Mascia wrote: | | OM> SC> Yes, you can use the registry to do per-directory settings. | OM> SC> HKEY_LOCAL_MACHINE\SOFTWARE\PHP\Per Directory Values | OM> SC> Create keys

[PHP-WIN] PHP settings blues

2002-01-02 Thread Olivier Mascia
In order to setup my server correctly (using IIS 5, PHP 4.1 as ISAPI) and offer PHP services to the people who have some small virtual websites hosted on that machine, I fell on the following problem. The per directory settings that can be set through the registry do not allow me to restrict 'ope

Re: [PHP-WIN] Building PHP on Win32

2002-01-02 Thread Frank M. Kromann
So far it works fine with MS VC++. I dont think it is possible to build it with gcc at this point. If you want binaries from the latest CVS you can download them from http://kromann.info/php4.php. This page is updated each morning at 4 am PST. - Frank > Hi all, > > Has anyone had luck buildi

[PHP-WIN] Win Zend IDE 2.0 Question

2002-01-02 Thread Glen Schoenung
Have been trying to get the Zend 2.0 IDE to run with no luck. The IDE seems to work except ant time I try to run a program nothing appears in the output window. Also it seems that stepping through a program or adding watches does nothing. Any experiences suggestions? -- __O _

php-windows Digest 3 Jan 2002 03:45:47 -0000 Issue 933

2002-01-02 Thread php-windows-digest-help
php-windows Digest 3 Jan 2002 03:45:47 - Issue 933 Topics (messages 11266 through 11275): Re: MSSQL DB Connect 11266 by: Jerry Re: 500 Internal Server Error 11267 by: Olivier Mascia Re: Settings per virtual site on IIS ? 11268 by: Olivier Mascia 11269 by: O

[PHP-WIN] Apache 1.3.22 and PHP 4.1.0

2002-01-02 Thread Randall Barber
Using both the MSI and EXE packages of the subject mentioned programs, I arrive at the same place, Apache will not run PHP. I am using NT 4.0 SP 6. I add the familiar LoadModule and AddType lines to the Apache httpd.conf file. I install Apache first, then PHP with the following error: Cannot u

[PHP-WIN] PHP 4.1.0 with session problem

2002-01-02 Thread ~fanta~
I'm starter of the PHP, Thanks for any help! In old version I can call the value from session by this way: $HTTP_SESSION_VARS["ID"] But now I can't run this format $HTTP_SESSION_VARS Can anyone solve this problem? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [E

[PHP-WIN] Re: Apache 1.3.22 and PHP 4.1.0

2002-01-02 Thread Gaylen Fraley
Make sure you have this line in your httpd.conf . It's an omission from the documentation if I remember right. AddModule mod_php4.c -- Gaylen [EMAIL PROTECTED] Home http://www.gaylenandmargie.com/ PHP KISGB v3.02 Guest Book http://www.gaylenandmargie.com/phpwebsite/ "Randall Barber" <[EMAIL PR

[PHP-WIN] Re: PHP 4.1.0 with session problem

2002-01-02 Thread Gaylen Fraley
It should still work. Try also $_SESSION["ID"]; -- Gaylen [EMAIL PROTECTED] Home http://www.gaylenandmargie.com/ PHP KISGB v3.02 Guest Book http://www.gaylenandmargie.com/phpwebsite/ "~Fanta~" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I'm starter of th

[PHP-WIN] Re: Apache 1.3.22 and PHP 4.1.0

2002-01-02 Thread Steve Yates
"Gaylen Fraley" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Make sure you have this line in your httpd.conf . It's an omission from the > documentation if I remember right. > > AddModule mod_php4.c Just set this combination up the other day. I don't h

[PHP-WIN] Re: PHP and IIS

2002-01-02 Thread Steve Yates
"Matt Obstgarten" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > that this is most likely because I don't have any mail settings Look for these settings in PHP.INI: [mail function] ; For Win32 only. SMTP = smtp.drcadvertising.com ; For Win32 only. sendmail_f