php-general Digest 24 Dec 2003 13:06:18 -0000 Issue 2491

Topics (messages 173275 through 173293):

Re: Headers Problem
        173275 by: John W. Holmes

Re: Can't upload file greater than 11kb
        173276 by: Chris
        173277 by: Chris

Re: UNUSUAL PROBLEM WHEN WRITING TO THE SCREEN
        173278 by: Chris W. Parker
        173284 by: John W. Holmes

Re: apache chroot + mail()
        173279 by: Tom Rogers

Re: HTTP headers, IE and downloading
        173280 by: Andreas Magnusson

Unlinking files.
        173281 by: Scott Holden
        173282 by: Mike Migurski
        173292 by: David Otton

[Newbie Guide] For the benefit of new members
        173283 by: Ma Siva Kumar

Re: progress in PHP
        173285 by: Manuel Lemos
        173286 by: Jeremy Johnstone
        173287 by: Manuel Lemos

Error with Absolute URLs
        173288 by: Brad

How do I make these two MySQL queries into one line?
        173289 by: Dave G
        173290 by: Chris

Re: How do I make these two MySQL queries into one line? [SOLVED]
        173291 by: Dave G

Apache error.log [warn] (OS 64) & (OS 121)
        173293 by: Trevor Dowling

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]


----------------------------------------------------------------------
--- Begin Message --- Beauford wrote:

I'm getting the following error. My question is, where would I use the
ob_start() and ob_end_flush() function so I can get rid of this. I have read
the PHP manual, but not quite getting it.....Or if there is a better way?

Don't work around the problem with output buffering; try fixing it.


Warning: session_start() [function.session-start]: Cannot send session cache
limiter - headers already sent (output started at
/usr/local/apache/htdocs/supreme/updates/update-corrections-write.php:2) in
/usr/local/apache/php/includes/restricted.inc on line 1

You must have session_start() before any output. You've placed it on line 1 of restricted.inc, but output was started on line 2 of update-corrections-write.php. If you're going to include restricted.inc and start a session, include it before there is output.


--
---John Holmes...

Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/

php|architect: The Magazine for PHP Professionals – www.phparch.com
--- End Message ---
--- Begin Message ---
post_max_size: 8M
upload_max_filesize: 10M

what quota and disk space affect the web server process and temp dir

This site is hosted by a third party:
Disk space is 400MB only a fraction is used.
temp dir -- unknown


Chris --

...and then Chris said...
%
% script on many php servers. However I am on one now which is not allowing
me
% to upload a file greater than 12kb.

What does phpinfo() say for

  post_max_size
  upload_max_filesize

and what quota and disk space affect the web server process and temp dir?


HTH & HAND

"David T-G" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]

--- End Message ---
--- Begin Message ---
It has been my experience that max_file_size does terminate the upload
process if you include it in the form.
But you are right, if it gets to the upload, your stuck.

LimitRequestBody is beyond my control as the site is hosted by a third
party.

Thanks
Chris


"Raditha Dissanayake" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi,
>
> It's often said in many newsgroups and articles that the max_file_size
> is next to useless. It's also said that once IE starts uploading it will
> not stop even if you keep you foot on the stop button!
>
> If i remembers the earlier messages you have said the php.ini settings
> are correct. If so it could well be that you might be having
> misconfigured proxy server or firewall in the way.
>
> Apache also has a setting (LimitRequestBody) that could effect your
upload.
>
> all the best
>
> Chris wrote:
>
> >I don't believe that the MAX_FILE_SIZE needs to be there. It will only
> >terminate the upload process at the client, rather than wait for the
upload
> >to complete.
> >
> >Anyway with or without MAX_FILE_SIZE the upload process is being
terminated
> >after the file is uploaded.
> >
> >When the form is submitted, the selected file is uploaded to the server's
> >temp directory then copied to the maps dir.  For some reason, when the
file
> >size exceeds 11kb (very small) the process
> >gets aborted (with or without MAX_FILE_SIZE). I've put in diagnostic
> >messages and the POST script throws an error message if it can't find the
> >file
> >in the temp directory. I've uploaded several file sizes up to the max of
2MB
> >and it appears the file is being uploaded. I base this assumption on the
> >fact the upload time is proportional to the file size. When the file size
is
> >greater than 11kb it appears that the file is deleted from the temp dir.
> >
> >Still no idea what is going on.
> >Chris
> >
> >"Larry Brown" <[EMAIL PROTECTED]> wrote in message
> >news:[EMAIL PROTECTED]
> >
> >
> >>The <input type="hidden" ... is more than a convenience for the client.
> >>
> >>
> >It
> >
> >
> >>must be before the ...type="file"... tag and after <form.. (at least
with
> >>Mozilla Firebird as the client) If you have it in there and remember it
is
> >>in bytes not kb and set it to a size large enough the script accepting
the
> >>file will show $_FILE['name'] and it will show $_FILE['tmp_name'] having
> >>
> >>
> >the
> >
> >
> >>temporary file.  Then you take that hidden tag out and do the same the
> >>$_FILE['tmp_name'] variable will be empty since it did not recieve the
> >>
> >>
> >file.
> >
> >
> >>So I know at least in my case that the hidden field has to be there.
> >>
> >>Larry
> >>
> >>-----Original Message-----
> >>From: Chris [mailto:[EMAIL PROTECTED]
> >>Sent: Monday, December 22, 2003 8:55 PM
> >>To: [EMAIL PROTECTED]
> >>Subject: [PHP] Can't upload file greater than 11kb
> >>
> >>
> >>I've got a situation where I want to upload a file to a server then
enter
> >>the data in that file into mysql. I have used this well documented
upload
> >>form
> >>
> >><form enctype="multipart/form-data" action="_URL_" method="POST">
> >>Send this file: <input name="userfile" type="file">
> >>
> >><input type="submit" value="Send File">
> >>
> >></form>
> >>
> >>script on many php servers. However I am on one now which is not
allowing
> >>
> >>
> >me
> >
> >
> >>to upload a file greater than 12kb.
> >>
> >>I know the upload_max_filesize is 2M but something else is stopping the
> >>upload and I don't have a clue what it is. I know you should include
> >>
> >>
> ><input
> >
> >
> >>type="hidden" name="MAX_FILE_SIZE" value="30000"> in the above form but
> >>
> >>
> >that
> >
> >
> >>is only a convenience for the user.
> >>
> >>This particular server is running php as a cgi module.
> >>
> >>Thanks
> >>
> >>Chris
> >>
> >>--
> >>PHP General Mailing List (http://www.php.net/)
> >>To unsubscribe, visit: http://www.php.net/unsub.php
> >>
> >>
> >
> >
> >
>
>
> -- 
> Raditha Dissanayake.
> ------------------------------------------------------------------------
> http://www.radinks.com/sftp/         | http://www.raditha.com/megaupload
> Lean and mean Secure FTP applet with | Mega Upload - PHP file uploader
> Graphical User Inteface. Just 150 KB | with progress bar.

--- End Message ---
--- Begin Message ---
Justin French <mailto:[EMAIL PROTECTED]>
    on Monday, December 22, 2003 6:12 PM said:

> Sounds more like the mysql field is a varchar255, rather than maybe a
> mediumtext, and only the first 255 chars are getting inserted into the
> DB?
> 
> But I could be horribly wrong :)

In an effort to keep this thread going and hopefully find an answer op
left out some important information this time around. (He posted a
related question yesterday.)

He is not using MySQL. He is using MSSQL. According to what he said in
another thread the database has stored all the data without being
cutoff. I imagine he's able to view it in another way aside from
retrieving it via php to verify it's been inserted completely.


Does this help anyone narrow it down? (because I certainly have no
idea.)



Chris.

--- End Message ---
--- Begin Message --- Chris W. Parker wrote:

Justin French <mailto:[EMAIL PROTECTED]>
    on Monday, December 22, 2003 6:12 PM said:


Sounds more like the mysql field is a varchar255, rather than maybe a
mediumtext, and only the first 255 chars are getting inserted into the
DB?

But I could be horribly wrong :)


In an effort to keep this thread going and hopefully find an answer op
left out some important information this time around. (He posted a
related question yesterday.)

He is not using MySQL. He is using MSSQL. According to what he said in
another thread the database has stored all the data without being
cutoff. I imagine he's able to view it in another way aside from
retrieving it via php to verify it's been inserted completely.


Does this help anyone narrow it down? (because I certainly have no idea.)

This problem comes up every now and then, but I can't find anything good in the archives. Basically, if you're using a varchar (or nvarchar?) column, you can only have a max size of 255 characters. Anything larger needs to use a text column. I think this is dependent upon the library you're using to access MSSQL (like an ODBC limitation?), so you should look at other libraries to see if this was fixed.


--
---John Holmes...

Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/

php|architect: The Magazine for PHP Professionals – www.phparch.com
--- End Message ---
--- Begin Message ---
Hi,

Wednesday, December 24, 2003, 3:02:33 AM, you wrote:
RV> Hi,

RV> I am having a problem using the mail() command inside a chrooted
RV> apache/php installation on linux with qmail.
RV> Nothing apears in the logs, nothing in apache error logs , neither in
RV> php error logs..
RV> And.. no mail gets send.. Nothing to see in my mailer daemon logs neither..

RV> Exempt from php.ini:
RV> =======================
RV> [mail function]
RV> SMTP = 127.0.0.1
RV> =======================

RV> Can anyone help pls ?

RV> Tnx

RV> -- 

RV> Ruben Vanhoutte

RV> Systems Admin
RV> X-Treme Webhosting
RV> Zakske 10
RV> 8000 Brugge
RV> Belgium
RV> Fortis 001-3688345-93
RV> Btw: BE 518.853.394
RV> HR: 95181


RV> http://www.x-tremewebhosting.net

RV> 
****************************************************************************************
RV> The information contained in this message or any of its attachments may 
RV> be confidential and is intended for the exclusive use of the 
RV> addressee(s). Any disclosure, reproduction, distribution or other 
RV> dissemination or use of this communication is strictly prohibited 
RV> without the express permission of the sender. Visibility email is for 
RV> business use only.
RV> 
*****************************************************************************************

RV> -- Quote Of The Day --
RV> Self Test for Paranoia: You know you have it when you can't think of 
RV> anything that's your own fault.
RV> -- Quote Of The Day --


from inside a chroot jail you will never get mail to work, try using one of the
many classes that are around to do SMTP mailing.

-- 
regards,
Tom

--- End Message ---
--- Begin Message ---
"John W. Holmes" <[EMAIL PROTECTED]> skrev i meddelandet
news:[EMAIL PROTECTED]
> Andreas Magnusson wrote:
>
> > And through PHP (my script) it is:
> >
> > Accept-Ranges: bytes
> > Cache-Control: private
>
> I've had the cache-control header cause problems with IE in the past.
> It's sent by starting a session, not something you manually send. You
> can change it using the session functions, though. Try setting it to
> "none".

Thanks, I tried that and it actually worked!...once...so since the number
of bytes that IE downloads from my file seems to vary each time, I guess
it was just a flux of luck that it downloaded the whole file this once
sigh...

It drives me nuts to think about it, it's just so weird...

/Andreas

--- End Message ---
--- Begin Message ---
How can I unlink files in a directory that are, for example older than 1
hour?

--- End Message ---
--- Begin Message ---
>How can I unlink files in a directory that are, for example older than 1
>hour?

`find /path/to/dir -cmin +60 -type f -print0 | xargs -0 rm -f`;

---------------------------------------------------------------------
michal migurski- contact info and pgp key:
sf/ca            http://mike.teczno.com/contact.html

--- End Message ---
--- Begin Message ---
On Tue, 23 Dec 2003 19:08:28 -0800 (PST), you wrote:

>>How can I unlink files in a directory that are, for example older than 1
>>hour?
>
>`find /path/to/dir -cmin +60 -type f -print0 | xargs -0 rm -f`;

Alternatively, for cross-platformness user opendir() and readdir() to
iterate over the directory, stat() or filemtime() to grab the last-modified
time of the file, and unlink() to remove files where ($last_modified <
time() - 3600).

--- End Message ---
--- Begin Message ---
=======================================
This message is for the benefit of new subscribers 
and those new to PHP.  Please feel free to add 
more points and send to the list.
=======================================
1. If you have any queries/problems about PHP try 
http://www.php.net/manual/en first. You can 
download a copy and use it offline also. 

Please also try http://www.php.net/manual/faq.php 
to get answers to frequently answered questions 
about PHP (added by Christophe Chisogne).

2. Try http://www.google.com next. Searching for 
"php YOUR QUERY" may fetch you relevant results 
within the first 10 results, if you are lucky.

3. There is a searchable archive of the mailing 
list discussion at 
http://phparch.com/mailinglists. Many of the 
common topics are discussed repeatedly, and you 
may get answer to your query from the earlier 
discussions. 

For example: One of the repeatedly discussed 
question in the list is "Best PHP editor". 
Everyone has his/her favourite editor. 
You can get all the opinions by going through the 
list archives. If you want a chosen list try this 
link : http://phpeditors.linuxbackup.co.uk/ 
(contributed by Christophe Chisogne).

4. Not sure if PHP is working or you want to find 
out what extensions are available?

Just put the following code into a file with a 
.php extension and access it through your 
webserver:

<?php
        phpinfo();
?> 

If PHP is installed you will see a page with a lot 
of information on it. If PHP is not installed (or 
not working correctly) your browser will try
to download the file.

(contributed by Teren and reworded by Chris W 
Parker)

5. If you are stuck with a script and do not 
understand what is wrong, instead 
of posting the whole script, try doing some 
research yourself. One useful trick is to print 
the variable/sql query using print or echo 
command and check whether you get what you 
expected. 

After diagnosing the problem, send the details of 
your efforts (following steps 1, 2 & 3) and ask 
for help.

6. PHP is a server side scripting language. 
Whatever processing PHP does takes 
place BEFORE the output reaches the client. 
Therefore, it is not possible to access the 
users'  computer related information (OS, screen 
size etc) using PHP. You need to go for 
JavaScript and ask the question in a JavaScript 
list.

On the other hand you can access the information 
that is SENT by the user's browser when a client 
requests a page from your server. You can
find details about browser, OS etc as reported by 
this request. - contributed by Wouter van Vliet 
and reworded by Chris W Parker.

7. Provide a clear descriptive subject line. Avoid 
general subjects like "Help!!", "A Question" etc.  
Especially avoid blank subjects. 

8. When you want to start a new topic, open a new 
mail composer and enter the mailing list address 
[EMAIL PROTECTED] instead of replying to 
an existing thread and replacing the subject and 
body with your message.

9. It's always a good idea to post back to the 
list once you've solved your problem. People 
usually add [SOLVED] to the subject line of their
email when posting solutions. By posting your 
solution you're helping the next person with the 
same question. [contribued by Chris W Parker]

10. Ask smart questions  
http://catb.org/~esr/faqs/smart-questions.html
[contributed by Jay Blanchard)

Hope you have a good time programming with PHP.

Best regards,
-- 
Integrated Management Tools for leather industry
----------------------------------
http://www.leatherlink.net

Ma Siva Kumar,
BSG LeatherLink (P) Ltd,
Chennai - 600106

--- End Message ---
--- Begin Message --- Hello,

On 12/23/2003 03:56 PM, Larry Brown wrote:
How does perl show progress of the upload if it is a server side scripting
language and php can't do it because it is server side?

The problem is not showing progress but rather tracking progress.


What you seem to not be understanding is that PHP handles uploads internally. So, by the time a PHP script that gets the submitted upload form starts running, the upload was already ended and the uploaded files were copied to some temporary files.

PHP itself does not give you a chance to track the progress of the upload because that is something handled at the HTTP request level.

The Perl solution is based on a script that handles and tracks the upload and another that shows the progress. That is why you need to show progress in a popup or a separate frame.


-----Original Message-----
From: Manuel Lemos [mailto:[EMAIL PROTECTED]
Sent: Tuesday, December 23, 2003 12:46 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Re: progress in PHP


Hello,


On 12/23/2003 03:31 PM, James Kaufman wrote:

Join the 11,000 people who use megaupload progress bar (with a little
help from perl)
http://www.sourceforge.net/projects/megaupload/

I tried. It wasn't worth all the perl mods I would to have had to install to make it work.


Check out http://pear.laurent-laville.org/HTML_Progress/. It is a pure
php approach to displaying a progress bar. I haven't used it, but the

demos


look good.


This a different thing. This is meant to track progress of server side
tasks. File uploading is a client side task.

Unfortunately, AFAIK there is no way to handle streams of HTTP requests.
Therefore, there is no way to handle upload progress with a PHP only
solution.

The Raditha megaupload solution is based on a combination of Perl with
PHP. It is probably the solution that uses more PHP but the hard work is
done using Perl.


--

Regards,
Manuel Lemos

Free ready to use OOP components written in PHP
http://www.phpclasses.org/

--- End Message ---
--- Begin Message ---
FWIW, here is a link to a PHP extension which enables the ability to
track the progress of a PHP upload. I did not write the extension, so if
it breaks something I am not responsible. It was previously discussed on
the php-dev mailing list ([EMAIL PROTECTED]) a month or two ago,
but it was never decided if it would be officially added into PHP.

http://pdoru.from.ro/

-Jeremy

On Tue, 2003-12-23 at 23:15, Manuel Lemos wrote:

> Hello,
> 
> On 12/23/2003 03:56 PM, Larry Brown wrote:
> > How does perl show progress of the upload if it is a server side scripting
> > language and php can't do it because it is server side?
> 
> The problem is not showing progress but rather tracking progress.
> 
> What you seem to not be understanding is that PHP handles uploads 
> internally. So, by the time a PHP script that gets the submitted upload 
> form starts running, the upload was already ended and the uploaded files 
> were copied to some temporary files.
> 
> PHP itself does not give you a chance to track the progress of the 
> upload because that is something handled at the HTTP request level.
> 
> The Perl solution is based on a script that handles and tracks the 
> upload and another that shows the progress. That is why you need to show 
> progress in a popup or a separate frame.
> 
> 
> > -----Original Message-----
> > From: Manuel Lemos [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, December 23, 2003 12:46 PM
> > To: [EMAIL PROTECTED]
> > Subject: Re: [PHP] Re: progress in PHP
> > 
> > 
> > Hello,
> > 
> > On 12/23/2003 03:31 PM, James Kaufman wrote:
> > 
> >>>>Join the 11,000 people who use megaupload progress bar (with a little
> >>>>help from perl)
> >>>>http://www.sourceforge.net/projects/megaupload/
> >>>
> >>>I tried. It wasn't worth all the perl mods I would to have had to
> >>>install to make it work.
> >>
> >>
> >>Check out http://pear.laurent-laville.org/HTML_Progress/. It is a pure
> >>php approach to displaying a progress bar. I haven't used it, but the
> > 
> > demos
> > 
> >>look good.
> > 
> > 
> > This a different thing. This is meant to track progress of server side
> > tasks. File uploading is a client side task.
> > 
> > Unfortunately, AFAIK there is no way to handle streams of HTTP requests.
> > Therefore, there is no way to handle upload progress with a PHP only
> > solution.
> > 
> > The Raditha megaupload solution is based on a combination of Perl with
> > PHP. It is probably the solution that uses more PHP but the hard work is
> > done using Perl.
> 
> 
> -- 
> 
> Regards,
> Manuel Lemos
> 
> Free ready to use OOP components written in PHP
> http://www.phpclasses.org/

--- End Message ---
--- Begin Message --- Hello,

On 12/24/2003 03:47 AM, Jeremy Johnstone wrote:
FWIW, here is a link to a PHP extension which enables the ability to
track the progress of a PHP upload. I did not write the extension, so if
it breaks something I am not responsible. It was previously discussed on
the php-dev mailing list ([EMAIL PROTECTED]) a month or two ago,
but it was never decided if it would be officially added into PHP.

http://pdoru.from.ro/

This is not really an extension but rather a patch to change PHP behaviour in order to store upload progress in files that can be examined by another process.


Apparently, nobody with enough karma seemed interested to commit the patch. It probably needs further checking to ensure that it is safe to execute, especially in shared environments where different hosting clients may be using the same Web server.


--


Regards,
Manuel Lemos

Free ready to use OOP components written in PHP
http://www.phpclasses.org/

--- End Message ---
--- Begin Message --- Hi,

I keep getting errors on my websites, that contain absolute URLs, e.g. http://www.url.com/blah.html. With most, being in the folder of my website, it's fine, i can just add $_SERVER['DOCUMENT_ROOT'], but there's a script I use to display the network statistics of an IRC network, which is located on a different server, so i can't use the $_SERVER['DOCUMENT_ROOT'], I'm wondering if anyone has an answer to this. I'm almost to the stage of just asking the script owner if I can have it located locally, so i can use the $_SERVER['DOCUMENT_ROOT'] variable.

It was working fine until the server admin updated to PHP 4.3.4, but he is not the best with PHP/HTML programming, so he can't help much.

Hope someone can help.

Thanks!
--- End Message ---
--- Begin Message ---
PHP Gurus,
        I'll consider myself lucky to get a response so close to
Christmas, but here goes.

        I have two tables. One contains member information, and one
lists which groups the members belong to. I want to select the email
address of active members from the member information table, and I want
to select only the members which belong to a particular group. Right now
I can only think to accomplish this in two lines:
        $query1 = "SELECT member_id FROM groups WHERE group_id =" .
$chosenGroup
        Then, take the results and do another query:
        $query2 = "SELECT email FROM members WHERE active = yes AND
member_id =" . $query1Results

        But surely there's a way to collapse this into one MySQL line.

-- 
Yoroshiku!
Dave G
[EMAIL PROTECTED]

--- End Message ---
--- Begin Message ---
You should *really* consider yourself lucky, because this is a PHP list, not
MySQL.

"SELECT members.email FROM groups LEFT JOIN members USING(member_id) WHERE
'$chosenGroup'=group_id AND 'yes'=active"

You should really find a tutorial on Joins, jsut search on `SQL tutorial
joins`

Chris

-----Original Message-----
From: Dave G [mailto:[EMAIL PROTECTED]
Sent: Tuesday, December 23, 2003 10:45 PM
To: 'PHP General'
Subject: [PHP] How do I make these two MySQL queries into one line?


PHP Gurus,
        I'll consider myself lucky to get a response so close to
Christmas, but here goes.

        I have two tables. One contains member information, and one
lists which groups the members belong to. I want to select the email
address of active members from the member information table, and I want
to select only the members which belong to a particular group. Right now
I can only think to accomplish this in two lines:
        $query1 = "SELECT member_id FROM groups WHERE group_id =" .
$chosenGroup
        Then, take the results and do another query:
        $query2 = "SELECT email FROM members WHERE active = yes AND
member_id =" . $query1Results

        But surely there's a way to collapse this into one MySQL line.

--
Yoroshiku!
Dave G
[EMAIL PROTECTED]

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--- End Message ---
--- Begin Message ---
Chris,
        Thank you! I will look on the net for "left joins", which is a
bit new to me, and I'll join a MySQL list, since I can see I'm going to
have more MySQL questions in the future.
        Your reply is much appreciated, especially since it came so
fast!

-- 
Yoroshiku!
Dave G
[EMAIL PROTECTED]

--- End Message ---
--- Begin Message ---
Hi,

I am having a real problem with error messages posted in the error.log file
in the Apache directory. I have been doing lots of searches to find a
solution and it seems obvious that many people are see this issue but I can
find no resolution or explanation for the entries (see below).

PHP Bug #25570 seemed to be a solution but the version of php I am using is
4.3.2 which is claimed to not exhibit the bug described in 25570.

The system is running on a Win2K box, and we are using php, sql and Apache.

Anyone out there have an idea of how to fix this issue?

Thanks

Trevor



Some system info:

System Windows NT UKRBCSR01 5.0 build 2195
Build Date May 28 2003 15:06:05
Server API Apache 2.0 Handler
Apache/2.0.47 (Win32) PHP/4.3.2

This is the more worring of the issues:

21:18:49 2003 [notice] Parent: child process exited with status
4294967295 -- Restarting.


But I am assuming that some or all of these are related.

21:19:44 2003 [warn] (OS 121)The semaphore timeout period has expired. :
winnt_accept: Asynchronous AcceptEx failed.
00:50:58 2003 [warn] (OS 64)The specified network name is no longer
available. : winnt_accept: Asynchronous AcceptEx failed.


Error Log snipit

21:18:16 2003 [notice] Parent: Created child process 3180
21:18:16 2003 [notice] Child 3180: Child process is running
21:18:16 2003 [notice] Child 3180: Acquired the start mutex.
21:18:16 2003 [notice] Child 3180: Starting 250 worker threads.
21:18:49 2003 [notice] Parent: child process exited with status
4294967295 -- Restarting.
21:18:49 2003 [notice] Parent: Created child process 676
21:18:49 2003 [notice] Child 676: Child process is running
21:18:49 2003 [notice] Child 676: Acquired the start mutex.
21:18:49 2003 [notice] Child 676: Starting 250 worker threads.
21:19:44 2003 [warn] (OS 121)The semaphore timeout period has expired. :
winnt_accept: Asynchronous AcceptEx failed.
00:50:58 2003 [warn] (OS 64)The specified network name is no longer
available. : winnt_accept: Asynchronous AcceptEx failed.
00:50:58 2003 [warn] (OS 64)The specified network name is no longer
available. : winnt_accept: Asynchronous AcceptEx failed.
01:54:48 2003 [warn] (OS 64)The specified network name is no longer
available. : winnt_accept: Asynchronous AcceptEx failed.
02:00:14 2003 [warn] (OS 64)The specified network name is no longer
available. : winnt_accept: Asynchronous AcceptEx failed.
05:41:18 2003 [warn] (OS 64)The specified network name is no longer
available. : winnt_accept: Asynchronous AcceptEx failed.
06:03:28 2003 [warn] (OS 64)The specified network name is no longer
available. : winnt_accept: Asynchronous AcceptEx failed.
06:31:33 2003 [warn] (OS 64)The specified network name is no longer
available. : winnt_accept: Asynchronous AcceptEx failed.
07:30:38 2003 [warn] (OS 64)The specified network name is no longer
available. : winnt_accept: Asynchronous AcceptEx failed.
07:30:38 2003 [warn] (OS 64)The specified network name is no longer
available. : winnt_accept: Asynchronous AcceptEx failed.
07:42:30 2003 [warn] (OS 64)The specified network name is no longer
available. : winnt_accept: Asynchronous AcceptEx failed.

--- End Message ---

Reply via email to