[PHP] TLS transport for Windows

2007-10-22 Thread Matt Arnilo S. Baluyos (Mailing Lists)
Hi all, I'm looking for a PHP environment for Windows (like XAMPP), that already has TLS transport built-in. Would anyone know of something like it? If not, any pointers on how to get TLS transport for a PHP Windows environment? Thanks, Matt -- Stand before it and there is no beginning.

Re: [PHP] Which PHP-Editor to use?

2007-10-17 Thread Matt Arnilo S. Baluyos (Mailing Lists)
Does Eclipse already have word-wrap? To my disappointment, it was still lacking that basic functionality the last time I tried it. On 8/3/07, Nathan Nobbe [EMAIL PROTECTED] wrote: eclipse with php eclipse, but i may be switching to eclipse pdt once it becomes stable if there is no support for

Re: [PHP] Which PHP-Editor to use?

2007-10-17 Thread Matt Arnilo S. Baluyos (Mailing Lists)
On 10/18/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: 2007/10/18, Matt Arnilo S. Baluyos (Mailing Lists) [EMAIL PROTECTED]: Does Eclipse already have word-wrap? To my disappointment, it was still lacking that basic functionality the last time I tried it. PHP Eclipse's auto format

[PHP] Two MySQL instances in one server

2007-10-15 Thread Matt Arnilo S. Baluyos (Mailing Lists)
Hi all, Would it be possible to have two MySQL instances running on one server (each having different ports) and then have only one running Apache server with PHP? I have tried this once but PHP can only connect to one MySQL server because it can only read one socket file at a time. As much as

[PHP] ORM framework suggestion

2007-08-08 Thread Matt Arnilo S. Baluyos (Mailing Lists)
Hello All, I'm thinking of using an ORM framework for a new project. From my research, I've found Propel and Doctrine (of course, there might be others). Would anyone suggest what ORM framework they're using right now? I am experienced with OOP and am just looking for a framework to speed things

[PHP] short open tags not working even if enabled - lighttpd + fastcgi

2007-03-26 Thread Matt Arnilo S. Baluyos (Mailing Lists)
Hello everyone, I have a working lighttpd + fastcgi + PHP + eaccelerator installation. I have also enabled short tags on the /usr/local/lib/php.ini but I'm having problems with PHP not escaping the short tags. To better illustrate, my phpinfo() file can be accessed at

[PHP] SNMP support on compile from source FastCGI

2007-03-25 Thread Matt Arnilo S. Baluyos (Mailing Lists)
Hello everyone, I'm trying to add the SNMP module with a compile-from-source PHP 5.2.1 installation. This is on a Fedora Core 5 system with target web server being lighttpd. This is the configure script that I have: ./configure --enable-fastcgi --enable-discard-path --enable-force-redirect

[PHP] Re: SNMP support on compile from source FastCGI

2007-03-25 Thread Matt Arnilo S. Baluyos (Mailing Lists)
On 3/26/07, Matt Arnilo S. Baluyos (Mailing Lists) [EMAIL PROTECTED] wrote: Hello everyone, I'm trying to add the SNMP module with a compile-from-source PHP 5.2.1 installation. This is on a Fedora Core 5 system with target web server being lighttpd. This is the configure script that I have

[PHP] Classified Ads Script

2007-02-19 Thread Matt Arnilo S. Baluyos (Mailing Lists)
Hello everyone, I'm planning to put up a local classified ads website and I'm looking for an open-source script for this. I've already had some links from Google and Sourceforge but I'd like to get some opinions on people who've already run a classifieds website as to what they're using and

[PHP] Sending file stored on server via email - How?

2007-01-08 Thread Matt Arnilo S. Baluyos (Mailing Lists)
Hello everyone, I store files on the server (.pdf, .doc, .txt, etc.) which are referenced by entries in a database. The filenames are only stored in the database and are not BLOBs. What I'd like to do is to be able to show a web form wherein a user can choose stored documents on the server and

Re: [PHP] Re: Sending file stored on server via email - How?

2007-01-08 Thread Matt Arnilo S. Baluyos (Mailing Lists)
On 1/8/07, Ville Mattila [EMAIL PROTECTED] wrote: Matt Arnilo S. Baluyos (Mailing Lists) kirjoitti: What's the easiest way to go about this? Specifically, what's the easiest way to read a file from the server and send it as an email attachment. I would suggest you to use http

[PHP] Handling illegal byte sequences in UTF-8 strings

2006-04-21 Thread Matt Arnilo S. Baluyos (Mailing Lists)
Hello list, We have recently upgraded our database to PostgreSQL 8.1.x which handles UTF-8 more strictly than previous versions. The new version will not allow illegal byte sequences when inserting data. This has caused some errors in our system which inputs data. Basically, what the system does

[PHP] Script to sanitize variables

2006-03-28 Thread Matt Arnilo S. Baluyos (Mailing Lists)
Hello everyone, Would anyone know a PHP script that can sanitize variables to prevent XSS and SQL injection? Thanks and best regards, Matt -- Stand before it and there is no beginning. Follow it and there is no end. Stay with the ancient Tao, Move with the present. -- PHP General Mailing List

Re: [PHP] Script to sanitize variables

2006-03-28 Thread Matt Arnilo S. Baluyos (Mailing Lists)
On 3/29/06, Ray Hauge [EMAIL PROTECTED] wrote: Chris Shiflett has written a number of good articles on the matter. You can find them at: http://shiflett.org/articles The articles in particular would be: Security Corner: Cross-Site Request Forgeries Security Corner: Data Filtering

Re: [PHP] define() or $variable for application settings?

2006-02-09 Thread Matt Arnilo S. Baluyos (Mailing Lists)
On 2/9/06, Jochem Maas [EMAIL PROTECTED] wrote: bare in mind though that define() is horribly slow (to paraphrase Rasmus) which may be the reason many projects choose to use variables instead. see here: Thanks Chris and Jochem! That should've been my follow up question - which is, if define()

[PHP] define() or $variable for application settings?

2006-02-08 Thread Matt Arnilo S. Baluyos (Mailing Lists)
Hello Everyone, I have a config.inc.php file which basically contains all the configuration info that the applications needs (directory/file locations, database credentials, etc). The information there is set using the define() function. However, I've seen some open-source projects which either