RE: [PHP-WIN] PHP Editor

2001-04-10 Thread Daniel Furse
I use SynEdit http://synedit.hypermart.net/ It has all the features I need for both PHP and HTML. It's free. I think it's powerful. It has syntax highlighting for 37 languages, including PHP3, HTML, Perl. Plus the highlighting is customisable. DanF -Original Message- From: Mad Nas [ma

Re: [PHP-WIN] Mail(), PHP and Apach

2001-04-10 Thread Yasuo Ohgaki
Do you have anything for sendmail_path? When I had both SMTP and sendmail_path are set, mail() always failed on Linux/Apache/PHP. It may be the same under windows. Make sure SMTP host is up also. (telnet your.mail.host 80) Regards, -- Yasuo Ohgaki ""Guillaume ARNAUD"" <[EMAIL PROTECTED]> wrote

[PHP-WIN] PHP Editor

2001-04-10 Thread Mad Nas
Hi All, I Search for a 1 ) Freeware 2 ) Powerful 3 ) Highlight Syntax 4 ) ... Editor for work on php files, Can you help me ? Thanks For Answer Mad Nas

[PHP-WIN] Load Test (CGI vs. ISAPI)

2001-04-10 Thread Dickerson, Monty
When you perform a load test, such as with Allaire ServletKiller or Apache JMeter, you will see that a CGI solution does not scale well under load. If your service load is normally not high, then this is only a concern if someone were to mount a denial of service attack against you merely by runn

[PHP-WIN] Re: Permissions on Nt 4.0

2001-04-10 Thread weisbeek
On 10 Apr 2001, at 8:56, George Rae wrote: > > > > I am trying to setup the permissions on an NT 4.0 box > > with an NTFS partition. When running a PHP script to create a new file it > > will not allow access. Any help would be appreciated. > > > > > > Regards > > > > George Rae George Rae,

[PHP-WIN] Re: MSCOMCTL.OCX

2001-04-10 Thread weisbeek
On 10 Apr 2001, at 14:29, Apokalypso wrote: > Where can I find the MSCOMCTL.OCX file ? > Do you have a link on MS's website ? Apokalypso, You should ask whether you need it or not. If I am correct it is used for registering PHP within Internet Information Server. I got the same error-message o

php-windows Digest 10 Apr 2001 20:33:31 -0000 Issue 537

2001-04-10 Thread php-windows-digest-help
php-windows Digest 10 Apr 2001 20:33:31 - Issue 537 Topics (messages 6596 through 6615): Re: MSSQL Connect problems 6596 by: Nasko 6597 by: Svensson, B.A.T. readfile() syntax 6598 by: Antonio Minucci 6603 by: Yasuo Ohgaki Error wirth Max() PHP4NT / ORA81 /

[PHP-WIN] HTML-Forms with the method POST

2001-04-10 Thread Monello
I have a strange problem with HTML-Forms with the method POST. When I work local on my computer with the localhost, all data tipped into the form can be read from the HTTP_POST_VARS-system array. But when I trie to use the form from a other computer connected to the internet, all the formdata

Re: [PHP-WIN] FATAL: emalloc(): Unable to allocate 2147483599 bytes

2001-04-10 Thread joerg andreas
Hi Denis, after some nights of installations I think I have found the cause of this error: I also got this error on WIN2000Pro / IIS5 / PHP 4.0.5 inside a project with MS Access 2000 - mdb ( linked via ODBC ) Everywhere I use odbc_connect... the emalloc() came. In the office we are running NT4

Re: [PHP-WIN] PHPLIB, IIS5.0 , PHP404 --> MSSQL Error

2001-04-10 Thread Helmut Himmelstoss
> Is it possible that you have ended up in SQL-state HY000 or HY004? > If you are in HY004, then your data types are incorrect!!! I don't understand: HY000 or HY004 ??? > > Is really csm_hosts.subnetz a char/varchar? > If so, what is the maximum length of csm_hosts.subnetz? > > E.g. is it true

RE: [PHP-WIN] PHPLIB, IIS5.0 , PHP404 --> MSSQL Error

2001-04-10 Thread Svensson, B.A.T.
A "General error" can occur when you are trying to connect to the database. But this seams not be your problem in this case? I am going for a long shot here: Is it possible that you have ended up in SQL-state HY000 or HY004? If you are in HY004, then your data types are incorrect!!! Is really c

[PHP-WIN] MSCOMCTL.OCX

2001-04-10 Thread Apokalypso
Where can I find the MSCOMCTL.OCX file ? Do you have a link on MS's website ? 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-WIN] PHPLIB, IIS5.0 , PHP404 --> MSSQL Error

2001-04-10 Thread Helmut Himmelstoss
Hello, after getting the mssql functions to work I ran into a strange problem: I can do inserts, deletes, and selects on records in my database. When I call the script: ><-- --- -

[PHP-WIN] Exec()

2001-04-10 Thread Helmut Himmelstoss
HI, system(), exec() etc. don't work properly under Windows. they just don't hand back the output. Has anyone got these functions working (e.g. Ping.exe)?? THX Helmut -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-m

RE: [PHP-WIN] PHP/MySQL Help

2001-04-10 Thread Svensson, B.A.T.
LOL! True enough! True enough! >-Original Message- >From: Tom Mathews [mailto:[EMAIL PROTECTED]] >Sent: Tuesday, April 10, 2001 4:41 PM >Cc: [EMAIL PROTECTED] >Subject: Re: [PHP-WIN] PHP/MySQL Help > > >True enough, but life's just a bitch sometimes! I don't create >the problems, just wo

Re: [PHP-WIN] PHP/MySQL Help

2001-04-10 Thread Tom Mathews
True enough, but life's just a bitch sometimes! I don't create the problems, just work around them. "Svensson, B.A.T." wrote: > >Using quotes (and remebering to escape them) may or may not cure the > problem - it > >seems to be a bit intermittent. It's more reliable just to hard code the > tabl

RE: [PHP-WIN] PHP/MySQL Help

2001-04-10 Thread Svensson, B.A.T.
>Using quotes (and remebering to escape them) may or may not cure the problem - it >seems to be a bit intermittent. It's more reliable just to hard code the tablename >instead. Yes, and then someone suddenly makes changes in the database schema - and all your scripts stops to work... :) -- PHP

Re: [PHP-WIN] PHP/MySQL Help

2001-04-10 Thread Tom Mathews
Try using the table name instead of a variable containing the table name. If you must use $tablename within the SQL statement then you should include it in quotes. The error that you are getting is basically saying that MySQL can't find the table that you are looking for, which is true as you have

[PHP-WIN] PHP/MySQL Help

2001-04-10 Thread Bob Sears
I am no stranger to programming, having done that professionally for 30+ years; however, PHP is a new animal to me. As usual, the text I have leave a little to be desired. The reason for this email is to ask for a little assistance in getting over a coding "speed bump". I am rewriting a shoppi

Re: [PHP-WIN] readfile() syntax

2001-04-10 Thread Yasuo Ohgaki
Check your include_path in php.ini. If you want to open files like that, you should have "." in include_path. Regards, -- Yasuo Ohgaki "Antonio Minucci" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > hi. > i work on win 2000 with phptriad(apache+php4.0). > i

Re: [PHP-WIN] Permissions on Nt 4.0

2001-04-10 Thread Phil Driscoll
Just make sure that the directory you want to write into has write permissions for IUSR_ Cheers -- Phil Driscoll Dial Solutions +44 (0)113 294 5112 http://www.dialsolutions.com http://www.dtonline.org -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED]

[PHP-WIN] Mail(), PHP and Apach

2001-04-10 Thread Guillaume ARNAUD
Hi, I am a new user to PHP and Would like to use PHP to send mail. I use the following script: and I get Warning: Unknown error in c:/easyphp/www/index3.php on line 7 Sorry, try again. My php.ini file include: [mail function] SMTP=smtp.tele2.pl ;for win32 only [EMAIL PROTECTED] ;for win32 on

[PHP-WIN] Permissions on Nt 4.0

2001-04-10 Thread George Rae
> I am trying to setup the permissions on an NT 4.0 box > with an NTFS partition. When running a PHP script to create a new file it > will not allow access. Any help would be appreciated. > > > Regards > > George Rae > -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-ma

[PHP-WIN] Error wirth Max() PHP4NT / ORA81 / ODBC...

2001-04-10 Thread FX Liagre
Hi all, Got a BIG problem when trying to use a php site with Oracle (the same thing works perfectly with DB2-udb). My config is : NT4sp4 Apache 1.3.14 php4.0.4pl1 (Apache module) Oracle 8.1.6 I try to determine the maximum value for a column, in this kind of script : Result ID='.$Res_ID; $NF

[PHP-WIN] readfile() syntax

2001-04-10 Thread Antonio Minucci
hi. i work on win 2000 with phptriad(apache+php4.0). i need to know the syntax of readme() function. now i've the file "projects.html" on c:\apache\htdocs\. in index.php(on the same directory) i wrote: but the browser say: Warning: readfile("projects.html") - No such file or directory in c:\apach

RE: [PHP-WIN] MSSQL Connect problems

2001-04-10 Thread Svensson, B.A.T.
First: what method are you using to connect? ODBC? IF you are using ODBC, then you might check weather you are using named pipes or not to connect to the server. If named pipes not work, change to TCP/IP - some times named pipes are not allowed because of security reasons. Second, it might be re

Re: [PHP-WIN] MSSQL Connect problems

2001-04-10 Thread Nasko
Is it the same DB server you're trying to connect to from locally run scripts that you connect when the scripts are run from your hosting server? It does matter, because my hosting company for example has forbidden any access to their DB servers for IP addresses different from the addresses their

php-windows Digest 10 Apr 2001 08:11:45 -0000 Issue 536

2001-04-10 Thread php-windows-digest-help
php-windows Digest 10 Apr 2001 08:11:45 - Issue 536 Topics (messages 6582 through 6595): Help PHP inetinfo 6582 by: aaron 6586 by: Flint Doungchak 6587 by: Asendorf, John Session problems 6583 by: Mark Collins 6588 by: Asendorf, John 6589 by:

[PHP-WIN] windows username

2001-04-10 Thread 0000051
Hi all Is there a way that we can change windows logon username and password (or just a password)