[PHP-WIN] Help using Mail() on XP standalone config

2003-01-15 Thread Allan Hardy
Hi, need just a bit of help or point in the right direction I have a working php / apache/ mysql set up that I use to develop/test application before hosting it. I've just started using the mail() function and it fails. Failed to connect to mailserver, verify your "SMTP" setting in php.ini in I n

Re: [PHP-WIN] Looking for something simple

2003-01-15 Thread toby z
hi john im starting to work on a similar thingg well im finalazing the pretty messedup scheema rite now may b we cud workout togather on this one how bout it toby . __ Do You Yahoo!? Everything you'll ever need on one web page from News a

[PHP-WIN] HOWTO Install PHP under Windows .NET Server

2003-01-15 Thread nuno
FAQ http://www.vbulletin.com/forum/showthread.php?threadid=63223 Thats all folks. {:-)} -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

php-windows Digest 15 Jan 2003 23:16:42 -0000 Issue 1537

2003-01-15 Thread php-windows-digest-help
php-windows Digest 15 Jan 2003 23:16:42 - Issue 1537 Topics (messages 17874 through 17895): create ranking 17874 by: Rico Derks 17876 by: Ignatius Reilly Using "./" in paths in Windows/IIS 17875 by: Dan Mullen 17892 by: Christoph Grottolo importing access db

Re: [PHP-WIN] Looking for something simple

2003-01-15 Thread Cam Dunstan
john, Some time ago I sent via the list a lump of code that did this, but it was fairly highly customised to my weird way of doing things. You really should have a go at doing this yourself to suit your own style of programming, however if you get stuck mail me back and I shall send you something.

FW: [PHP-WIN] PHP/CGI Reliability

2003-01-15 Thread Pearson, Gregory
Anything is possible, but I doubt it is a globals problem. I'll consider that, though, as I review the code. The problem: We have a script that posts an XML string to a CGI exe on the web server and receives another XML string as a reply from the server. Most of the time this works fine. But occas

[PHP-WIN] Re: PHP/CGI Reliability

2003-01-15 Thread Christoph Grottolo
[EMAIL PROTECTED] (Gregory Pearson) wrote: >Has anyone - using the PHP CGI module - had reliability issues under IIS >4/5? I'm trying to hunt down an intermittent problem we may have with POSTs >to the server. We too have some intermittent performance problems. We could not yet track them down ei

[PHP-WIN] Re: Using "./" in paths in Windows/IIS

2003-01-15 Thread Christoph Grottolo
[EMAIL PROTECTED] (Dan Mullen) wrote: >I have a problem getting a server set up correctly. I'm using PHP 4.3.0 >(CGI) and IIS 4. After initial set up and configuration of php.ini, the >server is running OK. I put phpMyAdmin on there and got loads of errors, >basically along the lines of "file n

[PHP-WIN] PHP/CGI Reliability

2003-01-15 Thread Pearson, Gregory
Has anyone - using the PHP CGI module - had reliability issues under IIS 4/5? I'm trying to hunt down an intermittent problem we may have with POSTs to the server. ___ This message and any attachments are intended only for the use of the addressee and may contain inf

RE: [PHP-WIN] Reading in text file characters

2003-01-15 Thread Dash McElroy
You could also do this: $fp = fopen($filename, "r"); while(!feof($fp)) { $string = fgets($fp, 25); //25 specifies how many chars to read in //process string here } fclose($fp); The above code has not been tested, but it should give you an idea. One thing I have noticed is that reading an

Re: [PHP-WIN] Re: How to allow ~user/xxx.php onWindows XP

2003-01-15 Thread Frank M. Kromann
Hi, >From the httpd.conf (apache 1.3.x) # Under Win32, we do not currently try to determine the home directory of # a Windows login, so a format such as that below needs to be used. See # the UserDir documentation for details. # UserDir "C:/Program Files/Apache Group/Apache/users/" I'm n

[PHP-WIN] Re: How to allow ~user/xxx.php on Windows XP

2003-01-15 Thread Gang Wang
Hi, Neil: Thanks for the response. When I go http://localhost/~myusername/test.php, I got a page just with just "No input file specified. " in it. Whether it only happens to PHP or also to HTML seems to be depending on the AddType setting in my Apache configuration file. If .html is associated wit

RE: [PHP-WIN] Reading in text file characters

2003-01-15 Thread Nichols, Mark A.
I always look in the manual first. I guess I missed it. Thanks -Original Message- From: Mikey [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 15, 2003 10:42 AM To: [EMAIL PROTECTED] Subject: RE: [PHP-WIN] Reading in text file characters You could try using the substr() function, i

RE: [PHP-WIN] Reading in text file characters

2003-01-15 Thread Mikey
You could try using the substr() function, it will take any number of chars from any place in a string. However, I think you could have found this had you been bothered to look in the manual first... HTH, Mikey > -Original Message- > From: Nichols, Mark A. [mailto:[EMAIL PROTECTED]] >

[PHP-WIN] Reading in text file characters

2003-01-15 Thread Nichols, Mark A.
The following code reads in a text file one line at a time. for ($k=0; $k<=count($readfile)-1; $k++) { $fields = split("\t",$readfile[$k]); echo nl2br("$fields[0]"); } The problem is that it seems to strip the empty spaces out. My text file is fo

Re: [PHP-WIN] Non-thread safe Win32 builds

2003-01-15 Thread Frank M. Kromann
The non-thread safe version for windows can only be used with CGI (or CLI) if you are using ISAPI or mod_apache you have to use the thread safe version. You can use the thread safe version to everything (this is the version included in all distributions) w/o problems. - Frank > Hi guys! > > fir

[PHP-WIN] Links to samples from Problem w/ generating png on Linux

2003-01-15 Thread Robert Trembath
The images were stripped on my post but here's an external link to the images I refer to: Sample1 : http://linux.diversilab.com/sample1.gif Sample2 : http://linux.diversilab.com/sample2.gif Thanks, Robert -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.

[PHP-WIN] Problem w/ generating png on Linux with more than 250 objects ona single graphic

2003-01-15 Thread Robert Trembath
I have an application that records DNA fingerprints(gel images) in digital form in a MySQL Database. Each fingerprint consists of an array of 2000 values between 0-255 that represent a grayscale color. I use the code below to create an image or fingerprint from the data. code --

[PHP-WIN] Non-thread safe Win32 builds

2003-01-15 Thread Victor Medina
Hi guys! first, my name is Victor Medina I am a php and java developer from venezuela , and i am the maintainer of a small project on sourceforge, named Ikirux that include Apache 2 and php4 on windows, it is mostly an installer. http://sourceforge.net/projects/ikirux Enough! Now straight to

[PHP-WIN] PHP/PWS 3.0

2003-01-15 Thread Lewis J Hannah
Hello, I am trying to get PHP to work under PWS 3.0/WinMe. However, every time I try to access a virtual directory on the localhost, I receive an error message stating that the server cannot be found, or DNS error. I check all the configuration settings in the php.ini file and in the Registry, and

[PHP-WIN] Developer List

2003-01-15 Thread Henning Heil
Hi there! This seems to be a list concering php system integration, I was looking for a developer list (german if possible?). Can anyone recommend one? Thanks for your help, Henning -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Re: How to allow ~user/xxx.php on Windows XP

2003-01-15 Thread Neil Smith
"It doesn't work" : Err, what error message do you get ? A 404? 500 error ? or something else do you see HTML or PHP source or binary mush or nothing ? Does this only happen with PHP files or can you view HTML files just fine ? http://httpd.apache.org/docs-2.0/howto/public_html.html Cheers

[PHP-WIN] importing access db to mysql

2003-01-15 Thread toby z
hi guys is there any tool to import an access db to mysql thnx a mill toby __ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com -- PHP Windows Mailing List

Re: [PHP-WIN] create ranking

2003-01-15 Thread Ignatius Reilly
You can create an auxiliary table, that holds the number of teams for each points amount: CREATE TEMPORARY TABLE T SELECT Points, MIN( Rank ) AS SmallerRank FROM myTable GROUP BY Points You get: Points SmallerRank 101 92 74 Now you join this table to the original

[PHP-WIN] Using "./" in paths in Windows/IIS

2003-01-15 Thread Dan Mullen
Hi, I have a problem getting a server set up correctly. I'm using PHP 4.3.0 (CGI) and IIS 4. After initial set up and configuration of php.ini, the server is running OK. I put phpMyAdmin on there and got loads of errors, basically along the lines of "file not found" on include statements. Looki

[PHP-WIN] create ranking

2003-01-15 Thread Rico Derks
Hi, I'am trying to create a ranking from a mysql database. My problem is that I don't know how to determine exaequo ranking!! Exaequo means that two teams with the same amount of points get the same rank. Wrong: Rank Team Points 1 Team1 10 2 Team2 9 3 Team3 9 4 Team4 7 Correct: Rank Team Point

php-windows Digest 15 Jan 2003 09:03:17 -0000 Issue 1536

2003-01-15 Thread php-windows-digest-help
php-windows Digest 15 Jan 2003 09:03:17 - Issue 1536 Topics (messages 17866 through 17873): Re: Good SMPT mail script? 17866 by: Christoph Grottolo 17870 by: Manuel Lemos Re: PEAR bootstrapper 17867 by: Mikey convert asp to php 17868 by: Ha Duy Thien

[PHP-WIN] Re: jpeg images

2003-01-15 Thread Pat Johnston
I've asked this question a tad too soon. I see the latest version of PHP has built in gd, so the forget what I've asked below. Regards, Pat J. "Pat Johnston" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi all > I'm using PHP 4.1.2. I want to resize jpegs o