php-windows Digest 10 Nov 2003 23:16:05 -0000 Issue 1993
Topics (messages 22059 through 22067):
Re: gallery
22059 by: Paul Fritzsche
error [warn] getsockname and localhost not recognized
22060 by: Dan McFall
php manual in pdf format?
22061 by: Rick Owen
22062 by: Daniel
22063 by: Daniel
Session configuration
22064 by: Voodoo
22065 by: David Felton
22066 by: Voodoo
HOW DO I FIND GD LIB ENABLED
22067 by: S F Alim
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 ---
I have tried the support forum but they couldnt help me..
But I will try the ftp-upload and JAVA and see how it works.
Thnx for suggestions
Paul
"Tommy Ipsen" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Paul Fritzsche wrote:
>
> > Bur what is happening is that I can add one catalogue of pictures and
when I
> > try ti add another set of pictures, (uploading then= everything stalls
=(
>
> I have only had the kind of problems where everything either works or it
> doesn't - nothing in between...
>
> > Have you tried scourgeforge-gallery? and in that case, have you
encountererd
> > this kind of starnge behaviour?
>
> I have tried it and I have it running as well on a site - furthermore I
> know of 2-3 other people using it without problems!
>
> If you need to uploade 2500+ pictures you might consider using the Java
> extension or the option for ftp-upload which is a lot easier and faster
> than uploading each file individually!
>
> You might also try the support forum on the website - it's quite capable!
>
> Regards,
>
> Tommy
--- End Message ---
--- Begin Message ---
WinMe, easyphp 1.6 and 1.7(worked previously with 1.6 but now won't work
with 1.6 or 1.7)
[warn] getsockname
Can anyone enlighten me as to cause and solution for this warning
when attempting to load a localhost page?
I can ping as localhost and as 127.0.01, mysql works but when I try to open
any php page the apache log shows the above error and the page never loads
Dan McFall
--- End Message ---
--- Begin Message ---
Greetings,
I would like to find a copy of the php manual in pdf format that is something more
than just the
html file printed to Adobe PDF Writer. Is there one available that has page numbers
in the table
of contents, etc. I've ordered a couple of PHP books from Amazon, but they won't be
delivered for
10 days or so.
I've searched, but googling for "php pdf" returns *many* references to the php pdf_
functions and
no references (in the first 10 pages or so) of a php manual in pdf format.
Thanks,
Rick.
=====
"Hey, has anyone else noticed that you never see Osama bin Laden and Ted Kennedy in
the same place at once?" --James Taranto
--- End Message ---
--- Begin Message ---
Rick Owen wrote:
Greetings,
I would like to find a copy of the php manual in pdf format that is something more
than just the
html file printed to Adobe PDF Writer. Is there one available that has page numbers
in the table
of contents, etc. I've ordered a couple of PHP books from Amazon, but they won't be
delivered for
10 days or so.
I've searched, but googling for "php pdf" returns *many* references to the php pdf_
functions and
no references (in the first 10 pages or so) of a php manual in pdf format.
Thanks,
Rick.
=====
"Hey, has anyone else noticed that you never see Osama bin Laden and Ted Kennedy in the
same place at once?" --James Taranto
Well... try searching "filetype:pdf php mysql" (without the quotes), i
have about 10 full length books (500+ pages) on my PC right now.
--- End Message ---
--- Begin Message ---
Rick Owen wrote:
Greetings,
I would like to find a copy of the php manual in pdf format that is something more
than just the
html file printed to Adobe PDF Writer. Is there one available that has page numbers
in the table
of contents, etc. I've ordered a couple of PHP books from Amazon, but they won't be
delivered for
10 days or so.
I've searched, but googling for "php pdf" returns *many* references to the php pdf_
functions and
no references (in the first 10 pages or so) of a php manual in pdf format.
Thanks,
Rick.
=====
"Hey, has anyone else noticed that you never see Osama bin Laden and Ted Kennedy in the
same place at once?" --James Taranto
Well... try searching "filetype:pdf php mysql" (without the quotes), i
have about 10 full length books (500+ pages) on my PC right now.
--- End Message ---
--- Begin Message ---
I'm using php 4.3.0 under an IIS server, and I'm having some trouble on
starting a session. I guess it's a configuration problem. Tried to edit the
php.ini file, and found this line:
; Handler used to store/retrieve data.
session.save_handler = files
; Argument passed to save_handler. In the case of files, this is the path
; where data files are stored. Note: Windows users have to change this
; variable in order to use PHP's session functions.
I don't know what changes I got to do, as Windows user, to get it working
properly. Is this the problem?
The session.save_path is allright, I can see the session file being created
every time I use the session_start() method, but I receive this error
message:
Warning: session_start() [function.session-start]: Cannot send session
cookie - headers already sent by (output started at c:\(blah)\teste.php:9)
in c:\(blah)\teste.php on line 12
Warning: session_start() [function.session-start]: Cannot send session cache
limiter - headers already sent (output started at c:\(blah)\teste.php:9) in
c:\(blah)\teste.php on line 12
The script I'm using to test it is the session example script from the
documentation at php.net:
session_start();
if (isset($HTTP_SESSION_VARS['count'])) {
$HTTP_SESSION_VARS['count']++;
}else {
$HTTP_SESSION_VARS['count'] = 0;
}
echo $HTTP_SESSION_VARS['count']."<br>";
?>
<a href="teste.php">Acrescentar</a>
Can somebody help me?
Cheers,
Voodoo
--- End Message ---
--- Begin Message ---
The error just means you are printing something out before you call
session_start();
you just need to call session_start() *before* you print anything out to the
page, so it's best off called at the top/start of your php page.
-----Original Message-----
From: Voodoo [mailto:[EMAIL PROTECTED]
Sent: 10 November 2003 5:09
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Session configuration
I'm using php 4.3.0 under an IIS server, and I'm having some trouble on
starting a session. I guess it's a configuration problem. Tried to edit the
php.ini file, and found this line:
; Handler used to store/retrieve data.
session.save_handler = files
; Argument passed to save_handler. In the case of files, this is the path
; where data files are stored. Note: Windows users have to change this
; variable in order to use PHP's session functions.
I don't know what changes I got to do, as Windows user, to get it working
properly. Is this the problem?
The session.save_path is allright, I can see the session file being created
every time I use the session_start() method, but I receive this error
message:
Warning: session_start() [function.session-start]: Cannot send session
cookie - headers already sent by (output started at c:\(blah)\teste.php:9)
in c:\(blah)\teste.php on line 12
Warning: session_start() [function.session-start]: Cannot send session cache
limiter - headers already sent (output started at c:\(blah)\teste.php:9) in
c:\(blah)\teste.php on line 12
The script I'm using to test it is the session example script from the
documentation at php.net:
session_start();
if (isset($HTTP_SESSION_VARS['count'])) {
$HTTP_SESSION_VARS['count']++;
}else {
$HTTP_SESSION_VARS['count'] = 0;
}
echo $HTTP_SESSION_VARS['count']."<br>";
?>
<a href="teste.php">Acrescentar</a>
Can somebody help me?
Cheers,
Voodoo
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.
**********************************************************************
--- End Message ---
--- Begin Message ---
I can't believe it was just that. Thanks a lot, man.
Cheers,
Voodoo
--- End Message ---
--- Begin Message ---
Hi,
Can I find that my php version support gd library,
My php version is 4.3.3 and server is IIS 5.0 and I want to configure it
for JPGraph.
Thnx in advanced.
Faisal
--- End Message ---