Re: [PHP] $_POST Array and Cleaning

2008-01-22 Thread Manuel Vacelet
uld be made into > $whatever = "whatever", then i can clean for sql injection and xss. > any ideas here? Consider usage of a 3rd party lib like Inspekt: http://code.google.com/p/inspekt/ -- Manuel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Question About Blocking Email Addresses in Forms

2008-01-18 Thread Manuel Lemos
l = $_POST['email']; if(substr($email, -strlen($block)) === $block) { do whatever you want to not accept this address; } If you iterate this code over a list of blocked domains taken from an array, you have implemented a generalized black list. -- Regards, Manuel Lemos PHP

Re: [PHP] SMTP vs mail()

2008-01-17 Thread Manuel Lemos
m, although for now it is not needed to work distributedly. In this blog post you can read all the details. http://www.phpclasses.org/blog/post/65-8-defensive-programming-best-practices-to-prevent-breaking-your-sites.html -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http

Re: [PHP] Re: [QUESTION] MAIL: Send a NOOP instead of DATA

2008-01-15 Thread Manuel Lemos
ectively. You're not going to please everyone, it's fruitless to > try. You are missing my point. One thing is disliking somebody's work for whatever reasons, another this is acting disrespectfully and call it crappy in a public forum. If you don't know how to act respectfu

Re: [PHP] Re: [QUESTION] MAIL: Send a NOOP instead of DATA

2008-01-15 Thread Manuel Lemos
eir problems? > Not to bash on Manuel, but I find phpclasses to be littered with lots > of crappy code and is too ad-laden and hard to use for me to bother. I think your opinion about the site is totally off-topic and does not add anything to this thread. Nobody likes advertising, startin

Re: [PHP] Re: [QUESTION] MAIL: Send a NOOP instead of DATA

2008-01-15 Thread Manuel Lemos
eir problems? > Not to bash on Manuel, but I find phpclasses to be littered with lots > of crappy code and is too ad-laden and hard to use for me to bother. I think your opinion about the site is totally off-topic and does not add anything to this thread. Nobody likes advertising, startin

[PHP] Re: [QUESTION] MAIL: Send a NOOP instead of DATA

2008-01-15 Thread Manuel Lemos
roperly. If so, the theory above is likely to be the case. >> >> http://www.phpclasses.org/smtpclass >> >> If you need authentication, you also need this: >> >> http://www.phpclasses.org/sasl >> >> > > Thanks Manuel, I will try this. -- Re

[PHP] Re: [QUESTION] MAIL: Send a NOOP instead of DATA

2008-01-15 Thread Manuel Lemos
connection opened. You may want to try this SMTP class that is known to work correctly according to the mail standards. See if you can send the message properly. If so, the theory above is likely to be the case. http://www.phpclasses.org/smtpclass If you need authentication, you also need this

Re: [PHP] SMTP vs mail()

2008-01-15 Thread Manuel Lemos
ertainly the > case for postfix. qmail too. Sendmail can be configured to just queue the messages too but that is not its default configuration. -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP comp

Re: [PHP] Re: SMTP vs mail()

2008-01-15 Thread Manuel Lemos
>>> http://www.sendmail.org/~ca/email/sm-X/design-2005-05-05/main/node3.html#SECTION00310000 >>> >>> http://www.nrg4u.com/qmail/the-big-qmail-picture-103-p1.gif >> I can't see anywhere in that where it says a new process is spawned >> for

Re: [PHP] Re: SMTP vs mail()

2008-01-15 Thread Manuel Lemos
ver source once in the past. I suppose it hasn't changed that much. Last time I analyzed it I could see it reads each message from the TCP socket into a file passing it through eventual mail filters (miltering) and in the end of each message it forks the queue manager process to inject

Re: [PHP] Re: SMTP vs mail()

2008-01-14 Thread Manuel Lemos
html#SECTION0031 http://www.nrg4u.com/qmail/the-big-qmail-picture-103-p1.gif -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ 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: php developers wanted

2008-01-14 Thread Manuel Lemos
http://www.phpclasses.org/professionals/country/hu/ Here you can find much more from other countries: http://www.phpclasses.org/professionals/ -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components

[PHP] Re: anaylyze email

2008-01-13 Thread Manuel Lemos
il standards. Take a look in particular at the test_message_decoder.php and test_parse_addresses.php example scripts. http://www.phpclasses.org/mimeparser -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP comp

Re: [PHP] Re: SMTP vs mail()

2008-01-12 Thread Manuel Lemos
ut I never heard of TCP sockets being faster than Unix domain sockets. Every time I install MySQL on the same machine as the Web server, I disable networking to make it use Unix domain sockets, for either greater speed and security. -- Regards, Manuel Lemos PHP professionals looking for PH

Re: [PHP] Re: SMTP vs mail()

2008-01-11 Thread Manuel Lemos
planet, well, yeah, then you > got a problem right there... What SMTP server? The final SMTP server associated to the domain of the recipient? You know you do not need a SMTP server to send messages. You just need an MTA (Mail Transfer Agent). Once you queue the message in the MTA queue, it will

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Manuel Lemos
tead of Qmail sendmail wrapper that is used by the mail function by default. Actually I use the MIME message package that comes with drivers specialize in qmail, sendmail, SMTP and mail. Each driver carries its bag of tricks to optimize deliveries among other options to speedup bulk-mailing in gene

Re: [PHP] SMTP vs mail()

2008-01-11 Thread Manuel Lemos
s message composing and sending package class. It provides some options to optimize the message delivery back end to speed up message queueing. The sendmail backend takes great advantage of these options. Take a look in particular at the script test_personalized_bulk_mail.php . http://www.ph

Re: [PHP] Re: SMTP vs mail()

2008-01-11 Thread Manuel Lemos
o queue the messages (instead of attempting to deliver them) you will always be much faster queueing messages. Just watch out your server disk space and CPU when you are attempting to deliver too many messages. -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.ph

[PHP] Re: SMTP vs mail()

2008-01-11 Thread Manuel Lemos
Linux/Unix, mail() uses sendmail or equivalent programs. These programs use pipes to communicate, which are much faster than using SMTP TCP sockets. If you have your sendmail equivalent program properly configured, no SMTP connection is used when queueing messages using the sendmail program. -- Reg

[PHP] Re: PHP MS-Word plugin

2008-01-10 Thread Manuel Lemos
Windows as they need COM objects. Others just generate XML/HTML that can pretend to be Word documents if you save the document files with the .doc extension. http://www.phpclasses.org/search.html?words=msword&go_search=1 -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http:

[PHP] Re: Dependant listboxes

2008-01-10 Thread Manuel Lemos
er variants that support many databases, including Oracle, using either the Metabase or PEAR::MDB2 database independent APIs. Here you may watch a tutorial video that explains about this and other plug-ins of this forms class: http://www.phpclasses.org/browse/video/1/package/1/section/plugin-li

[PHP] Re: login and read ad email

2008-01-06 Thread Manuel Lemos
s and with just a few more lines it will tell you if it is a text message, HTML message, extract any attachments, etc. http://www.phpclasses.org/mimeparser -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free r

[PHP] Re: can't figure out proper format for c:\ path for curl upload

2008-01-04 Thread Manuel Lemos
PHP server? When I use Curl I prefer composing a RAW HTTP request because I am sure it will work as intended. Whenever possible I prefer using fsockopen connections. In any case I use this HTTP client request class that wraps everything and supports form submission with file upload as you need: htt

[PHP] Re: read email

2008-01-01 Thread Manuel Lemos
associate a POP3 mailbox to the address you are receiving e-mail and the use a POP3 client class like this to retrieve the e-mail messages you want. http://www.phpclasses.org/pop3class -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer generator http://www.metastorage.

[PHP] Filter Input: Inspekt

2007-11-20 Thread Manuel Vacelet
oper to show clear intent. It seems very interesting unfortunately I didn't see any discussion channel attached to this project and the project seems rather young. So it's hard to tell if this is an active project we can rely on for a long term usage. Maybe some of you already use it ?

Re: [PHP] file_exists, is_readable & effective UID/GID

2007-10-24 Thread Manuel Vacelet
On 10/24/07, Jim Lucas <[EMAIL PROTECTED]> wrote: > Daniel Brown wrote: > > On 10/24/07, Manuel Vacelet <[EMAIL PROTECTED]> wrote: > >> Hi all, > >> > >> file_exists and is_readable perfom there test with real UID/GID. > >> Is there any f

[PHP] file_exists, is_readable & effective UID/GID

2007-10-24 Thread Manuel Vacelet
Hi all, file_exists and is_readable perfom there test with real UID/GID. Is there any functions that tests file existance with effective UID/GID ? Note: stat is not an option because it raises an E_WARNING if the file is not readable. Thanks, Manuel -- PHP General Mailing List (http

Re: [PHP] Filter input

2007-10-11 Thread Manuel Vacelet
On 10/11/07, Jim Lucas <[EMAIL PROTECTED]> wrote: > What are you wanting to validate? > > Do you want a package/class/function set that when called will validate > different types of input? > Email, string, int, etc... Basically yes. I want to validate: - type: (string, int, float, ..) - characte

[PHP] Filter input

2007-10-11 Thread Manuel Vacelet
alidate input (need to declare each element before, access to invalid element not easy). - PHP Filter: * Require php 5.2 * As it's embedded in the php core, if there is a security hole we need to wait for a new php version to fix the bug. Is there any other library I need to investigate ? Wh

[PHP] Re: cant mail

2007-09-07 Thread Manuel Lemos
p script: http://www.phpclasses.org/mimemessage You also need these other classes to perform authentication through SMTP: http://www.phpclasses.org/smtpclass http://www.phpclasses.org/sasl -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer generator h

[PHP] Re: filter input; escape output; Email Text

2007-07-21 Thread Manuel Lemos
sing class to encode your message headers properly. This class also escapes properly line breaks in headers. Malicious line breaks are used by spammers to attack form mail like scripts. They inject line breaks to insert new headers to the message that can make the messages be sent to other addresses.

[PHP] Re: Save email as .eml file

2007-07-21 Thread Manuel Lemos
e in .eml format as a text string. http://www.phpclasses.org/mimemessage -- 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 Mai

[PHP] Re: Upload Tracker.

2007-07-17 Thread Manuel Lemos
the class from here: http://www.phpclasses.org/formsgeneration -- 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://ww

[PHP] Re: Dynamic refresh dropdown list

2007-07-17 Thread Manuel Lemos
wnload the forms class from here: http://www.phpclasses.org/formsgeneration -- 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 Ma

[PHP] Re: simple OCR in php

2007-06-29 Thread Manuel Lemos
help locate the Invoice number. Can anybody tell > me of any tools out there that can do this? I think you are looking for something like this: http://www.phpclasses.org/phpocr -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer generator http://www.metastorage.net/

[PHP] Re: Handling animated GIFs with GD?

2007-06-29 Thread Manuel Lemos
Hello, on 06/26/2007 06:38 AM Tijnema said the following: > Is it possible to parse animated GIFs with GD, just frame by frame? Try Laszlo Zsidi GIF animation classes: http://www.phpclasses.org/gifmerge http://www.phpclasses.org/gifsplit -- Regards, Manuel Lemos Metastorage - Data obj

[PHP] Re: cURL: multipart/form-data POST request with empty file part

2007-05-05 Thread Manuel Lemos
es emulating Web forms. http://www.phpclasses.org/httpclient -- 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://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Bounce composition

2007-05-02 Thread Manuel Lemos
Sorry, I meant test_forwarding_message.php example script. on 05/03/2007 03:31 AM Manuel Lemos said the following: > Hello, > > on 05/02/2007 03:11 PM Richard Lynch said the following: >> Does anybody have or know of a good simple PHP script that can take an >> email as an

[PHP] Re: Bounce composition

2007-05-02 Thread Manuel Lemos
erate RFC compliant bounce message. Just let me know if you would like me to hack it to generate bounces. -- 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.

[PHP] Re: PHP Dynamic Form Generator

2007-04-16 Thread Manuel Lemos
w.meta-language.net/forms-examples.html?example=test_form or look at this tutorial video that explains the features employed in the example above: http://www.phpclasses.org/browse/video/1/package/1/section/example-form.html -- Regards, Manuel Lemos Metastorage - Data object relational mappi

[PHP] Re: post via text message?

2007-04-16 Thread Manuel Lemos
es quoting the original message http://www.phpclasses.org/mimemessage -- 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 Mail

[PHP] Re: SQL Source Control

2007-04-11 Thread Manuel Lemos
n format. Metabase is available here: http://www.phpclasses.org/metabase Here you may also find some documentation: http://www.meta-language.net/documentation.html#metabase -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer generator http://www.metastorage.net/ PHP Classes - Free rea

[PHP] Re: advice on sql injection/XSS prevention

2007-04-05 Thread Manuel Lemos
ok at this article. It explains the security problems of publishing unaudited HTML and how XSS can be prevented even without filtering. http://www.phpclasses.org/blog/post/55-Improved-browsing-and-cross-site-scripting-prevention.html -- Regards, Manuel Lemos Metastorage - Data object relational mappin

[PHP] Re: advice on sql injection/XSS prevention

2007-04-05 Thread Manuel Lemos
ok at this article. It explains the security problems of publishing unaudited HTML and how XSS can be prevented even without filtering. http://www.phpclasses.org/blog/post/55-Improved-browsing-and-cross-site-scripting-prevention.html -- Regards, Manuel Lemos Metastorage - Data object relational mappin

Re: [PHP] Re: CURL questions

2007-03-29 Thread Manuel Lemos
tion. It seems to send some output to stderr. stderr usually goes to Web server error log. But how can we capture that output from a PHP script and display it? -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer generator http://www.metastorage.net/ PHP Classes - Free ready

[PHP] Re: CURL questions

2007-03-29 Thread Manuel Lemos
rd to tell because curl does not output any debugging information. You may want to try this other HTTP client class that can provide debug output, so you can see what exactly going on: http://www.phpclasses.org/httpclient -- Regards, Manuel Lemos Metastorage - Data object relational mapping

Re: [PHP] Out source files

2007-03-21 Thread Manuel Vacelet
2007/3/21, Richard Lynch <[EMAIL PROTECTED]>: On Tue, March 20, 2007 4:37 am, Manuel Vacelet wrote: > 2007/3/20, Richard Lynch <[EMAIL PROTECTED]>: >> One common pattern in PHP is to not put the file in the web tree at >> all, and write a PHP script with 'readfi

[PHP] Re: PHP mail() problem

2007-03-20 Thread Manuel Lemos
ternative parts. This is all a bit complicated to do with a small script like you have. It is much simpler to use ready to use components to do the hard work of message assembly for you. I use this MIME message class. It can handle all you need including non-ASCII character encoding. Take a look a

Re: [PHP] Out source files

2007-03-20 Thread Manuel Vacelet
ead mode) because the user who runs apache have to be able to read them. There are probably other things I don't imagine but I think the usage of another server to host data is a good approach. Regards, Manuel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: time or date picker ?

2007-03-19 Thread Manuel Lemos
http://www.meta-language.net/forms-examples.html?example=test_date_input Here you can watch a tutorial video with a section that explains about this plug-in: http://www.phpclasses.org/browse/video/1/package/1/section/plugin-date.html -- Regards, Manuel Lemos Metastorage - Data object relat

Re: [PHP] Out source files

2007-03-19 Thread Manuel Vacelet
2007/3/19, Richard Lynch <[EMAIL PROTECTED]>: On Mon, March 19, 2007 12:46 pm, Manuel Vacelet wrote: > I would like to know if there is some common patterns to "out source" > the files served by a LAMP stack. > > Technicaly speaking I would like to store my files (ap

[PHP] Out source files

2007-03-19 Thread Manuel Vacelet
e to use a secure connexion between my app. server and the storage one (communication can be tunneled in SSH though). Thanks, Regards, Manuel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: CONTENT-type for sending HTML attachments

2007-03-16 Thread Manuel Lemos
body text. You should never send HTML only messages, as most spam filters will discard your message. Usually you need to have an alternative text part like the messages composed by normal mail clients. -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer generator http://ww

[PHP] Re: Limiting speed when using CURL functions

2007-03-12 Thread Manuel Lemos
ls in the file uploading loop. http://www.phpclasses.org/httpclient -- 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 M

[PHP] Re: PHP Clustering solution -- Beta Testers Needed

2007-03-05 Thread Manuel Lemos
tions, and > if you are up to it, patches. > > Here is a brief outline > http://www.mohawksoft.org/?q=node/36 > > You can download it from > http://www.mohawksoft.org This seems very much like memcached based solutions. -- Regards, Manuel Lemos Metastorage - Data object rel

[PHP] Re: Combining sound files

2007-03-03 Thread Manuel Lemos
Hello, on 02/25/2007 12:22 PM tedd said the following: > However, I can't do the same with .WAV files. Does anyone know a way to > combine .WAV files similar to the way shown above? This class can do exactly what you want and more: http://www.phpclasses.org/wavedit -- Regards, M

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

2007-02-12 Thread Manuel Lemos
igest authentication via the SASL class library > > http://www.phpclasses.org/sasl > > > Thanks Manuel, > > So I will need both the SASL library written by you and the httpclient > library? Can you throw some more light, will really appreciate that. Exactly. -- Reg

[PHP] Re: graphical form validation

2007-02-10 Thread Manuel Lemos
ecommend several capable developers willing to do it. -- 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://www

[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

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

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
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-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-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
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
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

[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

[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] 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: Having problem sending XML over HTTP

2006-12-15 Thread Manuel Lemos
ssion emulation. Take a look in particular at examples test_http_post.php and test_http_soap.php . http://www.phpclasses.org/formsgeneration -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer generator http://www.metastorage.net/ PHP Classes - Free ready to use OOP co

[PHP] Re: mail header questions

2006-11-27 Thread Manuel Lemos
the right line break sequence for your platform. http://www.phpclasses.org/mimemessage -- 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.or

[PHP] Re: Programmatic POST

2006-11-22 Thread Manuel Lemos
asses.org/httpclient -- 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://www.php.net/) To unsubscribe, visit

[PHP] Re: 3d modeling-php

2006-11-21 Thread Manuel Lemos
nder engine for Flash. -- 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://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP in Kenya

2006-11-08 Thread Manuel Lemos
tered user groups from his country. This way you can attract more Kenya users to your group and discuss your problems with them. Just go here to submit a Kenya user group: http://www.phpclasses.org/browse/group/bycountry/country/ke/ -- Regards, Manuel Lemos Metastorage - Data object relatio

[PHP] Re: Frameworks

2006-11-02 Thread Manuel Lemos
e of frameworks. http://www.phpclasses.org/blog/post/52-Recommended-PHP-frameworks.html -- 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://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Remote Robot Control with PHP

2006-10-31 Thread Manuel Lemos
www.phpclasses.org/blog/post/58-Responsive-AJAX-applications-with-COMET.html -- 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 Gene

[PHP] Re: PHP IMAP with Attachments!?

2006-10-31 Thread Manuel Lemos
http://www.phpclasses.org/mimeparser This gets the messages without using the PHP IMAP extension: http://www.phpclasses.org/imap -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer generator http://www.metastorage.net/ PHP Classes - Free ready to use OOP com

[PHP] Re: postback for php

2006-10-18 Thread Manuel Lemos
http://www.phpclasses.org/search.html?words=mysql+xml&go_search=1 The forms class with all plug-ins is available here. Take a look in particular at the test_ajax_form.php script for a post back example. http://www.phpclasses.org/formsgeneration -- Regards, Manuel Lemos Metastorage - Data object

[PHP] Re: mail() encoded subject line

2006-10-16 Thread Manuel Lemos
encoding for individual headers, using the 3rd parameter of the SetEncodedHeader function. Take a look at the test_email_message.php example script that shows how to send messages with non-ASCII characters in the Subject and body. http://www.phpclasses.org/mimemessage -- Regards, Manuel Le

[PHP] Re: Socket communications question

2006-10-13 Thread Manuel Lemos
cated HTTP request like using the POST methods, submit forms, handle cookies and redirection, HTTP authentication, etc.., you may also want to take a look at this HTTP client class: http://www.phpclasses.org/httpclient -- Regards, Manuel Lemos Metastorage - Data object relational mapping lay

[PHP] Re: php mailer part 2

2006-10-13 Thread Manuel Lemos
same message to many recipients: http://www.phpclasses.org/mimemessage -- 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 Genera

[PHP] Re: OOP slow -- am I an idiot?

2006-10-10 Thread Manuel Lemos
ons that match your needs and return the data in arrays either all rows at once or a single row at a time. http://www.metastorage.net/ -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer generator http://www.metastorage.net/ PHP Classes - Free ready to use OOP components wr

Re: [PHP] Re: xsl + xml

2006-10-04 Thread José Manuel Peso
Colin Guthrie escribió: José Manuel Peso Echarri wrote: Hi people, I am looking for a library that mix xsl and xml producing output in xhtml at server side. I have readed about sablotron and libxsl, but i am confused. Which is the best alternative in perfomance terms for the versions 4.2

[PHP] Re: Understanding persistent connections with oci8

2006-10-04 Thread Manuel Lemos
, but they raise the need for Apache to fork more processes, which leads to more opened persistent connections. Here you may find more details about that strategy: http://www.meta-language.net/metabase-faq.html#excessive-connections -- Regards, Manuel Lemos Metastorage - Data object relational m

[PHP] Re: file to blob

2006-10-04 Thread Manuel Lemos
east it can stream the file data to the HTTP server so you do not have to load it in memory all at once. -- 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.p

[PHP] Re: file to blob

2006-10-04 Thread Manuel Lemos
this be done in PHP? You may want to take a look at this HTTP client class. It even comes with an example of how to submit a SOAP request. Although it will not build the SOAP request for you, at least it can stream the file data to the HTTP server so you do not have to load it in memory all at on

Re: [PHP] Rapid application development

2006-10-03 Thread Manuel Lemos
I think it is better for you to take a look at it directly in its site: http://www.metastorage.net/ -- 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.

[PHP] Re: problem with email characters

2006-09-28 Thread Manuel Lemos
sending class that takes care of that for you: http://www.phpclasses.org/mimemessage -- 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] xsl + xml

2006-09-20 Thread José Manuel Peso Echarri
Hi people, I am looking for a library that mix xsl and xml producing output in xhtml at server side. I have readed about sablotron and libxsl, but i am confused. Which is the best alternative in perfomance terms for the versions 4.2, 4.3? is there some way for preprocess xsl or let ir in mem

[PHP] Re: How to parse raw mail headers and messages?

2006-09-18 Thread Manuel Lemos
attachments . http://www.phpclasses.org/mimeparser -- 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 (htt

[PHP] Re: RSS Creator

2006-09-15 Thread Manuel Lemos
Hello, on 08/31/2006 02:58 AM John Taylor-Johnston said the following: > Has anyone created an RSS feed creator in PHP? I could make one fast > enough, but ... You may want to take a look at this RSS writer class: http://www.phpclasses.org/rsswriter -- Regards, Manuel Lemos Metas

[PHP] Re: Form to subscribe a yahoo group

2006-09-15 Thread Manuel Lemos
ahoo and executing some actions on behalf of the logged user, like for instance inviting a user to subscribe to a group, as you need: http://www.phpclasses.org/httpclient -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer generator http://www.metastorage.net/ PHP Cla

Re: [PHP] Re: character set when sending emails with PHP

2006-08-31 Thread Manuel Lemos
I've got the classes now how do I know which > character set to use for the TM to be shown correctly? I think chr(153). I can see it with iso-8859-1 but I am not sure if it is a legal character for this character set. You can always specify windows-1252 as character set to make sure it works. -

[PHP] Re: character set when sending emails with PHP

2006-08-29 Thread Manuel Lemos
acter set you need to use: http://www.phpclasses.org/mimemessage -- 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://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Including Google Ads

2006-08-09 Thread Manuel Lemos
me, probably using AJAX. I am afraid that AdSense terms of service do not allow that. > Any good pointers on Google Ads? Look here if you want some tips to maximize your AdSense revenue: http://www.phpclasses.org/tips.html?tip=site-revenue -- Regards, Manuel Lemos Metastorage - Data ob

Re: [PHP] Re: PHP Frameworks - Opinion

2006-08-08 Thread Manuel Lemos
about providing better sites to people by giving the users means to participate in relevant way that is appreciated by others. Technology and social networks can help providing that, but those are just means to reach the ends. When I mentioned what the PHPClasses site has been doing that fit the We

Re: [PHP] Re: PHP Frameworks - Opinion

2006-08-08 Thread Manuel Lemos
ion. If you read what I originally wrote you'll > see that I was commenting on the article itself that you suggested since > I and many others find great fault with it. For your benefit I've pasted > below my original comment: I am afraid that you still do not get the point that

[PHP] Re: php/ajax..

2006-08-07 Thread Manuel Lemos
look at the test_linked_select.php and test_auto_complete.php examples that take advantage of the class AJAX plug-in features. -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer generator http://www.metastorage.net/ PHP Classes - Free ready to use OOP components written

Re: [PHP] Re: PHP Frameworks - Opinion

2006-08-05 Thread Manuel Lemos
me purposes in use by many people. This does >> not help people like the original poster that wanted specific >> recommendations. He will have too loose a lot of time and patience, >> probably to reach the conclusion that he will have to write his own >> framework. > >

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