Re: [PHP-WIN] How to fulfill REQUEST.QUERYSTRING()
Hi, much more easier :-)) simply use $START viariable in you php code. Greetings Piotr Gu Weidong-a1923c wrote: > Want to know how to get the value of "START" from >http://root/php.php?START="STARTSTRING" > ? > > I know it is easy to get it in ASP using REQUEST.QUERYSTRING("START"), but how do it >in PHP? > > Thanks, > > Weidong Gu > > -- > PHP Windows 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-WIN] Help on MYSQL Table design
Hi Everybody, I have 2 tables: personal_info and family_info. For example, in personal_info, I have ID and NAME as fields. In family_info, I have ID, F_NAME and RELATIONSHIP as fields. The problem is in family_info, for each ID, I have several records. Do I need to have another field, say, COUNT in family_info so that I associate these records to each ID? Thanks. -- PHP Windows 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-windows Digest 29 Apr 2001 12:44:13 -0000 Issue 570
php-windows Digest 29 Apr 2001 12:44:13 - Issue 570 Topics (messages 7118 through 7123): Re: IIS 5 and Tomcat? 7118 by: Chris Boothe Oracle8 ODBC connection 7119 by: Ling Wang Oracle8 ODBC connection Problem 7120 by: Ling Wang How to fulfill REQUEST.QUERYSTRING() 7121 by: Gu Weidong-a1923c 7122 by: Piotr Pluciennik Help on MYSQL Table design 7123 by: John 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] -- Just answering my own question I think... Haven't tried this solution yet. http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/tomcat-iis-howto.html Chris Boothe [EMAIL PROTECTED] Hi Everyone, I installed the latest PHP (v4.04) and it works fine with ODBC driver for Microsoft SQL7.0 and Access97 databases. However, I just can't get it right for Oracle. I tested the ODBC connection for Oracle with VB/ADO and it works fine. Here are the error messages I am getting when I run $connection_id = odbc_connect("OracleExample", "scott", "tiger"); Warning: SQL error: [Microsoft][ODBC driver for Oracle][Oracle]ORA-12154: TNS:could not resolve service name, SQL state 08001 in SQLConnect in I also tried Oracle ODBC driver and I am getting the following: Warning: SQL error: [Oracle][ODBC][Ora]Server rejected the connection., SQL state 08004 in SQLConnect I then tried $connection_id = ocilogon("scott", "tiger", "ora0.OFFICE"); I got the following: Warning: _oci_open_server: ORA-12154: TNS:could not resolve service name Again, I tested the service name with EasyConfig and SQLPlus. I also tested ODBC set up with VB/ADO and they all work fine. Can anyone tell me what went wrong? Thanks in advance. Ling Wang Hi Everyone, I am running WinNT Server with service pack4. I am using IIS4.0 as web server. The Oracle is Oracle8i on WinNT. I installed the latest PHP (v4.04) and it works fine with ODBC driver for Microsoft SQL7.0 and Access97 databases. However, I just can't get it right for Oracle8i. I tested the ODBC connection for Oracle with VB/ADO and it works fine. Here are the error messages I am getting when I run $connection_id = odbc_connect("OracleExample", "scott", "tiger"); Warning: SQL error: [Microsoft][ODBC driver for Oracle][Oracle]ORA-12154: TNS:could not resolve service name, SQL state 08001 in SQLConnect in I also tried Oracle ODBC driver and I am getting the following: Warning: SQL error: [Oracle][ODBC][Ora]Server rejected the connection., SQL state 08004 in SQLConnect I then tried $connection_id = ocilogon("scott", "tiger", "ora0.OFFICE"); I got the following: Warning: _oci_open_server: ORA-12154: TNS:could not resolve service name Again, I tested the service name with EasyConfig and SQLPlus. I also tested ODBC set up with VB/ADO and they all work fine. Can anyone tell me what went wrong? Thanks in advance. Ling Wang Want to know how to get the value of "START" from http://root/php.php?START="STARTSTRING"; ? I know it is easy to get it in ASP using REQUEST.QUERYSTRING("START"), but how do it in PHP? Thanks, Weidong Gu Hi, much more easier :-)) simply use $START viariable in you php code. Greetings Piotr Gu Weidong-a1923c wrote: > Want to know how to get the value of "START" from >http://root/php.php?START="STARTSTRING" > ? > > I know it is easy to get it in ASP using REQUEST.QUERYSTRING("START"), but how do it >in PHP? > > Thanks, > > Weidong Gu > > -- > PHP Windows 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] Hi Everybody, I have 2 tables: personal_info and family_info. For example, in personal_info, I have ID and NAME as fields. In family_info, I have ID, F_NAME and RELATIONSHIP as fields. The problem is in family_info, for each ID, I have several records. Do I need to have another field, say, COUNT in family_info so that I associate these records to each ID? Thanks.
[PHP-WIN] PHP, network shares, and IIS5
Hi, I've been using PHP4 and IIS5 on Win2k and IIS5 for ages now. I now need to host some of my files on a network share instead of on a local drive. All that should need changing is the location on the files on IIS5, which is \\computername\share\folder. All the non-php sites still work OK after I do this, but the php sites with the PHP4 isapi module just report Warning: Failed opening '\\sharename\web sites\mysite\default.php' for inclusion (include_path='') in Unknown on line 0 The files are still there and if I change back to the local drive the php module works fine. I's pretty sure it has nothing to do with security as the share just points to the same files used on the local disk and all the permissions are the same. Anyone have any idea if PHP isapi can handle files on a network share? Thanks.
Re: [PHP-WIN] PHP, network shares, and IIS5
Have you tried mapping the drive, then accessing them like that? Hi, I've been using PHP4 and IIS5 on Win2k and IIS5 for ages now. I now need to host some of my files on a network share instead of on a local drive. All that should need changing is the location on the files on IIS5, which is \\computername\share\folder. All the non-php sites still work OK after I do this, but the php sites with the PHP4 isapi module just report Warning: Failed opening '\\sharename\web sites\mysite\default.php' for inclusion (include_path='') in Unknown on line 0 The files are still there and if I change back to the local drive the php module works fine. I's pretty sure it has nothing to do with security as the share just points to the same files used on the local disk and all the permissions are the same. Anyone have any idea if PHP isapi can handle files on a network share? Thanks.
RE: [PHP-WIN] PHP, network shares, and IIS5
Not yet, but I want to stay with the \\computername\share format if I can becuase then I can run the same commands on any server without worrying about drive letters and drive. Drive mappings are also made for the user, not the system which will cuase me problems. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 29 April 2001 17:43 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP-WIN] PHP, network shares, and IIS5 Have you tried mapping the drive, then accessing them like that? Hi, I've been using PHP4 and IIS5 on Win2k and IIS5 for ages now. I now need to host some of my files on a network share instead of on a local drive. All that should need changing is the location on the files on IIS5, which is \\computername\share\folder. All the non-php sites still work OK after I do this, but the php sites with the PHP4 isapi module just report Warning: Failed opening '\\sharename\web sites\mysite\default.php' for inclusion (include_path='') in Unknown on line 0 The files are still there and if I change back to the local drive the php module works fine. I's pretty sure it has nothing to do with security as the share just points to the same files used on the local disk and all the permissions are the same. Anyone have any idea if PHP isapi can handle files on a network share? Thanks.
[PHP-WIN] STMP
Can somoen tell me EXACTLY how to set up a STMP server? i am IIS5 on win2k and i need to now exactly what i put it my PHP.ini -- PHP Windows 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-WIN] STMP
Nice and simple.. [mail function] SMTP= mail.smtp.server;for win32 only sendmail_from = [EMAIL PROTECTED] ;for win32 only Manesh wrote: > > Can somoen tell me EXACTLY how to set up a STMP server? i am IIS5 on win2k > > and i need to now exactly what i put it my PHP.ini > > -- > PHP Windows 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] -- Craig Morrison http://www.2cah.com/ EzMTS - A _free_ Win32 EMail Server http://www.ezmts.org/ Mirrors: http://www.ezmts.org/mirrors.php Anonymous FTP at ftp://2cah.com -- PHP Windows 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-WIN] Web Sites Source
Hi there Are there any nice php sites with the source code that can be used as e commerce or forums? Or any other interesting or useful applications? Cheers Xon
RE: [PHP-WIN] STMP
how do u now what my STMP server is? -Original Message- From: Craig Morrison [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 29, 2001 1:42 PM To: Manesh Cc: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] STMP Nice and simple.. [mail function] SMTP= mail.smtp.server;for win32 only sendmail_from = [EMAIL PROTECTED] ;for win32 only Manesh wrote: > > Can somoen tell me EXACTLY how to set up a STMP server? i am IIS5 on win2k > > and i need to now exactly what i put it my PHP.ini > > -- > PHP Windows 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] -- Craig Morrison http://www.2cah.com/ EzMTS - A _free_ Win32 EMail Server http://www.ezmts.org/ Mirrors: http://www.ezmts.org/mirrors.php Anonymous FTP at ftp://2cah.com -- PHP Windows 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 Windows 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-WIN] SMTP
your meant to know that, use the same one your useing to send your emails, which is under: (and i am guessing from your email headers your using outlook) Tools > Accounts > Properties > Servers > Outgoing Mail SMTP > how do u now what my STMP server is? > > -Original Message- > From: Craig Morrison [mailto:[EMAIL PROTECTED]] > Sent: Sunday, April 29, 2001 1:42 PM > To: Manesh > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP-WIN] STMP > > > > Nice and simple.. > > [mail function] > SMTP = mail.smtp.server ;for win32 only > sendmail_from = [EMAIL PROTECTED] ;for win32 only > > > Manesh wrote: > > > > Can somoen tell me EXACTLY how to set up a STMP server? i am IIS5 on win2k > > > > and i need to now exactly what i put it my PHP.ini > > > > -- > > PHP Windows 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] > > -- > > Craig Morrison > http://www.2cah.com/ > EzMTS - A _free_ Win32 EMail Server > http://www.ezmts.org/ > Mirrors: http://www.ezmts.org/mirrors.php > Anonymous FTP at ftp://2cah.com > > -- > PHP Windows 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 Windows 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 Windows 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-WIN] SMTP
i use pop3 -Original Message- From: Tomasz Abramowicz [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 29, 2001 4:20 PM To: Manesh Cc: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] SMTP your meant to know that, use the same one your useing to send your emails, which is under: (and i am guessing from your email headers your using outlook) Tools > Accounts > Properties > Servers > Outgoing Mail SMTP > how do u now what my STMP server is? > > -Original Message- > From: Craig Morrison [mailto:[EMAIL PROTECTED]] > Sent: Sunday, April 29, 2001 1:42 PM > To: Manesh > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP-WIN] STMP > > > > Nice and simple.. > > [mail function] > SMTP = mail.smtp.server ;for win32 only > sendmail_from = [EMAIL PROTECTED] ;for win32 only > > > Manesh wrote: > > > > Can somoen tell me EXACTLY how to set up a STMP server? i am IIS5 on win2k > > > > and i need to now exactly what i put it my PHP.ini > > > > -- > > PHP Windows 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] > > -- > > Craig Morrison > http://www.2cah.com/ > EzMTS - A _free_ Win32 EMail Server > http://www.ezmts.org/ > Mirrors: http://www.ezmts.org/mirrors.php > Anonymous FTP at ftp://2cah.com > > -- > PHP Windows 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 Windows 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 Windows 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-WIN] SMTP
of course you do. most of us do. but you use that only to recieve emails, you use SMTP (Simple Mail Trasfer Protocol) to send it. > i use pop3 > > your meant to know that, use the same one your useing to send your emails, > which is under: > (and i am guessing from your email headers your using outlook) > > Tools > Accounts > Properties > Servers > Outgoing Mail SMTP > > > > > > how do u now what my STMP server is? > > > > -Original Message- > > From: Craig Morrison [mailto:[EMAIL PROTECTED]] > > Sent: Sunday, April 29, 2001 1:42 PM > > To: Manesh > > Cc: [EMAIL PROTECTED] > > Subject: Re: [PHP-WIN] STMP > > > > > > > > Nice and simple.. > > > > [mail function] > > SMTP = mail.smtp.server ;for win32 only > > sendmail_from = [EMAIL PROTECTED] ;for win32 only > > > > > > Manesh wrote: > > > > > > Can somoen tell me EXACTLY how to set up a STMP server? i am IIS5 on > win2k > > > > > > and i need to now exactly what i put it my PHP.ini > > > > > > -- > > > PHP Windows 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] > > > > -- > > > > Craig Morrison > > http://www.2cah.com/ > > EzMTS - A _free_ Win32 EMail Server > > http://www.ezmts.org/ > > Mirrors: http://www.ezmts.org/mirrors.php > > Anonymous FTP at ftp://2cah.com > > > > -- > > PHP Windows 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 Windows 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 Windows 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 Windows 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-WIN] Compiled PHP 4.06 & ISAPI
I don't supposed anyone has this, or knows where I could obtain a precompiled version of 4.06 or better? From what I've read in the PHP bug database this version may fix at least some of the problems with UNC filenames on windows platforms. Regards, Paul
RE: [PHP-WIN] SMTP
how do i set it up with II5 for win2k. I haveno clue what do do, and tell me how to do it? -Original Message- From: Tomasz Abramowicz [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 29, 2001 4:39 PM To: Manesh Cc: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] SMTP of course you do. most of us do. but you use that only to recieve emails, you use SMTP (Simple Mail Trasfer Protocol) to send it. > i use pop3 > > your meant to know that, use the same one your useing to send your emails, > which is under: > (and i am guessing from your email headers your using outlook) > > Tools > Accounts > Properties > Servers > Outgoing Mail SMTP > > > > > > how do u now what my STMP server is? > > > > -Original Message- > > From: Craig Morrison [mailto:[EMAIL PROTECTED]] > > Sent: Sunday, April 29, 2001 1:42 PM > > To: Manesh > > Cc: [EMAIL PROTECTED] > > Subject: Re: [PHP-WIN] STMP > > > > > > > > Nice and simple.. > > > > [mail function] > > SMTP = mail.smtp.server ;for win32 only > > sendmail_from = [EMAIL PROTECTED] ;for win32 only > > > > > > Manesh wrote: > > > > > > Can somoen tell me EXACTLY how to set up a STMP server? i am IIS5 on > win2k > > > > > > and i need to now exactly what i put it my PHP.ini > > > > > > -- > > > PHP Windows 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] > > > > -- > > > > Craig Morrison > > http://www.2cah.com/ > > EzMTS - A _free_ Win32 EMail Server > > http://www.ezmts.org/ > > Mirrors: http://www.ezmts.org/mirrors.php > > Anonymous FTP at ftp://2cah.com > > > > -- > > PHP Windows 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 Windows 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 Windows 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 Windows 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 Windows 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-WIN] PHP
PHP, I have @home and they use pop3 is there a way i can intergrate that with PHP? -- PHP Windows 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-WIN] SMTP
look at what Craig Morrison wrote below. search your php.ini file for 'mail function' and where he wrote 'mail.smtp.server' write in your SMTP. If you dont know it, ask the person which set up your email. If YOU set up your on email, then check in your settings what your SMTP server is. If you dont have one, then you'll need to install one. i am not going to tell you how to do that, not because im mean, but beacuse its got nothing to do with PHP. anyways once you know what your smtp is, and youve inserted it into php.ini file, then go ahead and go to: www.php.net/mail copy&paste their example into your page and check if it works. t. > how do i set it up with II5 for win2k. I haveno clue what do do, and tell > me how to do it? > > > of course you do. most of us do. but you use that only to recieve > emails, you use SMTP (Simple Mail Trasfer Protocol) to send it. > > > i use pop3 > > > > your meant to know that, use the same one your useing to send your emails, > > which is under: > > (and i am guessing from your email headers your using outlook) > > > > Tools > Accounts > Properties > Servers > Outgoing Mail SMTP > > > > > how do u now what my STMP server is? > > > > > > -Original Message- > > > From: Craig Morrison [mailto:[EMAIL PROTECTED]] > > > > > > Nice and simple.. > > > > > > [mail function] > > > SMTP = mail.smtp.server ;for win32 only > > > sendmail_from = [EMAIL PROTECTED] ;for win32 only > > > > > > Manesh wrote: > > > > Can somoen tell me EXACTLY how to set up a STMP server? i am IIS5 on > > > > win2k and i need to now exactly what i put it my PHP.ini -- PHP Windows 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-WIN] PHP
> PHP, I have @home and they use pop3 is there a way i can intergrate that > with PHP? yes, plenty of ways: http://www.zend.com/apps.php?CID=30 -- PHP Windows 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-WIN] Compiled PHP 4.06 & ISAPI
LOL... 4.0.5 hasn't been released as yet, it's due to be released Monday (in a few hours). Yes, 4.0.6 has more bug fixes in it as well, but it's not been alpha tested yet. I built an Apache module today and OCI8. Looks pretty good so far. If you're really nice to me, and tell me what you require, I may be able to generate something from the latest cvs. "Paul Smith" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I don't supposed anyone has this, or knows where I could obtain a > precompiled version of 4.06 or better? From what I've read in the PHP bug > database this version may fix at least some of the problems with UNC > filenames on windows platforms. > > Regards, > > Paul > > -- PHP Windows 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-windows Digest 30 Apr 2001 02:25:20 -0000 Issue 571
php-windows Digest 30 Apr 2001 02:25:20 - Issue 571 Topics (messages 7124 through 7139): PHP, network shares, and IIS5 7124 by: Paul Smith 7125 by: OoCobra97.aol.com 7126 by: Paul Smith STMP 7127 by: Manesh 7128 by: Craig Morrison 7130 by: Manesh Web Sites Source 7129 by: Sean Re: SMTP 7131 by: Tomasz Abramowicz 7132 by: Manesh 7133 by: Tomasz Abramowicz 7135 by: Manesh 7137 by: Tomasz Abramowicz Compiled PHP 4.06 & ISAPI 7134 by: Paul Smith 7139 by: Joe Brown PHP 7136 by: Manesh 7138 by: Tomasz Abramowicz 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] -- Hi, I've been using PHP4 and IIS5 on Win2k and IIS5 for ages now. I now need to host some of my files on a network share instead of on a local drive. All that should need changing is the location on the files on IIS5, which is \\computername\share\folder. All the non-php sites still work OK after I do this, but the php sites with the PHP4 isapi module just report Warning: Failed opening '\\sharename\web sites\mysite\default.php' for inclusion (include_path='') in Unknown on line 0 The files are still there and if I change back to the local drive the php module works fine. I's pretty sure it has nothing to do with security as the share just points to the same files used on the local disk and all the permissions are the same. Anyone have any idea if PHP isapi can handle files on a network share? Thanks. Have you tried mapping the drive, then accessing them like that? Hi, I've been using PHP4 and IIS5 on Win2k and IIS5 for ages now. I now need to host some of my files on a network share instead of on a local drive. All that should need changing is the location on the files on IIS5, which is \\computername\share\folder. All the non-php sites still work OK after I do this, but the php sites with the PHP4 isapi module just report Warning: Failed opening '\\sharename\web sites\mysite\default.php' for inclusion (include_path='') in Unknown on line 0 The files are still there and if I change back to the local drive the php module works fine. I's pretty sure it has nothing to do with security as the share just points to the same files used on the local disk and all the permissions are the same. Anyone have any idea if PHP isapi can handle files on a network share? Thanks. Not yet, but I want to stay with the \\computername\share format if I can becuase then I can run the same commands on any server without worrying about drive letters and drive. Drive mappings are also made for the user, not the system which will cuase me problems. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 29 April 2001 17:43 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP-WIN] PHP, network shares, and IIS5 Have you tried mapping the drive, then accessing them like that? Hi, I've been using PHP4 and IIS5 on Win2k and IIS5 for ages now. I now need to host some of my files on a network share instead of on a local drive. All that should need changing is the location on the files on IIS5, which is \\computername\share\folder. All the non-php sites still work OK after I do this, but the php sites with the PHP4 isapi module just report Warning: Failed opening '\\sharename\web sites\mysite\default.php' for inclusion (include_path='') in Unknown on line 0 The files are still there and if I change back to the local drive the php module works fine. I's pretty sure it has nothing to do with security as the share just points to the same files used on the local disk and all the permissions are the same. Anyone have any idea if PHP isapi can handle files on a network share? Thanks. Can somoen tell me EXACTLY how to set up a STMP server? i am IIS5 on win2k and i need to now exactly what i put it my PHP.ini Nice and simple.. [mail function] SMTP= mail.smtp.server;for win32 only sendmail_from = [EMAIL PROTECTED] ;for win32 only Manesh wrote: > > Can somoen tell me EXACTLY how to set up a STMP server? i am IIS5 on win2k > > and i need to now exactly what i put it my PHP.ini > > -- > PHP Windows 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] -- Craig Morrison http://www.2cah.com/ EzMTS - A _free_ Win32 EMail Server http://www.ezmts.org/ Mirrors: http://www.ezmts.org/mirrors.php Anonymous FTP at ftp://2cah.com how do u now what my STMP server is? -Original Message- From: Craig Morrison [mailto:[EMAIL PROTEC
[PHP-WIN] bug?
IIS 4.0 / PHP 4.0.4pl1 cgi hmm.. ..i know that there is a bug report page, but it wasnt working, so i thought i would just be lazy and post it here... ...actually, maybe its known, but as i said, couldnt check, bug page was down. anyways I tried doing this: $date = date("y.m.d/t.D.H.i.s.T.B"); echo $date; and i did get the right answer, but the browser (IE5.5 and NN4.08) progress bar just kept going and going and going and going. (duracell syndrome) then i tryed taking each date thingy away one at a time (i started from the back), and 'T' was the guilty one, however i dont get the problem doing: $date = date("T"); echo $date; Can any1 else try it and tell if its just me or is the ("y.m.d/t.D.H.i.s.T.B") just to hard to handle for NT? tnx, t. -- PHP Windows 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-WIN] this is for you IIS 5 people
anybody know of a way to make IIS 5 footers (you know, that neet-o option) into headers? plezz help [EMAIL PROTECTED] thaxz -- PHP Windows 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]