[PHP] Re: PHP (anti) crash policy?

2004-10-03 Thread Manuel Lemos
to propose a patch to PHP developers and see if they find acceptable. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object

[PHP] Re: PHP (anti) crash policy?

2004-10-03 Thread Manuel Lemos
there was not enough memory. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator http://www.meta

[PHP] Re: PHP (anti) crash policy?

2004-10-01 Thread Manuel Lemos
the current process that is serving a PHP request will die when the PHP engine crashes. This is why Apache in the pre-fork model is more robust than multi-threaded servers like IIS. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP

[PHP] Re: PHP (anti) crash policy?

2004-10-01 Thread Manuel Lemos
to serve only one request. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator http

[PHP] Re: PHP (anti) crash policy?

2004-10-01 Thread Manuel Lemos
such a crash, it should be marked as bug (and solved)? Right. There are instructions on how to provide a backtrace so the bug report contains information useful enough for a developer to try locating and fixing the bug. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written

[PHP] Re: PHP (anti) crash policy?

2004-10-01 Thread Manuel Lemos
not crash the current process, even less the Web server. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational

[PHP] Re: PHP (anti) crash policy?

2004-10-01 Thread Manuel Lemos
limit setting? It would avoid making PHP exit. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer

[PHP] Re: PHP (anti) crash policy?

2004-10-01 Thread Manuel Lemos
. It's easily possible to recover from this error. Just return NULL and the gzinflate function will return false. If you think that is a good idea, why don't you just write a patch and discuss about it in php-dev mailing list? -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components

[PHP] Re: PHP (anti) crash policy?

2004-10-01 Thread Manuel Lemos
the situation within your PHP code? -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator

[PHP] Re: PHP (anti) crash policy?

2004-10-01 Thread Manuel Lemos
do not think that keep discussing it php-general is helping anybody. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object

[PHP] Re: PHP (anti) crash policy?

2004-10-01 Thread Manuel Lemos
it segmentation faults, that would crash *ONE* process, you only see an entry in the server error log, the child process would be restarted, but it still would not crash the whole server as you seem to be thinking. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written

[PHP] Re: PHP (anti) crash policy?

2004-10-01 Thread Manuel Lemos
. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator http://www.meta-language.net

[PHP] Re: PHP (anti) crash policy?

2004-10-01 Thread Manuel Lemos
that it is up to gzip libraries that PHP links to that need to be fixed, if possible, detecting data corruption and failing cleanly because it seems that PHP is not aware that the data is corrupted. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http

[PHP] Re: PHP (anti) crash policy?

2004-10-01 Thread Manuel Lemos
safe for multi-threaded servers too? AFAIK PHP runs safely in multi-threaded servers. What you can't expect is that PHP handles abnormal situations caused by flaws in the external libraries that PHP links with. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP

[PHP] Re: cURL and Proxy Servers

2004-09-30 Thread Manuel Lemos
this HTTP client class instead. It supports requests via proxies and does not use Curl. http://www.phpclasses.org/httpclient -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http

[PHP] Re: mail() and Verizon

2004-09-30 Thread Manuel Lemos
, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator http://www.meta-language.net/metastorage.html

[PHP] Re: PHP Data cache ideas/solutions

2004-09-29 Thread Manuel Lemos
for the first time or it has expired and leave it corrupted. This is very important, especially for busy sites. http://www.phpclasses.org/filecache -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books

Re: [PHP] Re: Mass Mailing Using PHP

2004-09-29 Thread Manuel Lemos
, we make our script sleep for a while after sending, say 1000 mails ? Right, you need to test with qmail-qstat how long it needs to rest to give qmail time to process all queued messages during a period. This is may also be important if your available disk space is limited. -- Regards, Manuel

[PHP] Re: blank emails

2004-09-27 Thread Manuel Lemos
are facing: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping

Re: [PHP] Re: Mass Mailing Using PHP

2004-09-27 Thread Manuel Lemos
to let the queue be fully processed and do not stall other programs. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object

[PHP] Re: mailing to hotmail

2004-09-24 Thread Manuel Lemos
to be properly composed to be accepted by Hotmail. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer

[PHP] Re: echo to rtf format

2004-09-24 Thread Manuel Lemos
Hello, On 09/24/2004 11:16 PM, John Taylor-Johnston wrote: I know there is a way to print to pdf. Wh«t about rtf? I'm getting real tired of doing it myself. Must be an easier answer? You may want to try this RTF generator class: http://www.phpclasses.org/rtfgenerator -- Regards, Manuel Lemos PHP

[PHP] Re: Recommendations for php email list managers?

2004-09-21 Thread Manuel Lemos
to different recipients. Just let me know which OS and local mailer system (sendmail, qmail, postfix, exim, IIS, Exchange, etc.) do you use so I can advise. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP

[PHP] Re: Recommendations for php email list managers?

2004-09-21 Thread Manuel Lemos
to send the messages via Postfix. Anyway, he did not say that he was using a platform that can run Postfix. If he is using Windows 2000 or later with IIS/Exchange, he can actually queue messages much faster than piping to postfix. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP

[PHP] Re: captcha lib

2004-09-20 Thread Manuel Lemos
=captchago_search=1 -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator http://www.meta

[PHP] Re: curl grabbing a website

2004-09-19 Thread Manuel Lemos
, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator http://www.meta-language.net/metastorage.html

[PHP] Re: A native Windows binding for PHP - released

2004-09-17 Thread Manuel Lemos
likely get more feedback about your extension as you will find there more people interested in this kind of things. Your extension would also be automatically available in binary format (DLL) for Windows. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http

Re: [PHP] Re: A native Windows binding for PHP - released

2004-09-17 Thread Manuel Lemos
. But I can't find a way to get fileinfo on windows. It's not in as a dll in PECL... If you do not find it in snaps.php.net, it may be because that extension is in beta stage. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews

[PHP] Re: A native Windows binding for PHP - released

2004-09-16 Thread Manuel Lemos
, comments, criticisms and suggestions are very welcome. This looks like a good extension for submitting to PECL: http://pecl.php.net/ -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other

[PHP] Re: need curl

2004-09-14 Thread Manuel Lemos
be possible to upgrade Curl without upgrading PHP itself. OTOH, if you tell what you would like to do with Curl, it may be possible to suggest an alternative solution that does not require upgrading curl. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http

[PHP] Re: Weird numbers around HTTP response body

2004-09-13 Thread Manuel Lemos
. Those numbers are part of the chunked transfer encoding of HTTP 1.1. You may want to take a look at this HTTP client class to see how they should be interpreted to read this kind of HTTP encoded response. http://www.phpclasses.org/httpclient -- Regards, Manuel Lemos PHP Classes - Free ready to use

[PHP] Re: performance hit using imagecreatetruecolor

2004-09-13 Thread Manuel Lemos
for dealing with concurrency and prevent the eventual corruption of cache files when more than user is requesting a given thumbnail with cache files that needs to be generated or updated . http://www.phpclasses.org/filecache -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written

[PHP] Re: Instant private messenger

2004-09-07 Thread Manuel Lemos
-- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator http://www.meta-language.net

[PHP] Re: How develop reports in MS WORD?

2004-09-04 Thread Manuel Lemos
that obviously MS Word supports. In that case you may want to try this RTF document generator class that lets you convert a subset of HTML tags to RTF: http://www.phpclasses.org/rtfgenerator -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP

[PHP] Re: can PHP talk to mail server?

2004-09-04 Thread Manuel Lemos
use this POP3 class for that very same purpose: http://www.phpclasses.org/pop3class -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage

Re: [PHP] Handling XML output in a slim way

2004-09-02 Thread Manuel Lemos
encoded and nicely indented according to your specifications. It does not requere any special extension. http://www.phpclasses.org/xmlwriter -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other

Re: [PHP] Newbie: Validate Required Form Fields

2004-09-02 Thread Manuel Lemos
and validation class using hidden fields to pass validated data to next page. http://www.phpclasses.org/formsgeneration You may also use in conjunction this multi-page forms class that seems to do more like what you need: http://www.phpclasses.org/multipageforms -- Regards, Manuel Lemos PHP Classes

Re: [PHP] Regex for Validating URL

2004-09-02 Thread Manuel Lemos
type it all. http://www.phpclasses.org/formsgeneration -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational

[PHP] Re: Form Spoofing - How?

2004-08-31 Thread Manuel Lemos
to get started on this? You may want to try this HTTP client class. I let you submit forms including uploading files if necessary. It can collect and send back cookies as well handle redirection automatically for you. http://www.phpclasses.org/httpclient -- Regards, Manuel Lemos PHP Classes - Free

[PHP] Re: User email changes verification strategy?

2004-08-29 Thread Manuel Lemos
. This prevents that any user forge e-mail address change request URLs. If the combination of the secret key and the new address do not match the token sent. If you are not a subscriber, subscribe in http://www.phpclasses.org/ and try it yourself to see it working in practice. -- Regards, Manuel Lemos

[PHP] Re: HTTP_POST Intermittent Problem

2004-08-26 Thread Manuel Lemos
, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator http://www.meta-language.net/metastorage.html -- PHP

[PHP] Re: Problem using fread with https

2004-08-26 Thread Manuel Lemos
enabled in your configuration. Anyway, you may want to try this other class that can use Curl instead of PHP SSL support to access SSL HTTP servers: http://www.phpclasses.org/httpclient -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http

[PHP] Re: Instant message

2004-08-22 Thread Manuel Lemos
://www.phpclasses.org/browse/class/66.html -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator http

[PHP] Re: Nonstandard SMTP line terminator

2004-08-19 Thread Manuel Lemos
function named sendmail_mail() that works exactly like the mail() function but works directly with sendmail and lets you change tune the options for bulk mailing as it would be useful for you. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components

[PHP] Re: Mail module array limits

2004-08-17 Thread Manuel Lemos
advise. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator http://www.meta

[PHP] Re: CURL question, cutting off custom request

2004-08-16 Thread Manuel Lemos
. If it is in the request headers, you need to use q-encoding to encode them as ASCII. If it is in the request body, it should not be a problem, although I think you should specify the character set in the Content-Type header. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components

[PHP] Re: mail() on *nix using ssmtp or an external smtp server?

2004-08-16 Thread Manuel Lemos
, but it lets you send messages via an SMTP server. It can even let you configure authentication credentials if you are required to authenticate to relay on the SMTP server. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http

[PHP] Re: Email Address Testing

2004-08-13 Thread Manuel Lemos
that does precisely what you want: http://www.phpclasses.org/emailvalidation -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data

[PHP] Re: mail() and the From: attribute...

2004-08-13 Thread Manuel Lemos
the Return-Path header with the bounce address and each of the classes takes care of making it the real return path address. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews

[PHP] Re: Voting PHP apps

2004-08-07 Thread Manuel Lemos
for that purpose: http://www.phpclasses.org/browse/class/31.html -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational

[PHP] Re: Validating Dynamic Checkboxes

2004-08-06 Thread Manuel Lemos
://www.phpclasses.org/formsgeneration -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator http

Re: [PHP] Re: Validating Dynamic Checkboxes

2004-08-06 Thread Manuel Lemos
the exact same type of validation that you want: http://www.phpclasses.org/formsgeneration Hi Manuel, I'm not certain I understand what you mean by quote the whole name. The name of the input needs to be quoted (and eventually escaped) and used as an index string. Also, there are a lot

[PHP] Re: UML

2004-07-30 Thread Manuel Lemos
Hello, On 07/30/2004 04:14 PM, [EMAIL PROTECTED] wrote: Now that PHP is OOP with 5.0 is there a UML tool dedicated to PHP? Umbrello already supported PHP before PHP 5. http://www.umbrello.org/ -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http

[PHP] Re: A native Windows binding for PHP

2004-07-30 Thread Manuel Lemos
would either provide you a user base to test it and suggest improvement as well a potential client base to provide you hints on possible products or services they would be willing to pay. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org

[PHP] Re: A native Windows binding for PHP

2004-07-29 Thread Manuel Lemos
closed source extensions or tools that make the development of your library more powerful and useful so it will be an advantage for people to buy those extensions and tools from you instead of developing themselves. Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net

[PHP] Re: Sendmail Return-Path

2004-07-27 Thread Manuel Lemos
Feel free to mail me privately if you need further help, so you do not have to disclose in public private details of your environment. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other

[PHP] Re: Embedding JavaScript into a PHP generated web page

2004-07-25 Thread Manuel Lemos
to take a look at this forms generation and validation class that is meant for performing client and server side forms validation. It generates Javascript to perform the client side validation as you want. http://www.phpclasses.org/formsgeneration -- Regards, Manuel Lemos PHP Classes - Free ready

[PHP] Re: Quickbooks

2004-07-23 Thread Manuel Lemos
Hello, On 07/23/2004 03:00 PM, Ed Lazor wrote: Has anyone had success accessing Quickbooks from PHP? Class: rds http://www.phpclasses.org/qbrds You may want to try this class that integrates with Quickbooks Remote Data Services API. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP

[PHP] Re: smpt server requiring authentication

2004-07-22 Thread Manuel Lemos
: http://www.phpclasses.org/mimemessage You also need this other class for the actual SMTP delivery: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other

Re: [PHP] what is difference between php and perl

2004-07-22 Thread Manuel Lemos
. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator http://www.meta-language.net

Re: [PHP] The Mail Server

2004-07-21 Thread Manuel Lemos
, but what about the Mail Server? How does the mail() in the PHP work... It requires a Mail Server? If so, how can I install/configure such a mail server so that the mail() can work from our own server machine? I think there is sendmail for OS X now. -- Regards, Manuel Lemos PHP Classes - Free ready to use

[PHP] Re: Intant Messengers and PHP

2004-07-21 Thread Manuel Lemos
several solutions for at lease some of those systems: http://www.phpclasses.org/browse/class/66.html -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org

AW: [PHP] Sending the output of a web page to a printer

2004-07-21 Thread Manuel Lemos
protocol. In that case, Victor Varela wrote a popular Samba client class in PHP that you may try to use: http://www.phpclasses.org/smbwebclient -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books

[PHP] Re: PHP Bespoke Email Solutions

2004-07-21 Thread Manuel Lemos
messages, you can make the messages go to an e-mail address associated to a POP3 mailbox and regularly poll that mailbox with for instance a class like this: http://www.phpclasses.org/pop3class -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http

Re: [PHP] The Mail Server on Mac OS X

2004-07-21 Thread Manuel Lemos
in my PHP.INI... So, that should be no problem because postfix provides a sendmail emulation wrapper program. You just need to locate its path and set it in the php.ini file. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP

Re: AW: [PHP] Sending the output of a web page to a printer

2004-07-21 Thread Manuel Lemos
If it is an HTML page generated by something else, you may want to try this HTML2PS Perl tool that comes as standard in many Linux/Unix distributions: http://user.it.uu.se/~jan/html2ps.html -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http

Re: AW: [PHP] Sending the output of a web page to a printer

2004-07-21 Thread Manuel Lemos
or have it converted by another program. See my other reply on how to generate Postscript from PHP. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org

Re: AW: [PHP] Sending the output of a web page to a printer

2004-07-21 Thread Manuel Lemos
(no human intervention). -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator http://www.meta

Re: [PHP] Re: Embedded Email Directives

2004-07-19 Thread Manuel Lemos
before July 2003. Maybe you were under cover! ;-) -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping

Re: [PHP] Re: Embedded Email Directives

2004-07-19 Thread Manuel Lemos
Hello, On 07/19/2004 11:45 AM, Justin Patrin wrote: As you can see, Curt, and others, it's impossible to talk to Manuel as he has an obvious bias for his own site and always assumes that anything you say is an attack on him or his site personally. He doesn't read what you write and says the same

Re: [PHP] Embedded Email Directives

2004-07-19 Thread Manuel Lemos
this case, the mail() function always worked for me. Nah, the mail function does not have bugs, even less it does wrong filtering. Ask Curt, and he'll tell you it is all Manuel Lemos imagination trying to push you to his site! (sorry couldn't resist! ;-) ) Now seriously, apart from the actual bug

[PHP] Re: PHP Form Field Validation

2004-07-18 Thread Manuel Lemos
with the form field's name maybe. Any suggestions...? You may want to try this class that can generate forms that can validate either on the server side or client side: http://www.phpclasses.org/formsgeneration -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http

Re: [PHP] Re: Embedded Email Directives

2004-07-18 Thread Manuel Lemos
Award getting more recognition and prizes every month. http://www.phpclasses.org/award/innovation I am serious, welcome aboard! -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http

Re: [PHP] Re: Embedded Email Directives

2004-07-18 Thread Manuel Lemos
://www.phpclasses.org/award/innovation I am serious, welcome aboard! haha.. aboard the anti manuel lemo's bandwagon, of course. May I send you an invitation in Orkut to join the PHP Classes site community there? I have sent so many invitations to the PHP Classes users that it would not be a problem to send one

Re: [PHP] Re: Embedded Email Directives

2004-07-17 Thread Manuel Lemos
not aware. What I know is that when sendmail is not available, PHP calls Win32 code to send the message relaying in an SMTP server. There is plenty of filtering done there as you may see when reading the source. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP

[PHP] Re: easiest way to CREATE XML with PHP5?

2004-07-17 Thread Manuel Lemos
this: You may want to try this class. It generates automatically indented XML documents as nicely as you present. http://www.phpclasses.org/xmlwriter -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books

[PHP] Re: Embedded Email Directives

2004-07-16 Thread Manuel Lemos
or other programs. However, if you use the mail() function it may do some filtering on its own. Anyway, you may want to take a look at this SMTP class to check how it filters message lines sent by SMTP: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP

Re: [PHP] Re: Embedded Email Directives

2004-07-16 Thread Manuel Lemos
, if you use the mail() function it may do some filtering on its own. The mail() function does not do any filtering. Read the source first to learn more about it. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews

[PHP] Re: File locking in PHP???

2004-07-15 Thread Manuel Lemos
) good example of script just in case.. You may want to take a look at this arbitrary content caching class. It uses file locks to prevent that multiple scripts attempt to access a cache file when it is being updated. http://www.phpclasses.org/filecache -- Regards, Manuel Lemos PHP Classes - Free

[PHP] Re: Email Forms

2004-07-15 Thread Manuel Lemos
this for the actual SMTP delivery: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object

[PHP] Re: Simple POP3 mailbox checker script

2004-07-14 Thread Manuel Lemos
with an examples that demonstrates exactly how to do that: http://www.phpclasses.org/pop3class -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews

[PHP] Re: using Cc: with mail()

2004-07-14 Thread Manuel Lemos
it is working correctly. This looks like a bug of the mail() function. Have you tried separating the recipients in Cc: with , instead of ; and also add a space between Cc: and the first address? -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org

Re: [PHP] Re: using Cc: with mail()

2004-07-14 Thread Manuel Lemos
. ';' is not a proper seperator for addresses. see rfc2822 I did not say that is the bug of the mail() function. In case you are not aware, the mail function has many different bugs depending on the PHP version and the system it is used in. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components

[PHP] Re: Sending email without an email server

2004-07-13 Thread Manuel Lemos
. http://www.phpclasses.org/phpresolver What you want is not conventional but it can be done thanks to all these classes. Just let me know if you need assistance to set them up. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP

[PHP] Re: How to make HTTP call to another address?

2004-07-13 Thread Manuel Lemos
to the browser making the original PHP request. You may want to try this HTTP client class. If necessary it supports cookies and submitting forms with field values via POST if you want: http://www.phpclasses.org/httpclient -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components

[PHP] Re: sending attachments

2004-07-08 Thread Manuel Lemos
may want to try this class that simplifies composing complex messages. It also comes with examples and extensive documentation that explain how compose the messages properly without much work. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP

[PHP] Re: post without form

2004-07-08 Thread Manuel Lemos
class that makes it easy to do that and comes with an example: http://www.phpclasses.org/httpclient -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org

Re: [PHP] file locking over NFS?

2004-07-06 Thread Manuel Lemos
no to This is not accurate. There NFS systems that were meant to support locking. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational

[PHP] Re: E-bay API and PHP

2004-07-06 Thread Manuel Lemos
delievey. You may want to try this class that is exactly meant for that: Class: eBayAPI http://www.phpclasses.org/ebayapi -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http

Re: [PHP] file locking over NFS?

2004-07-06 Thread Manuel Lemos
Hello, On 07/06/2004 12:56 PM, Kyle wrote: Hi Manuel, Do you mean I can just use flock over NFS ? It depends. You need to check whether the NFS server that you use supports it. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP

[PHP] Re: Obtain NT Logon

2004-07-03 Thread Manuel Lemos
Windows NT domain authentication for serving that PHP script, I suppose you can get the user with GetEnv(LOGON_USER) . -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http

[PHP] Re: Best way to send XML via HTTPS POST

2004-07-02 Thread Manuel Lemos
-- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator http://www.meta-language.net

[PHP] Re: Best way to send XML via HTTPS POST

2004-07-02 Thread Manuel Lemos
Hello, On 07/02/2004 07:18 PM, Shaun Fanning wrote: Thanks Manuel, I will take a look at it. I do have complete control over the box this is running on, so I can rebuild PHP with support for CURL and OpenSSL if necessary. My main concern is having a robust approach that is fast and efficient under

[PHP] Re: mail program

2004-06-28 Thread Manuel Lemos
mailer sendmail, qmail, etc? If it is Windows, which version it is? Depending on the answers to these questions, there are optimizations that can be made to drastically boost the mailing performance. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http

[PHP] Re: pcntl_fork and classes

2004-06-28 Thread Manuel Lemos
request. Class: Thread http://www.phpclasses.org/php_fork -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational

Re: [PHP] Re: MHTML in email

2004-06-24 Thread Manuel Lemos
-- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator http://www.meta-language.net

[PHP] Re: Multipart Email Problem

2004-06-24 Thread Manuel Lemos
HTML messages with alternative text parts. The class has some workarounds to some of the mail() function problems. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP

[PHP] Re: MHTML in email

2004-06-23 Thread Manuel Lemos
to take a look at this class that lets you compose MHTML messages easily: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other products http

[PHP] Re: Please Send MIME Script

2004-06-22 Thread Manuel Lemos
and text. You may achieve that using this class. It comes with examples for doing exactly what you ask. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Reviews - Reviews of PHP books and other

[PHP] Re: Printing invoices

2004-06-20 Thread Manuel Lemos
data, then spit out each occurrance to a printer. If HTML would not do, how about sending in PDF as attachament? You may want to try this class that can either send HTML messages or messages with attachments: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos PHP Classes - Free ready

<    2   3   4   5   6   7   8   9   10   11   >