[PHP] Re: ezmlm-sub or alternative

2004-10-11 Thread Manuel Lemos
m management PHP class. It provides functions for subscribing, unsubscribing, counting subscribers and verify whether a subscriber is present in a list. It even provides a Web user interface and SOAP interface for remote list manipulation, but I guess you do not need that part. http://www.phpcla

Re: [PHP] How to implement mass emailing?

2004-10-12 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/metast

[PHP] Re: Are server classes possible?

2004-10-12 Thread Manuel Lemos
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 and other products http://www.phpclasses.org/reviews/ Metastorage - Data object relational mapping layer generator

[PHP] Re: Form Validation

2004-10-13 Thread Manuel Lemos
learning PHP, so don't have much experience on this. I am thinking using a form validator but not sure where I can get it. Any suggestions would be appreciated! You may want to try this popular forms generation and validation class: http://www.phpclasses.org/formsgeneration -- Regards, M

[PHP] Re: mail problems - phpinfo information

2004-10-13 Thread Manuel Lemos
e sendmail (emulation) program. /usr/sbin/sendmail is the location of the real sendmail program (not the qmail emulation). -- 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 pro

[PHP] Re: Getting info off an HTTPS page

2004-10-15 Thread Manuel Lemos
via SSL as you need in a very simple way and it figures which PHP extension to use to send your requests and collecting the responses if possible with your PHP setup. http://www.phpclasses.org/httpclient -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http

[PHP] Re: blank emails

2004-09-27 Thread Manuel Lemos
oblems you 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 relation

Re: [PHP] Re: Mass Mailing Using PHP

2004-09-27 Thread Manuel Lemos
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: PHP Data cache ideas/solutions

2004-09-29 Thread Manuel Lemos
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: cURL and Proxy Servers

2004-09-30 Thread Manuel Lemos
o try 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

[PHP] Re: mail() and Verizon

2004-09-30 Thread Manuel Lemos
age copies. -- 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/metast

[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
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
does 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 relat

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

2004-10-01 Thread Manuel Lemos
st raise the memory 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 rela

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

2004-10-01 Thread Manuel Lemos
agree. 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

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

2004-10-01 Thread Manuel Lemos
ction that does it and handle 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 rela

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

2004-10-01 Thread Manuel Lemos
orth doing in php-dev, I 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/

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

2004-10-01 Thread Manuel Lemos
se 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 writt

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

2004-10-01 Thread Manuel Lemos
g that way. -- 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-la

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

2004-10-01 Thread Manuel Lemos
s to me 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 writ

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

2004-10-01 Thread Manuel Lemos
't the goal to get PHP4/5 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 t

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

2004-10-03 Thread Manuel Lemos
s there is no way to recover from this situation that is evidently a bug of the script, not of 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/reviews

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

2004-10-03 Thread Manuel Lemos
hether it's avoidable by PHP? I do not think that there is a way for PHP to automatically fix a bug in your 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:

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

2004-10-03 Thread Manuel Lemos
stops you 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 - D

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

2004-10-03 Thread Manuel Lemos
aying 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

[PHP] Re: email templating system

2004-10-05 Thread Manuel Lemos
send personalized messages in HTML and/or text that use Smarty to compose their content: 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: UPS Online Tools and PHP?

2004-10-05 Thread Manuel Lemos
://www.phpclasses.org/shiptrack -- 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 Attachement Problems

2004-10-05 Thread Manuel Lemos
Like everything has been wiped off from them!! It sounds like it is arriving corrupted. You may want to try this other class you can used for the same purpose and AFAIK does not corrupt attachments: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP compo

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

2004-10-05 Thread Manuel Lemos
equested amount of memory is erroneous or not. I think you would do better if you complained to zlib developers than to PHP developers. I am sure that this problem does not affect only PHP but also other languages that use zlib for the same purposes. -- Regards, Manuel Lemos PHP Classes - Fr

[PHP] Re: How to implement mass emailing?

2004-10-07 Thread Manuel Lemos
class that provides several means to optimize bulk mailing campaigns. 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.phpclasse

Re: [PHP] How to implement mass emailing?

2004-10-07 Thread Manuel Lemos
s.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 layer generator http://www.meta-languag

[PHP] Re: sending mail -- nullmailer

2004-10-08 Thread Manuel Lemos
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 relational mapping layer generator http://www.meta-language.

[PHP] Re: http 411 error with cURL

2004-10-09 Thread Manuel Lemos
lets me use cUrl or fsockopen to establish HTTP connection and it takes care of sending the HTTP request correctly regardless of the way the request is sent. http://www.phpclasses.org/httpclient -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclas

Re: [PHP] guessing timezone based on country/state/city

2004-10-17 Thread Manuel Lemos
bject getTimeZoneOffset() function to fill in some form hidden field to pass the timezone offset to the server. It relies on Javascript but it does exactly what you want. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ PHP Re

Re: [PHP] guessing timezone based on country/state/city

2004-10-18 Thread Manuel Lemos
file.aspx -- 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.

[PHP] Re: Trre/Drop Down quick app for testing database tbls

2008-11-30 Thread Manuel Lemos
tation. Jump to slide 26 to check the slide about this plug-in. http://www.phpclasses.org/browse/video/3/package/1.html -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP G

RE: [PHP] Downloading file from local network machine

2008-12-05 Thread Manuel Lemos
stream warpper class is here: http://www.phpclasses.org/smb4php -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: imap_rfc822_parse_adrlist problem

2008-12-20 Thread Manuel Lemos
fore the update, I was running php 5.2.6 and there was no > problem either. Any ideas? Sometime ago I decided to not use IMAP library functions to parse e-mail addresses because it was not handling all sorts of addresses as it should. Nowadays I use an e-mail address parser class written in pure

[PHP] Re: imap_rfc822_parse_adrlist problem

2008-12-20 Thread Manuel Lemos
fore the update, I was running php 5.2.6 and there was no > problem either. Any ideas? Sometime ago I decided to not use IMAP library functions to parse e-mail addresses because it was not handling all sorts of addresses as it should. Nowadays I use an e-mail address parser class written in pure

Re: [PHP] Re: imap_rfc822_parse_adrlist problem

2008-12-21 Thread Manuel Lemos
l tested or it is not understood as a bug. >> Nowadays I use an e-mail address parser class written in pure PHP that >> comes with this MIME parser class: >> >> http://www.phpclasses.org/mimeparser > > Thanks, I'll have a look at that. -- Regards, Manu

[PHP] Re: Read Form values prior to submit?

2008-12-28 Thread Manuel Lemos
rn it too much) using a single definition of the validations you want. http://www.phpclasses.org/formsgeneration Here is a live demo form: http://www.meta-language.net/forms-examples.html?example=test_form -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP

[PHP] Re: turn shared hosting server to external image storage hosting

2008-12-28 Thread Manuel Lemos
tions.. Amazon released a CDN (Content Delivery Network) that expands S3 to serve files closer to different world regions. http://aws.amazon.com/cloudfront/ -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in

[PHP] Re: Architecture patterns in PHP

2008-12-28 Thread Manuel Lemos
cases in the scope of a well structured project and the methodology that describes how map use cases to PHP code for Web applications. http://www.meta-language.net/metastorage-example.html -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready t

Re: [PHP] Architecture patterns in PHP

2008-12-29 Thread Manuel Lemos
ps making things more organized. To sort out things that are more organized, some people use frameworks to help parsing URL parameters and route requests to different application modules. If you separate things, you do not need to build or learn any framework to handle things separately.

Re: [PHP] Architecture patterns in PHP

2008-12-29 Thread Manuel Lemos
separating concerns (processing, presentation, model data storage, distributed services, etc...) is a good thing to help keeping the project organization (and your mental sanity) as you project grows. You can separate concerns without using MVC, especial front controllers that go through many hops to sort

Re: [PHP] Architecture patterns in PHP

2008-12-29 Thread Manuel Lemos
utilities myself. Those may not be the best tools to tell you what PHP code is taking more time to execute, as they only show system calls. There are PHP profiler extension that give you a better vision of the actual PHP code that may be slowing down things. strace is more useful for PHP core devel

Re: [PHP] Architecture patterns in PHP

2008-12-30 Thread Manuel Lemos
r ORM runtime libraries to include. The generated code is self-contained, i.e. it does all that is necessary without runtime libraries to add overhead to the execution of the applications. In cases that it is not necessary to use persistent objects (because the objects are not going to be changed),

Re: [PHP] PHP telnet server

2008-12-30 Thread Manuel Lemos
, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Curl fiel Upload

2009-01-20 Thread Manuel Lemos
ly. When possible I use fsockopen as alternative and use this HTTP client class to submit any kind of HTTP requests. Take a look at the test_http_post.php to see how simple is to submit form with one or more file uploads. http://www.phpclasses.org/httpclient -- Regards, Manuel Lemos Find and

Re: [PHP] Mail subject encoding problem

2009-01-31 Thread Manuel Lemos
characters. If you are not sure on how to encode message headers with q-encoding, you may want to try this MIME message class. Take a look at the test_email_message.php example to learn how to send messages with non-ASCII characters on the headers or body. http://www.phpclasses.org/mimemessage

[PHP] Re: E-Mail Attachment Filename Encoding Problem

2009-02-16 Thread Manuel Lemos
ng. You may want to try this MIME message composing and sending class that encodes file name attachments properly when necessary: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP component

Re: [PHP] E-Mail Attachment Filename Encoding Problem

2009-02-17 Thread Manuel Lemos
Safari: >> http://www.rgraph.org (Updated February 14th) >> > > Can someone explain to me why pear mail_mime is not a good idea to use? I > noticed some comments like that a few times but no explanation The PHP world is very pragmatic. If it works for you, it should be good enough. Ot

[PHP] Re: Sending multipart/form-data request with PECL.

2009-03-04 Thread Manuel Lemos
ensions. I use this HTTP client class for emulating browser form submission. Take a look at the test_http_post.php that has examples of how to upload forms using POST requests: http://www.phpclasses.org/httpclient -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ P

Re: [PHP] Re: Sending multipart/form-data request with PECL.

2009-03-04 Thread Manuel Lemos
thing). A custom PECL > build is not an option, unfortunately. > > I'll have to check out the httpclient class that Manuel Lemos mentioned. Yes, the HTTP client class follows the same logic but has a variable named force_multipart_form_post that you can set to make it send multipart form pos

Re: [PHP] Re: Sending multipart/form-data request with PECL.

2009-03-04 Thread Manuel Lemos
gt; even though it has the capability of doing anything). A custom PECL >>> build is not an option, unfortunately. >>> >>> I'll have to check out the httpclient class that Manuel Lemos mentioned. >> Yes, the HTTP client class follows the same logic but has a va

[PHP] Re: Sending out large amounts of email

2009-03-05 Thread Manuel Lemos
class: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mail() is duplicating

2009-03-13 Thread Manuel Lemos
Could someone suggest what I might have wrong? Usually this happens when you have a To: header in the headers parameters. -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ --

[PHP] Re: Reading from a COM port in Windows blows up

2009-03-14 Thread Manuel Lemos
Hello, on 03/15/2009 01:56 AM Matt Neimeyer said the following: > $ComPort = fopen("COM1", "wb+"); I suspect all this does is opening a file named COM1 . Shouldn't that be "COM1:" instead of just COM1? -- Regards, Manuel Lemos Find and post P

[PHP] Re: Multithreading in PHP

2009-03-17 Thread Manuel Lemos
script that show progress of a task running on the server after the form is submitted. http://www.meta-language.net/forms-examples.html?example=test_ajax_form -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP

Re: [PHP] Re: mail() is duplicating

2009-03-17 Thread Manuel Lemos
g to post. I suspect that may happen with nervous users that double click form submit buttons. Usually I use this forms class that has a built-in feature to show a form resubmit confirmation message when the use uses the submit function more than once: http://www.phpclasses.org/formsgeneratio

Re: [PHP] Re: Multithreading in PHP

2009-03-19 Thread Manuel Lemos
i Manuel, ages I do not read you ( ages I do not post my classes in > phpclasses.org :-) ) Oh, yes, feel free to get back. Hopefully soon the PHPClasses site will share ad revenue with the best contributors! ;-) -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/job

[PHP] Re: Looking for PHP alternatives to mailman

2009-03-19 Thread Manuel Lemos
ubscribers and send messages to mailing lists or newsletters. http://www.phpclasses.org/pop3ml -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Multithreading in PHP

2009-03-23 Thread Manuel Lemos
Hello, on 03/23/2009 10:05 AM Igor Escobar said the following: > Great Project, Lemos. Thanks? > When you are thinking in show more exemples? Who? Me or Andrea? -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP comp

[PHP] Re: Form To Mail script generators for Linux

2009-03-23 Thread Manuel Lemos
PHP contact form solutions out there. You may want to take a look at these: http://www.phpclasses.org/formmakernprocessor http://www.phpclasses.org/emailform http://www.phpclasses.org/esiform http://www.phpclasses.org/contactform http://www.phpclasses.org/sendmail_class -- Regards, Manue

Re: [PHP] What is wrong with this code

2009-04-18 Thread Manuel Lemos
age be delivered to the remote recipient via SMTP. You may want to read a more complete explanation here: http://www.phpclasses.org/blog/package/14/post/1-Sending-messages-to-many-recipients-via-SMTP-in-PHP.html -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs

Re: [PHP] 800 pound gorilla

2009-04-20 Thread Manuel Lemos
t it costs money. That is business as usual, I am afraid. PostgreSQL people are celebrating as they always had a lot of envy of MySQL success. -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http:/

Re: [PHP] Suggestions of some good, simple file upload 'in progress' code?

2009-04-22 Thread Manuel Lemos
t working live: http://www.meta-language.net/forms-examples.html?example=test_upload_progress You may also want to watch this tutorial video: http://www.phpclasses.org/browse/video/1/package/1/section/plugin-upload-meter.html -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpc

[PHP] Re: Self-Process php forms or not?

2009-04-24 Thread Manuel Lemos
f you use the same script, if the form has invalid fields, you can present the form with the previously submitted values. -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- P

Re: [PHP] SMTP mail server

2009-04-24 Thread Manuel Lemos
ns exactly how mail messages are routed. Take a look at slide 13. http://www.phpclasses.org/browse/video/3/package/9.html -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -

[PHP] Re: E-Mail Verification - Yes, I know....

2009-04-28 Thread Manuel Lemos
uld be accepted later, which is usually what servers that implement greylisting cause. -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http

[PHP] Re: Newbie - Setting Up Some Basic Sendmail Scripts

2009-05-05 Thread Manuel Lemos
ou run PHP. In that case, you may want to read this article: http://www.phpclasses.org/blog/package/9/post/1-Sending-email-using-SMTP-servers-of-Gmail-Hotmail-or-Yahoo-with-PHP.html -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP

[PHP] Re: Mail subject encoding breaks

2009-05-11 Thread Manuel Lemos
at the examples test_email_message and test_multibyte_message.php . http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing Lis

Re: [PHP] Forms validation and creation- easier solution?

2009-05-22 Thread Manuel Lemos
Hello, on 05/20/2009 11:09 AM Paul M Foster said the following: > Both this class and Manuel Lemos' form generation class (from > phpclasses.org) will create beautiful forms for you. However, you may > find that the amount of [repetitive] typing you do will be equivalent or > gr

Re: [PHP] -less layouts; Ideas welcome

2009-05-22 Thread Manuel Lemos
mn have the same width. You loose the functionality of HTML table to auto-adjust the width according to their content. In the end you will have much more HTML tags and attributes than if you used simple HTML tables. -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/

Re: [PHP] Forms validation and creation- easier solution?

2009-05-22 Thread Manuel Lemos
ich must be loaded every time you > surf to a page for the first time. That used to be an issue in the 20th century in the PHP 3 days. Since PHP 4, the PHP code is no longer interpreted. The Zend engine compiles the PHP code in Zend op codes in the first stage. In the second stage the op codes ar

[PHP] Re: PHP vs ASP.NET

2009-05-31 Thread Manuel Lemos
ll on Windows and is sponsoring a lot of PHP activity. This other article talks about what is Microsoft so interested in PHP now. http://www.phpclasses.org/blog/post/85-What-is-Microsoft-up-to-with-PHP.html -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - F

Re: [PHP] mail body not decoded by base64_decode

2009-06-02 Thread Manuel Lemos
E message composing and sending class that can handle all those details. Take a look at the test_multibyte_message.php script. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP compone

[PHP] Re: Automated form generation?

2009-06-08 Thread Manuel Lemos
formsgeneration Here are live examples with several types of forms: http://www.meta-language.net/forms-examples.html For data entry, this example may be more like what you need: http://www.meta-language.net/forms-examples.html?example=test_scaffolding_input This is just for form handling, s

[PHP] Re: php applications

2009-06-08 Thread Manuel Lemos
For GUI based applications, there is PHP-Gtk for Mac like others have mentioned. -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://ww

[PHP] Re: Form handling

2009-06-10 Thread Manuel Lemos
, etc. > > Thoughts? You may want consider not reinventing the wheel. I use this popular forms generation and validation class since about 10 years now. It can deal with pretty much all you need now and probably later. http://www.phpclasses.org/formsgeneration Here are some live

Re: [PHP] socket communication programming

2009-06-13 Thread Manuel Lemos
s > > > what is the meaning of this string" GET / HTTP/1.0\r\nHost: > www.example.com\r\nAccept <http://www.example.com/r/nAccept>: */*\r\n\r\n" If that is regular HTTP, why don't you try an HTTP client class that lets you customize your request parameters like

Re: [PHP] Re: idiot proofing

2009-06-26 Thread Manuel Lemos
inputs, and save data to databases or any other type of storage. Take a look at this live example: http://www.meta-language.net/forms-examples.html?example=test_scaffolding_input The main forms class and the optional plug-ins are available from here: http://www.phpclasses.org/formsgeneration

[PHP] Re: IP to geo-location advice

2009-07-18 Thread Manuel Lemos
d.html -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] HTML text extraction

2009-08-21 Thread Manuel Lemos
function to regenerate the HTML. http://www.phpclasses.org/secure-html-filter -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Tidy on a shared host

2009-08-21 Thread Manuel Lemos
idates HTML against an eventually auto-detected DTD. It returns an array of tag and data elements that you can use to rebuild a valid HTML document using the RewriteElement function. http://www.phpclasses.org/secure-html-filter -- Regards, Manuel Lemos Find and post PHP jobs http://www.php

[PHP] Re: How do I extract link text from anchor tag as well as the URL from the "href" attribute

2009-08-21 Thread Manuel Lemos
of the link > (if it's an image tag, I would like a DOMElement for that). > Thanks You may want to try this HTML parser class that comes with filter class and an example script named test_get_html_links.php that does exactly what you ask. http://www.phpclasses.org/secure-html-filter -

[PHP] PHP book reviewers wanted

2007-02-04 Thread Manuel Lemos
a site subscriber of course): http://www.phpclasses.org/contribute.html If you have questions or comments, please read the longer version first: http://www.phpclasses.org/blog/post/60-User-submitted-book-reviews-and-package-required-PHP-versions.html -- Regards, Manuel Lemos Metastorage

[PHP] Re: Sending secure mail

2007-02-04 Thread Manuel Lemos
, I recommend that you use that class in conjunction with this other for composing and sending RFC compliant MIME message. It helps avoid problems that make message get trapped in spam filters: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos Metastorage - Data object relational m

[PHP] Re: php code to upload a url correctly

2007-02-04 Thread Manuel Lemos
ere you may find a tutorial video that explains all the features demonstrated by that example: http://www.phpclasses.org/browse/package/1/video/1/section/example-form.html -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer generator http://www.metastorage.net/ PH

Re: [PHP] PHP book reviewers wanted

2007-02-05 Thread Manuel Lemos
Hello, on 02/05/2007 02:09 PM tedd said the following: > At 1:05 AM -0200 2/5/07, Manuel Lemos wrote: >> Demonstrating good English writing skills and having published good book >> reviews in the past gets me preference. > > "gets me preference" ??? > > M

Re: [PHP] PHP book reviewers wanted

2007-02-05 Thread Manuel Lemos
all the time I invested in developing the review system. -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer generator http://www.metastorage.net/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://

Re: [PHP] PHP book reviewers wanted

2007-02-05 Thread Manuel Lemos
pay off. Right. Anyway, I am not talking about being Tech Reviewer of books that were not yet published. I am talking about published books, so there is not even a money compensation for people that publish reviews in the PHPClasses site. The only compensation is that reviewers will keep the re

Re: [PHP] PHP book reviewers wanted

2007-02-05 Thread Manuel Lemos
efits, it will provide an ad free site navigation, for a small monthly fee. I know that only those that real care about the site will adhere. But at least there will finally be an option for all those that avoid visiting the site because of the ads. -- Regards, Manuel Lemos Metastorage - Data objec

Re: [PHP] PHP book reviewers wanted

2007-02-07 Thread Manuel Lemos
S: He is a native speaker, it's just not English. :-) No offense was taken on my part. I am aware that the PHPClasses site is not perfect for everybody. So, when I mention something in public related to the site, I am used to get reactions that really do not favour the site. I do not take th

Re: [PHP] PHP book reviewers wanted

2007-02-07 Thread Manuel Lemos
time on it. It is a privilege for me to be able to work in my own project at full time. But obviously I have to keep it as a viable business too. That is why the site would have been closed if it were not the ads. -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer g

Re: [PHP] PHP book reviewers wanted

2007-02-07 Thread Manuel Lemos
lling stoopid. > > I even have all the facts in my brain to have not made that mistake, > had I matched up column M with row P... > > Sorry. No problem. No apologies are necessary. Nobody knows everything. Even if you knew it, it is ok to get confused once in a while. My memory used

[PHP] Re: Http Client in PHP connecting to a Digest authenticated server

2007-02-10 Thread Manuel Lemos
m", the username and password to get > authenticated and thereby do something like download files etc. Take a look at this HTTP client class: http://www.phpclasses.org/httpclient It supports Digest authentication via the SASL class library http://www.phpclasses.org/sasl -- Regards, Manu

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