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
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
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 - 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
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.
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
[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
[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
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
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
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
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
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
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]]
>
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
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
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.
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
--
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
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
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
"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
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
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
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
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 - 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
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
28 matches
Mail list logo