Re: [PHP-DEV] zend_multibyte.c

2002-05-16 Thread Masaki Fujimoto

Hello,

# I forgot CC... sorry for doubled mails, Brad.

On Wed, 15 May 2002 22:42:05 -0700 (PDT)
brad lafountain [EMAIL PROTECTED] wrote:

 What exactly does this do.
 
 Is zend going to support multbyte characters?

Yes, we japanese is working for i18n of Zend Engine (and ZE2) these days...
but currently zend_multibyte.c works only for japanese encodings and
still not perfect one. so, it's still under way to improve it toward PHP
4.3.0 or PHP 5.

P.S. without --enable-zend-multibyte, it should not do any harm. if you
 have problem caused by multibyte support, please tell it to me and
 I'll fix that problem ASAP.

Masaki Fujimoto
[EMAIL PROTECTED]
[EMAIL PROTECTED]

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




[PHP-DEV] Re: Operator Precedence bug

2002-05-16 Thread Derick Rethans

Andrew,

On Wed, 15 May 2002, Andrew Sitnikov wrote:

 Hello derick,

   What you thing about this http://bugs.php.net/bug.php?id=17180 ?
 
   It must be marked as Open instead Analized ?

No, I think it should be a documentation problem. It just doesn't make any 
sense to do it like this, and fixing it would require a lot of effort, 
which can better be spend on other useful issues.

regards,
Derick

---
 Did I help you?   http://www.jdimedia.nl/derick/link.php?url=giftlist
 Frequent ranting: http://www.jdimedia.nl/derick/
---
 PHP: Scripting the Web - [EMAIL PROTECTED]
All your branches are belong to me!
SRM: Script Running Machine - www.vl-srm.net
---


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




[PHP-DEV] libesmtp (Was: Re: [PHP-QA] Improvement suggestions for mail() delivery problems)

2002-05-16 Thread Markus Fischer

Hi,

btw, I've found a library called libesmtp [1]. It's feature
list is quite interesting: Support for many SMTP extensions,
notably PIPELINING (RFC 2920), DSN (RFC 1891) and SASL
authentication (RFC 2554). Supported SASL mechanisms include
CRAM- MD5 and NTLM.

Maybe someone is interesting evaluating if it's
useful/possible to use for our purpose and implement bindings
to it.

- Markus

[1] http://www.stafford.uklinux.net/libesmtp/

-- 
Please always Cc to me when replying to me on the lists.
GnuPG Key: http://guru.josefine.at/~mfischer/C2272BD0.asc
-
I mean When in doubt, blame mcrypt is more often right than wrong :)
Always right, never wrong :)
- Two PHP developers who want to remain unnamed

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




[PHP-DEV] CVS Account Request: microbrain

2002-05-16 Thread Karel Vervaeke

learn php ;-)
Uh NO! learn to use cvs.
buggrit.
No seriously I feel like doing lots of translating on the dutch manual, because it 
still needs lots of work and I haven't seen any changes during the last months (=6)

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




Re: [PHP-DEV] libesmtp (Was: Re: [PHP-QA] Improvement suggestionsfor mail() delivery problems)

2002-05-16 Thread Hartmut Holzgraefe


dreamnigif it only supported win32/dreaming

-- 
Hartmut Holzgraefe  [EMAIL PROTECTED]  http://www.six.de/  +49-711-99091-77

Wir stellen für Sie aus, auf der INTERNET WORLD in Berlin.
Besuchen Sie uns vom 4. bis 6. Juni 2002 in Halle 4.2, Stand A9


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




[PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] libesmtp (Was: Re: [PHP-QA] Improvementsuggestions for mail() delivery problems)

2002-05-16 Thread derick

On Thu, 16 May 2002, Hartmut Holzgraefe wrote:

 
 dreamnigif it only supported win32/dreaming

We're having a hard time on compiling this bitch... It is totally 
non-win32 compatible it seems...

Derick

---
 Did I help you?   http://www.jdimedia.nl/derick/link.php?url=giftlist
 Frequent ranting: http://www.jdimedia.nl/derick/
---
 PHP: Scripting the Web - [EMAIL PROTECTED]
All your branches are belong to me!
SRM: Script Running Machine - www.vl-srm.net
---


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




Re: [PHP-DEV] CVS Account Request: microbrain

2002-05-16 Thread derick

On 16 May 2002, Karel Vervaeke wrote:

 learn php ;-)
 Uh NO! learn to use cvs.
 buggrit.
 No seriously I feel like doing lots of translating on the dutch manual, 
 because it still needs lots of work and I haven't seen any changes 
 during the last months (=6)

You didn't look very well then :) Anyway, nice to have you on board.

Derick

---
 Did I help you?   http://www.jdimedia.nl/derick/link.php?url=giftlist
 Frequent ranting: http://www.jdimedia.nl/derick/
---
 PHP: Scripting the Web - [EMAIL PROTECTED]
All your branches are belong to me!
SRM: Script Running Machine - www.vl-srm.net
---


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




[PHP-DEV] Help please.

2002-05-16 Thread Robert Cummings

Is there someplace other than:

http://www.php.net/manual/en/zend.php

Where I can get more advanced information about how the engine
itself works. While I've made some extensions I was recently
wondering if perhaps I've done some things wrong (no doubt I have).
For instance... Let's say I do:

zval *newVar;
MAKE_STD_ZVAL( newVar );
ZEND_SET_SYMBOL( EG(symbol_table), varKey, newVar );

and then for some unknown reason not particularly important
for this discussion I do the following:

MAKE_STD_ZVAL( newVar );
ZEND_SET_SYMBOL( EG(symbol_table), varKey, newVar );

This will overwrite my orignal newVar, however, will the original
newVar be garbaged collected or is this my responsibility now that
I'm out of PHP land? Also if it is auto garbage collected, is there
a way I can force garbage collection to run while I'm in a deep
recursion?

Cheers,
Rob.
-- 
.-.
| Robert Cummings |
:-`.
| Webdeployer - Chief PHP and Java Programmer  |
:--:
| Mail  : mailto:[EMAIL PROTECTED] |
| Phone : (613) 731-4046 x.109 |
:--:
| Website : http://www.webmotion.com   |
| Fax : (613) 260-9545 |
`--'

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




Re: [PHP-DEV] CVS Account Request: microbrain

2002-05-16 Thread Manuzhai

Like, we got the whole MySQL section translated. :)

[EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 On 16 May 2002, Karel Vervaeke wrote:

  learn php ;-)
  Uh NO! learn to use cvs.
  buggrit.
  No seriously I feel like doing lots of translating on the dutch manual,
  because it still needs lots of work and I haven't seen any changes
  during the last months (=6)

 You didn't look very well then :) Anyway, nice to have you on board.

 Derick

 --
-
  Did I help you?   http://www.jdimedia.nl/derick/link.php?url=giftlist
  Frequent ranting: http://www.jdimedia.nl/derick/
 --
-
  PHP: Scripting the Web - [EMAIL PROTECTED]
 All your branches are belong to me!
 SRM: Script Running Machine - www.vl-srm.net
 --
-




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




[PHP-DEV] Console application with PHP

2002-05-16 Thread DoL

Hi All

I am trying to write something similar to a server console display, is it a
good idea to use PHP?

Wondering how things like
1. server clock (similar to a clock applet)
2. server status
can be displayed with PHP code?

Note: I need to display the above two in a continuous fashion on the status
bar!!

Many Thanks
Dominic




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




[PHP-DEV] RE: [PHP] Console application with PHP

2002-05-16 Thread Vail, Warren

PHP and Web Servers probably make a bad choice for what is essentially a
real time application.  PHP and web servers expect to serve up a page of
essentially HTML(and Javascript, or Java Applets), then close the connection
to a browser so that it can handle the requests of others, and not deal with
that connection again until the browser makes another connection, usually as
a result of a hotlink click, or submit.

There is a way to simulate what you want using JavaScript (if PHP can output
HTML, it can also output Javascript).  Check http://www.hotscripts.com in
their JavaScript section for routines to perform 3 functions,

1. a routine which will cause the a page to request a refresh every 10
seconds or so, there by requesting the same page, which your PHP can fill
with the latest (real-time?) data.
2. a routine for using JavaScript to display data on the status line.
3. a routine for displaying the time (using the clock on the browser
machine).

hope this helps,


Warren Vail
Tools, Metrics  Quality Processes
(415) 667-7814
Pager (877) 774-9891
215 Fremont 02-658


-Original Message-
From: DoL [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 16, 2002 9:12 AM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: [PHP] Console application with PHP


Hi All

I am trying to write something similar to a server console display, is it a
good idea to use PHP?

Wondering how things like
1. server clock (similar to a clock applet)
2. server status
can be displayed with PHP code?

Note: I need to display the above two in a continuous fashion on the status
bar!!

Many Thanks
Dominic




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

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




Re: [PHP-DEV] Console application with PHP

2002-05-16 Thread Markus Fischer

Hi,

all is possible. I suggest taking a look at
http://gtk.php.net/ and
http://www.php.net/manual/en/features.commandline.php for a
start.

- Markus

On Fri, May 17, 2002 at 12:12:20AM +0800, DoL wrote : 
 Hi All
 
 I am trying to write something similar to a server console display, is it a
 good idea to use PHP?
 
 Wondering how things like
 1. server clock (similar to a clock applet)
 2. server status
 can be displayed with PHP code?
 
 Note: I need to display the above two in a continuous fashion on the status
 bar!!
 
 Many Thanks
 Dominic
 
 
 
 
 -- 
 PHP Development Mailing List http://www.php.net/
 To unsubscribe, visit: http://www.php.net/unsub.php

-- 
Please always Cc to me when replying to me on the lists.
GnuPG Key: http://guru.josefine.at/~mfischer/C2272BD0.asc
-
I mean When in doubt, blame mcrypt is more often right than wrong :)
Always right, never wrong :)
- Two PHP developers who want to remain unnamed

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




Re: [PHP-DEV] Configuration.... XML.... Life

2002-05-16 Thread Marcus Börger

Generally using xml instead of ini format would allow many things
-different ini sections for different sapis
-different ini sections for different users
-maybe inclusion of subscripts (db admin may change only database parts..)
-maybe different ini sections for different webservers if we can 
distinguish before loading ini
-and other handling other differences we may have now or will have to 
handle in the future.

but first of all we should have a dtd or xschema for this
and then xml parsing is slower than ini parsing
and the components needed to parse the xml settings file have to be all 
core components (without usage of external libraries)
and that would violate thinks like --disable-xml

besides that i would agree but my guesses are that no one will be found 
doing all
the code changes

(i skipped reply to general list because i only reply to means of development)

marcus

At 21:31 16.05.2002, Michael Dransfield wrote:
I have started writing an app which helps (mainly win32, new) users to 
generate config files correctly to prevent glaring security holes on 
production servers.

I started by using parse_config_file(), but this ends up causing problems 
because it strips comments.  This means that some variables which are 
commented are lost from the program.  There are also potential problems 
because some of the config file has [sections] and some of it 
doesnt.  Some of this is valid in win32 environments and some are 
not.  This can cause problems if users download the win32 default config 
file and then upload it to Linux or BSD, it will fail.

Will uncommenting some of the variables (and then setting them to the 
default) affect the running of php at all?  is there a reason why they are 
commented and not just set with their default / NULL value?

I then began playing with an xml file which stores the comments and 
variables along with other useful information relating to the 
configuration variable. I then added warnings to the XML document so that 
the front-end can read if a setting is potentially insecure (in the 
current environment).  I think the best way to explain it is by looking at 
the attached file, most of it is obvious, i have commented where necessary.

Do you think this format looks OK, I am sure i have missed a lot of 
information which could be of interest, for example storing a default 
value with each variable, which could be different in different 
environments (eg default env=dev value=1/).  Maybe add a severity to 
the warning.

What would you think about the possibility of including the XML ini file 
format in later release of php?  it is easy enough to parse the file when 
the server is started as easilly as it can parse the current ini 
file(?).  It could enable many possibilities because is can store multiple 
environments within it, along with relavent information about the setting 
itself, which would make overall administration much much easier, and 
quicker.  ini files are s Windows 95, dont you think?

I am going to write the front-end as a web application and as a php-gtk 
app (hopefully with the same code).

Does anybody have any comments or suggestions (or would like to 
help)?  (please try to keep them constructive ;)  i have looked for 
similar projects, but cant find any.

Regards
Mike



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


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




Re: [PHP-DEV] karma

2002-05-16 Thread Stig S. Bakken

Drop a mail to [EMAIL PROTECTED]

 - Stig

On Thu, 2002-05-16 at 07:00, brad lafountain wrote:
 How would i go about getting karma for cvs commits?
 
 
  - Brad
 
 
 __
 Do You Yahoo!?
 LAUNCH - Your Yahoo! Music Experience
 http://launch.yahoo.com
 
 -- 
 PHP Development Mailing List http://www.php.net/
 To unsubscribe, visit: http://www.php.net/unsub.php


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




[PHP-DEV] Writing EXIF?

2002-05-16 Thread Jens Kohl

Hello,

is there a possibility to write (create and update) EXIF information? I
can't find anything in the manual. There is only the exif_read_information
function that reads the information. I want to read, temp. save, rotate an
image with imlib, save the new image and rewrite the exif information to the
new image. I didn't find any posibilitys yet. So I ask here on the dev list.

--
jens



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




[PHP-DEV] [PATCH] Fix for bug 16888

2002-05-16 Thread Joseph Tate

The following fixes bug 16888 so that Apache and IIS no longer crash on
Windows when using the domxml extension with more than 128 nodes.  See
http://bugs.php.net/bug.php?id=16888 for details.

Will the memory leak gurus please have a go at this and let me know what
problems arise?  Also, please test on non Win platforms to make sure that no
functionality is lost.

I'll commit it on Tuesday after I get back from vacation.

Thanks,
Joseph



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


Re: [PHP-DEV] [PATCH] Fix for bug 16888

2002-05-16 Thread Christian Stocker

On Thu, 16 May 2002, Joseph Tate wrote:

 The following fixes bug 16888 so that Apache and IIS no longer crash on
 Windows when using the domxml extension with more than 128 nodes.  See
 http://bugs.php.net/bug.php?id=16888 for details.

 Will the memory leak gurus please have a go at this and let me know what
 problems arise?  Also, please test on non Win platforms to make sure that no
 functionality is lost.

i certainly will (but i'm not the memory leak guru :) ), but the patch
didn't make it through the mailing list. can you put it somewhere online?
or send it to me personally, i can put it then on my webserver.

chregu


-- 
nam...christian stockeradr...bremgartnerstr. 66, ch-8003 zurich
pho...+41  1 451 6021  www...http://phant.ch/chregu
mob...+41 76 561 8860  [EMAIL PROTECTED]
wor...+41  1 240 5670  gpg...0x5CE1DECB


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




Re: [PHP-DEV] Writing EXIF?

2002-05-16 Thread Marcus Börger

There is no way writing exif information. Maybe this will be added but
the necessary code would be very complex.
It could be an option to allow setting of number values such as the rotation
information. When only allowing such we do not have to strip of EXIF header
and insert the a new one.
At the current time it seems i am the only developer for exif module and
as i do not have much time (and other changes in mind) do not expect any
write function soon.

marcus

At 00:11 17.05.2002, you wrote:
Hello,

is there a possibility to write (create and update) EXIF information? I
can't find anything in the manual. There is only the exif_read_information
function that reads the information. I want to read, temp. save, rotate an
image with imlib, save the new image and rewrite the exif information to the
new image. I didn't find any posibilitys yet. So I ask here on the dev list.

--
jens



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


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




[PHP-DEV] Configuration.... XML.... Life

2002-05-16 Thread Michael Dransfield

I have started writing an app which helps (mainly win32, new) users to 
generate config files correctly to prevent glaring security holes on 
production servers.

I started by using parse_config_file(), but this ends up causing problems 
because it strips comments.  This means that some variables which are 
commented are lost from the program.  There are also potential problems 
because some of the config file has [sections] and some of it doesnt.  Some 
of this is valid in win32 environments and some are not.  This can cause 
problems if users download the win32 default config file and then upload it 
to Linux or BSD, it will fail.

Will uncommenting some of the variables (and then setting them to the 
default) affect the running of php at all?  is there a reason why they are 
commented and not just set with their default / NULL value?

I then began playing with an xml file which stores the comments and 
variables along with other useful information relating to the configuration 
variable. I then added warnings to the XML document so that the front-end 
can read if a setting is potentially insecure (in the current 
environment).  I think the best way to explain it is by looking at the 
attached file, most of it is obvious, i have commented where necessary.

Do you think this format looks OK, I am sure i have missed a lot of 
information which could be of interest, for example storing a default value 
with each variable, which could be different in different environments (eg 
default env=dev value=1/).  Maybe add a severity to the warning.

What would you think about the possibility of including the XML ini file 
format in later release of php?  it is easy enough to parse the file when 
the server is started as easilly as it can parse the current ini 
file(?).  It could enable many possibilities because is can store multiple 
environments within it, along with relavent information about the setting 
itself, which would make overall administration much much easier, and 
quicker.  ini files are s Windows 95, dont you think?

I am going to write the front-end as a web application and as a php-gtk app 
(hopefully with the same code).

Does anybody have any comments or suggestions (or would like to 
help)?  (please try to keep them constructive ;)  i have looked for similar 
projects, but cant find any.

Regards
Mike



php_ini.xml
Description: application/xml

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


[PHP-DEV] Re: Configuration.... XML.... Life

2002-05-16 Thread Manuzhai

Do you really have to use attributes for things like name?

And the sense of having section-description inside section escapes me.

Regards,

Manuzhai

Michael Dransfield [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 I have started writing an app which helps (mainly win32, new) users to
 generate config files correctly to prevent glaring security holes on
 production servers.

 I started by using parse_config_file(), but this ends up causing problems
 because it strips comments.  This means that some variables which are
 commented are lost from the program.  There are also potential problems
 because some of the config file has [sections] and some of it doesnt.
Some
 of this is valid in win32 environments and some are not.  This can cause
 problems if users download the win32 default config file and then upload
it
 to Linux or BSD, it will fail.

 Will uncommenting some of the variables (and then setting them to the
 default) affect the running of php at all?  is there a reason why they are
 commented and not just set with their default / NULL value?

 I then began playing with an xml file which stores the comments and
 variables along with other useful information relating to the
configuration
 variable. I then added warnings to the XML document so that the front-end
 can read if a setting is potentially insecure (in the current
 environment).  I think the best way to explain it is by looking at the
 attached file, most of it is obvious, i have commented where necessary.

 Do you think this format looks OK, I am sure i have missed a lot of
 information which could be of interest, for example storing a default
value
 with each variable, which could be different in different environments (eg
 default env=dev value=1/).  Maybe add a severity to the warning.

 What would you think about the possibility of including the XML ini file
 format in later release of php?  it is easy enough to parse the file when
 the server is started as easilly as it can parse the current ini
 file(?).  It could enable many possibilities because is can store multiple
 environments within it, along with relavent information about the setting
 itself, which would make overall administration much much easier, and
 quicker.  ini files are s Windows 95, dont you think?

 I am going to write the front-end as a web application and as a php-gtk
app
 (hopefully with the same code).

 Does anybody have any comments or suggestions (or would like to
 help)?  (please try to keep them constructive ;)  i have looked for
similar
 projects, but cant find any.

 Regards
 Mike




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




[PHP-DEV] RE: [PHP] Re: [PHP-DEV] Console application with PHP

2002-05-16 Thread Vail, Warren

Does this work on Windows, or is it restricted to Linux/unix?


Warren Vail
Tools, Metrics  Quality Processes
(415) 667-7814
Pager (877) 774-9891
215 Fremont 02-658


-Original Message-
From: Markus Fischer [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 16, 2002 11:58 AM
To: DoL
Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: [PHP] Re: [PHP-DEV] Console application with PHP


Hi,

all is possible. I suggest taking a look at
http://gtk.php.net/ and
http://www.php.net/manual/en/features.commandline.php for a
start.

- Markus

On Fri, May 17, 2002 at 12:12:20AM +0800, DoL wrote : 
 Hi All
 
 I am trying to write something similar to a server console display, is it
a
 good idea to use PHP?
 
 Wondering how things like
 1. server clock (similar to a clock applet)
 2. server status
 can be displayed with PHP code?
 
 Note: I need to display the above two in a continuous fashion on the
status
 bar!!
 
 Many Thanks
 Dominic
 
 
 
 
 -- 
 PHP Development Mailing List http://www.php.net/
 To unsubscribe, visit: http://www.php.net/unsub.php

-- 
Please always Cc to me when replying to me on the lists.
GnuPG Key: http://guru.josefine.at/~mfischer/C2272BD0.asc
-
I mean When in doubt, blame mcrypt is more often right than wrong :)
Always right, never wrong :)
- Two PHP developers who want to remain unnamed

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

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




[PHP-DEV] Re: [PHP] Re: [PHP-DEV] Console application with PHP

2002-05-16 Thread Markus Fischer

Windows too.

- Markus

On Thu, May 16, 2002 at 02:31:52PM -0700, Vail, Warren wrote : 
 Does this work on Windows, or is it restricted to Linux/unix?
 
 
 Warren Vail
 Tools, Metrics  Quality Processes
 (415) 667-7814
 Pager (877) 774-9891
 215 Fremont 02-658
 
 
 -Original Message-
 From: Markus Fischer [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, May 16, 2002 11:58 AM
 To: DoL
 Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Subject: [PHP] Re: [PHP-DEV] Console application with PHP
 
 
 Hi,
 
 all is possible. I suggest taking a look at
 http://gtk.php.net/ and
 http://www.php.net/manual/en/features.commandline.php for a
 start.
 
 - Markus
 
 On Fri, May 17, 2002 at 12:12:20AM +0800, DoL wrote : 
  Hi All
  
  I am trying to write something similar to a server console display, is it
 a
  good idea to use PHP?
  
  Wondering how things like
  1. server clock (similar to a clock applet)
  2. server status
  can be displayed with PHP code?
  
  Note: I need to display the above two in a continuous fashion on the
 status
  bar!!
  
  Many Thanks
  Dominic
  
  
  
  
  -- 
  PHP Development Mailing List http://www.php.net/
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 -- 
 Please always Cc to me when replying to me on the lists.
 GnuPG Key: http://guru.josefine.at/~mfischer/C2272BD0.asc
 -
 I mean When in doubt, blame mcrypt is more often right than wrong :)
 Always right, never wrong :)
 - Two PHP developers who want to remain unnamed
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php

-- 
Please always Cc to me when replying to me on the lists.
GnuPG Key: http://guru.josefine.at/~mfischer/C2272BD0.asc
-
I mean When in doubt, blame mcrypt is more often right than wrong :)
Always right, never wrong :)
- Two PHP developers who want to remain unnamed

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




[PHP-DEV] Zip file help

2002-05-16 Thread Vinod Palan

hi ,
Does any one knows How do Install zip file module available @
http://zziplib.sourceforge.net/

I am having apachea 1.3.22 and
Win2k
 PHP 4


Thanks
Vinod

--
Vinod Palan A
Calypso Technology, Inc.
[EMAIL PROTECTED]
(415) 817-2463 Phone






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




[PHP-DEV] CVS Account Request: dets

2002-05-16 Thread Den V. Tsopa

I want to apply patch to mbstring extention module.
I need access to php4/ext/mbstring.

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




[PHP-DEV] Which source tree should I use?

2002-05-16 Thread Venkat Raghavan

OK, I've got a CVS account now. Do I just check-out using the procedure
specified in the Anonymous CVS Usage page or should I use some specific
version? I want to work with the latest files.

Thanx in advance,
Venkat

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




[PHP-DEV] CVS Account Request: kongl

2002-05-16 Thread zhouweiping

do something

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




Re: [PHP-DEV] Which source tree should I use?

2002-05-16 Thread Rasmus Lerdorf

Check out the main php4/ HEAD branch.

cvs -d:pserver:[EMAIL PROTECTED]:/respository co php4

On Thu, 16 May 2002, Venkat Raghavan wrote:

 OK, I've got a CVS account now. Do I just check-out using the procedure
 specified in the Anonymous CVS Usage page or should I use some specific
 version? I want to work with the latest files.

 Thanx in advance,
 Venkat

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



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




[PHP-DEV] Re: cvs: php4 /sapi/apache2filter apache_config.c

2002-05-16 Thread Cliff Woolley

On Fri, 17 May 2002, Cliff Woolley wrote:

 jwoolley  Fri May 17 01:16:24 2002 EDT

   Modified files:
 /php4/sapi/apache2filter  apache_config.c
   Log:
   * restore the php_flag and php_admin_flag Apache directives which for
 some mysterious reason never made their way from sapi/apache to
 sapi/apache2filter when it was first written  PR: 16629
   * change the allowed locations of php_admin_value (and php_admin_flag to
 match) to ACCESS_CONF instead of OR_NONE to match sapi/apache.  No
 idea why it was ever OR_NONE.  PR: 16489


I know this should be MFH'ed.  I'll do it as soon as I get solid
confirmation it works as expected.  :)

--Cliff


--
   Cliff Woolley
   [EMAIL PROTECTED]
   Charlottesville, VA



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