Re: [PHP] Re: phps and iis

2004-02-16 Thread Scott Fletcher
Well, the instruction at macromedia website is not accurate. It is only for IIS 5 and below. IIS 6 used an increased security feature because of plaquing problem with security hole so, it use a complete lockdown on lot of things. You can safely follow the instruction at macromedia website for in

[PHP] problems with spam

2004-02-16 Thread mayo
Has anybody else been getting spammed with penis and breast enlargeners to their listserv email? I use [EMAIL PROTECTED] solely for listservs and in the past week I've started getting 5-10 spams a day. Gil Midonnet -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://

Re: [PHP] Re: Apache+modssl+php problem??? possible IE bug?

2004-02-16 Thread Scott Fletcher
I don't think it is a PHP issue because I don't have this problem with Mozilla browser. It more had to do with IE and worse, it is only a random occurance. Scott F. "Jason Wong" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Saturday 14 February 2004 05:44, Scott Fletcher wrote

[PHP] Re: [PHP-INSTALL] Re: Apache+modssl+php problem??? possible IE bug?

2004-02-16 Thread Scott Fletcher
IE bug is something I can't do about, I can't image about other 3rd party browser if this ever happen. So, I decided to use the $_REQUEST instead and not have to deal with the browser issues. You should do the same because as everyone know, IE bugs doesn't normally get fixed overnight or worse, i

Re: Re[2]: [PHP] isset() question

2004-02-16 Thread Jason Wong
On Monday 16 February 2004 18:14, Richard Davey wrote: > Consistency. With what? With whose idea of style/formatting? I doubt you will find consistency in the real between different programmers/organisations. If such consistency was there then PHP would've have only had to support a single fo

RE: [PHP] include a file

2004-02-16 Thread Angelo Zanetti
thanx Im going to rather submit the same file and use validation to display the bottom in the same page ( part of the same page) -Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED] Sent: Monday, February 16, 2004 4:07 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject:

Re: [PHP] include a file

2004-02-16 Thread Marek Kilimajer
Angelo Zanetti wrote: Hi, is it possible to include a file from when a select's onChange is called ie: if its possible what would be the best way to do this?? thanx It is, but you have to reload the page and pass the filename as request variable: $allowed_files = array('editBottom.inc'

RE: [PHP] isset() question

2004-02-16 Thread Ford, Mike [LSS]
On 15 February 2004 18:30, Richard Davey wrote: > I feel the book you're learning from might not be the best out there! > Especially as it uses the horrible if : else : endif notation, I'd have to disagree with you on that one -- personally I think that's a very elegant and useful syntax, and al

[PHP] include a file

2004-02-16 Thread Angelo Zanetti
Hi, is it possible to include a file from when a select's onChange is called ie: if its possible what would be the best way to do this?? thanx Disclaimer This e-mail transmission contains confidential information, which is

[PHP] Problem with XSLT parser

2004-02-16 Thread Peter Billen
Hello group, I am having problems to transform xml document with xslt_process(). This is my code: test.xml: Peter Billen 16 test.xsl: http://www.w3.org/1999/XSL/Transform";> test2.xsl: http://www.w3.org/1999/XSL/Transform";>

[PHP] cpdf_import_jpeg() doesn't show input

2004-02-16 Thread janbro
Hi, I've got ClibPDF working soemhow, Only the cpdf_import_jpeg() function does not produce any output at all. There is no error message. I called the function like this: pdf = cpdf_open(0); cpdf_page_init($cpdf, 1, 0, 842, 594, 1.0); cpdf_import_jpeg($pdf,"image.jpg",10,10,0,300,100,0,0,1); cp

[PHP] Re: [PHP-XML-DEV] Re: [PHP] PHP5: ext/dom - set namespace of node manually

2004-02-16 Thread Rob Richards
From: Christian Stocker > > $node->setAttributeNS("http://www.w3.org/2000/xmlns/";, "xmlns:b", > > "http://www.somedomain.de/";); > > > IMHO, that would be very confusing. > > I liked the idea by vivian with a third optional namespaceURI argument > for the element object, so that at least you can

[PHP] Re: mail()

2004-02-16 Thread Manuel Lemos
Hello, On 02/16/2004 08:26 AM, Juan Torres wrote: I have a problem with mail() function. I'm using PHP with Windows 2000 Professional and Internet Information Server 5.0. My php code is: mail("[EMAIL PROTECTED]", "Prueba Envio Email PHP", "Linea 1\nLinea 2\nLinea 3"); And my browser shows: Warning

Re: [PHP] mail()

2004-02-16 Thread Chris Hayes
At 12:26 16-2-04, you wrote: Hi, I have a problem with mail() function. I'm using PHP with Windows 2000 Professional and Internet Information Server 5.0. My php code is: mail("[EMAIL PROTECTED]", "Prueba Envio Email PHP", "Linea 1\nLinea 2\nLinea 3"); And my browser shows: Warning: mail(): SMTP se

[PHP] Re: [PHP-XML-DEV] Re: [PHP] PHP5: ext/dom - set namespace of node manually

2004-02-16 Thread Christian Stocker
On 2/16/04 12:07 PM, Rob Richards wrote: Porting the setNamespace function to PHP5 would be nice. Another solution could be the possibility to append a namespace-node (is the domnamespacenode class currently used by any functions?) or the setAttribute checks wether some "xmlns"/"xmlns:" attribut

[PHP] mail()

2004-02-16 Thread Juan Torres
Hi, I have a problem with mail() function. I'm using PHP with Windows 2000 Professional and Internet Information Server 5.0. My php code is: mail("[EMAIL PROTECTED]", "Prueba Envio Email PHP", "Linea 1\nLinea 2\nLinea 3"); And my browser shows: Warning: mail(): SMTP server response: 550 5.7.1 Un

[PHP] Re: CDONTS Object

2004-02-16 Thread Manuel Lemos
Hello, On 02/16/2004 08:03 AM, Juan Torres wrote: I'm trying send emails from PHP with IIS (form Win32). With ASP, I used CDONTS component. How can I use CDONTS component from PHP? If you want to send messages with attachments or in HTML with embedded images, etc.., you may want to try this cla

Re: [PHP] CDONTS Object

2004-02-16 Thread Richard Davey
Hello Juan, Monday, February 16, 2004, 11:03:09 AM, you wrote: JT> I'm trying send emails from PHP with IIS (form Win32). The IIS part of the equation is irrelevant as the web server doesn't send the mail anyway. JT> With ASP, I used CDONTS component. JT> How can I use CDONTS component from PHP

Re: [PHP] CDONTS Object

2004-02-16 Thread Stuart
Juan Torres wrote: I'm trying send emails from PHP with IIS (form Win32). With ASP, I used CDONTS component. How can I use CDONTS component from PHP? RTFM! http://php.net/mail -- Stuart -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: [PHP-XML-DEV] Re: [PHP] PHP5: ext/dom - set namespace of node manually

2004-02-16 Thread Rob Richards
> Porting the setNamespace function to PHP5 would be nice. Another solution > could be the possibility to append a namespace-node (is the > domnamespacenode class currently used by any functions?) or the > setAttribute checks wether some "xmlns"/"xmlns:" attribute is set and > updates namespaceUri

Re: [PHP] ODBC with SQL Server

2004-02-16 Thread Juan Torres
Hi, Functions mssql_* and odbc_* don't allow write/read unicode fields. But ODBTP Extension allows it. The url is: http://odbtp.sourceforge.net/. Greetings, Juan Torres. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

php-general Digest 16 Feb 2004 10:59:52 -0000 Issue 2593

2004-02-16 Thread php-general-digest-help
php-general Digest 16 Feb 2004 10:59:52 - Issue 2593 Topics (messages 177752 through 177784): Re: Simple while loop skipping first row of array 177752 by: André Cerqueira Re: File Injection Bug 177753 by: André Cerqueira PHP and Word... 177754 by: Russell P Jones

[PHP] CDONTS Object

2004-02-16 Thread Juan Torres
Hello, I'm trying send emails from PHP with IIS (form Win32). With ASP, I used CDONTS component. How can I use CDONTS component from PHP? Thanks very much. Juan Torres. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] isset() question

2004-02-16 Thread Richard Davey
Hello Jason, Sunday, February 15, 2004, 7:44:06 PM, you wrote: >> I feel the book you're learning from might not be the best out there! >> Especially as it uses the horrible if : else : endif notation, >> includes code on the same line as the PHP tags themselves JW> What is horrible about that

RE: [PHP] optimizing tables

2004-02-16 Thread Daniel Perez Clavero
Hola Diana, $optimize_tabla_acl = "OPTIMIZE TABLE '$tbl_acl'"; mysql_query($optimize_tabla_acl,$conexion) or die("No he podido optimizar la tabla."); Salu2 -Original Message- From: Diana Castillo [mailto:[EMAIL PROTECTED] Sent: lunes, 16 de febrero de 2004 10:38 To: [EMAIL PROTECTED] Su

[PHP] optimizing tables

2004-02-16 Thread Diana Castillo
is there a way to optimize individual tables in a php script? -- Diana Castillo Global Reservas, S.L. C/Granvia 22 dcdo 4-dcha 28013 Madrid-Spain Tel : 00-34-913604039 ext 214 Fax : 00-34-915228673 email: [EMAIL PROTECTED] Web : http://www.hotelkey.com http://www.destinia.com -- PHP Gener

[PHP] Test, trying to send to NEWSGROUP

2004-02-16 Thread Jon Arne Jørgensen
-- best regards, Jon Arne -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: [PHP-XML-DEV] Re: [PHP] PHP5: ext/dom - set namespace of node manually

2004-02-16 Thread Vivian Steller
Christian Stocker wrote: > ... > Vivian, it's not possible the set the namespace according to the W3C > standard, except with createElementNS(). As Adam said, in PHP 4, there > was the option set_namespace, which isn't ported to PHP5 (yet). > > Maybe we should port that function as well, to allow

<    1   2