RE: [PHP-DEV] PHP Compile errors

2002-10-04 Thread Emanuel Dejanu
Thanks Markus, I have succeed to compile the PHP and also my extension. Best regards, Emanuel Dejanu > -Original Message- > From: Markus Fischer [mailto:[EMAIL PROTECTED]] > Sent: 3 octombrie 2002 16:57 > To: Emanuel Dejanu > Cc: [EMAIL PROTECTED] > Subject: Re: [PH

[PHP-DEV] PHP Compile errors

2002-10-03 Thread Emanuel Dejanu
Hi, I want to compile PHP 4.2.3 on Windows 2000 but I get the following errors: php_fopen_wrapper.c ..\main\php_network.h(28) : fatal error C1083: Cannot open include file: 'arpa/inet.h': No such file or directory VC++ 6.0 SP5 I get this also with php4-200210030600 Best regards

RE: [PHP-DEV] PHP Extension on Win32

2002-10-03 Thread Emanuel Dejanu
4:43 > To: Emanuel Dejanu > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP-DEV] PHP Extension on Win32 > > > On Thu, Oct 03, 2002 at 01:28:52PM +0200, Emanuel Dejanu wrote : > > I want to make a DLL private (closed source) > > to be available in PHP language. > >

[PHP-DEV] PHP Extension on Win32

2002-10-03 Thread Emanuel Dejanu
elemenents. What is the best way to export these enumerations in PHP? I have been thinking about two solutions: 1) definitions, e.g. define('kS', 1) 2) classes, e.g. class S { var $k = 1; }; Best regards, Emanuel Dejanu -- PHP Development Mailing

RE: [PHP-DEV] How do I access a hash from an extention/module?

2002-06-06 Thread Emanuel Dejanu
I think that the best will be that somebody with a hole experience in PHP internals to write a book, I will sure buy it. Best regards, Emanuel Dejanu -Original Message- From: Eric Veldhuyzen [mailto:[EMAIL PROTECTED]] Sent: 6 iunie 2002 16:59 To: Markus Fischer Cc: fabwash; Eric

RE: [PHP-DEV] CLI & max_execution_time

2002-03-26 Thread Emanuel Dejanu
I try to make Linux programmers to change where they keep users configuration from $HOME to $HOME/.settings. In this way the users home will be clean. Please do not make a war from this suggestion, a simple yes or no is enough. Best regards, Emanuel -Original Message- From: Martín Mar

RE: [PHP-DEV] Re: PHP Documentation

2002-01-22 Thread Emanuel Dejanu
:[EMAIL PROTECTED]] Sent: 22 ianuarie 2002 17:33 To: [EMAIL PROTECTED] Subject: [PHP-DEV] Re: PHP Documentation The PHP documentation is already available in Windows help format. (The new HTML-ish kind, I believe.) See http://www.php.net/download-docs.php. J Emanuel Dejanu wrote: > > Hi,

[PHP-DEV] PHP Documentation

2002-01-22 Thread Emanuel Dejanu
Hi, Do you know how can I ($PHP_SELF :) compile the PHP documentation in Windows HTML Help format? Any guide line? Best regards, Emanuel Dejanu -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PRO

[PHP-DEV] _POST --> HTTP_POST_VARS (refrences!!! not)

2002-01-22 Thread Emanuel Dejanu
Hi, I have recently installed PHP 4.1.1 and I found that _POST is not a reference of HTTP_POST_VARS but a copy. I think that it should be reference. Here is a reply to one of my old message in which Yasuo Ohgaki wrote: > $_SEERVER, etc are reference of $HTTP_*_VARS. > I think this should be

RE: [PHP-DEV] Shared extension

2002-01-10 Thread Emanuel Dejanu
%non-zts-debug%). and second to execute a test with the newly compiled binary. 2)The two commands I stole from the book "Web Development with PHP". They can be found here : http://bg2.php.net/manual/bg/zend.creating.php - Original Message - From: "Emanuel Dejanu"

[PHP-DEV] Shared extension

2002-01-10 Thread Emanuel Dejanu
Hi, I have switch to 4.1.1 from 4.0.6 my extension is not compiled any more as a shared library (myext.so). I use the following (build as apache sapi) ./configure --enable-myext=shared ...(rest of conf params) after make; make install I found in the extension directory myext.a but not file nam

RE: [PHP-DEV] RE: PHP 4.1.0 released

2001-12-11 Thread Emanuel Dejanu
ions (POSIX Extended) Session handling functions Socket functions String functions URL Functions Variable Functions XML parser functions Most of them are standard modules so I believe that they are thread safe, but I need a confirmation for my boss :-) Thanks, Emanuel Dejanu -Original Mes

RE: [PHP-DEV] RE: PHP 4.1.0 released

2001-12-11 Thread Emanuel Dejanu
Can you tell me some of modules that are not thread safe? I'm using only MySQL, file access+URL. Best regards, Emanuel Dejanu -Original Message- From: Zeev Suraski [mailto:[EMAIL PROTECTED]] Sent: 11 decembrie 2001 17:37 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re:

[PHP-DEV] RE: PHP 4.1.0 released

2001-12-11 Thread Emanuel Dejanu
unning it on a production site. In short - your mileage may vary; If you need absolute stability, trade the performance of the SAPI modules with the stability of the CGI executable. " Best regards, Emanuel Dejanu -- PHP Development Mailing List <http://www.php.net/> To unsubs

FW: [PHP-DEV] _SERVER & HTTP_SERVER_VARS

2001-12-04 Thread Emanuel Dejanu
Hi there, $_* arrays are a copy of the long GLOBAL vars. So $_SERVER is a copy of $HTTP_SERVER_VARS or is a reference? Best regards, Emanuel Dejanu -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 5 decembrie 2001 08:31 To: Prottoss Cc: [EMAIL PROTECTED

[PHP-DEV] Shared extension with needed static library.

2001-10-18 Thread Emanuel Dejanu
How can I link my extension to a statical linked library? If I use this config file my extension is compiled but when run my test I get (in apache error_log): /mnt/disk1/home/edejanu/apache/aps/bin/httpd: error while loading shared libraries: /mnt/disk1/home/edejanu/apache/aps/lib/php/20001222/ph

RE: [PHP-DEV] RE: Re: How do I register a constructor in PHP (C code)

2001-09-26 Thread Emanuel Dejanu
I have 64M DRAM cylix 166MHz.. TT > PHP 4.0.6, Wow-Linux 7.1 (Redhat 7.1 compat...) > No Apache.. (I compile CGI mode) > > > Emanuel Dejanu wrote: > > >tr(/PHP_/ZEND_/) > >and still do not work. I have compared your example with my > >code and no difference

RE: [PHP-DEV] How do I register a constructor in PHP (C code)

2001-09-26 Thread Emanuel Dejanu
I have them in my code. I have miss them in my e-mail, sorry. Have somebody an real example that is working, really checked because I have really check all the sources and found anything!!! Thanks, Emanuel Dejanu > -Original Message- > From: Jeff Hughes [mailto:[EMAIL PRO

RE: [PHP-DEV] RE: Re: How do I register a constructor in PHP (C code)

2001-09-26 Thread Emanuel Dejanu
tr(/PHP_/ZEND_/) and still do not work. I have compared your example with my code and no difference found on it. Have you any other suggestions. I really need the constructor and I can not do it. Best regards, Emanuel Dejanu P.S. I run Apache 1.3.20 PHP 4.0.6 Linux 2.2.18-SMP SuSE 7.1 on

RE: [PHP-DEV] How do I register a constructor in PHP (C code)

2001-09-25 Thread Emanuel Dejanu
I have put zend_class_entry variabiles global and still no success in having my constructor called. You PHP guru do not have any ideea what is the problem. Best regards, Emanuel Dejanu > -Original Message- > From: Jeff Hughes [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, Sep

[PHP-DEV] RE: Re: How do I register a constructor in PHP (C code)

2001-09-25 Thread Emanuel Dejanu
I have write using the init but still do not work. Any other ideea. Best regards, Emanuel Dejanu > -Original Message- > From: Hansuck Jo [mailto:""sizer"@.php.net] > Sent: Tuesday, September 25, 2001 6:31 PM > To: [EMAIL PROTECTED] > Subject: [PH

[PHP-DEV] How do I register a constructor in PHP (C code)

2001-09-25 Thread Emanuel Dejanu
PHP_FUNCTION(rt66class_constructor) { ZEND_PUTS("RT66Class Contructor"); } - nothing appear on the screen. Please tell me how can I make it to work. Many thanks, Emanuel Dejanu > -Original Message- > From: Andy [mailto:[EMAIL PROTECTED]] > Sent: Wednes

RE: [PHP-DEV] Bug #13039: $submit (form) variable doesn't work

2001-08-30 Thread Emanuel Dejanu
Try if(!isset($submit) { ... //display the form } else { // process the form ... } > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 29, 2001 8:49 PM > To: [EMAIL PROTECTED] > Subject: [PHP-DEV] Bug #13039: $submit (form) variable doesn'

[PHP-DEV] print_r

2001-07-30 Thread Emanuel Dejanu
the corret tree. Bellow you find the only modification that need to be done for this to work. Best regards, Emanuel Dejanu File: Zend/zend.c static void print_hash(HashTable *ht, int indent) { zval **tmp; char *string_key; HashPosition iterator;