Re: [plug] PHP + SQL Server

2008-06-11 Thread Robert Locke
Hi, We've been using freetds in a production environment for a couple of years with no problems. Our tps isn't high by telco standards, but decent by most other measures. =) Rob On 06 11, 08, at 9:25 AM, Orlando Andico wrote: I'm not sure how stable freetds is... Things like invoking

Re: [plug] Anyone know of a wireless (G) card that can be set to master mode?

2008-06-11 Thread Paolo Falcone
Atheros cards: http://madwifi.org/wiki/Compatibility. If you've got the cash to plunk, get a Senao wifi card. Prism54 cards are tad hard to find these days. used to have one (the unofficial v2 Netgear WG511) but it was destroyed by a sudden temperature change in Japan some years back. On Wed,

Re: [plug] CentOS Cacti Installation problem

2008-06-11 Thread fooler mail
On 6/11/08, Joyce Gutierrez [EMAIL PROTECTED] wrote: Hi again, Im sorry I was not able to give you the info you were expecting from me and thank you again so much,ü Below are the output for steps 1 and 2: 1. [EMAIL PROTECTED] app]# telnet x.x.x.x 80 Trying x.x.x.x... Connected to

[plug] General Protection Fault cartoon for May 21, 2008

2008-06-11 Thread Daniel
http://www.gpf-comics.com/archive.php?d=20080521 Sent to you by Daniel via Google Reader: Cartoon for Wednesday, May 21, 2008 via General Protection Fault--The Comic Strip on 5/20/08 Things you can do from here: - Subscribe to General Protection Fault--The Comic Strip using Google Reader - Get

Re: [plug] tiff to PDF compression/Conversion with OCR Capability Multilanguage

2008-06-11 Thread Orlando Andico
I believe tesseract-ocr is also based on the ocr work out of HP labs, same as gocr. I would take those numbers with a lump of salt. That will probably be true for text in a single column, no font size changes or type face changes. On 6/11/08, eric pareja [EMAIL PROTECTED] wrote: how does

Re: [plug] PHP + SQL Server

2008-06-11 Thread eric rosel
Hi All, Another option (for connecting to SQL Server on Windows from PHP on Linux) would be ODBTP (http://odbtp.sourceforge.net/), I've done at least a couple of gigs with ODBTP, one for an online gaming company, and another for a telco/VOIP company. They're both stable and one has been running

[plug] Learning Korn shell (was Re: Getting list of regular files (with whitespaces) using ls and AWK)

2008-06-11 Thread Ludwig Isaac Lim
From: thad [EMAIL PROTECTED] Subject: Re: [plug] Getting list of regular files (with whitespaces) using ls and AWK Nice thread... Will try it in other *NIX :-) No perl expert here but shell scripts+sed+awk can butter my bread, I'm enjoying using korn for now than bash. With set

Re: [plug] CentOS Cacti Installation problem

2008-06-11 Thread Edel SM
hello, try adding '/' at the end of your url to loook like: http://yourserver/cacti/ i had that same problem before (404), only to find out that alias in in apache (actually lighttpd) needs slash at the end of url. hth. On Wed, Jun 11, 2008 at 1:09 PM, Joyce Gutierrez [EMAIL PROTECTED]

Re: [plug] Version Control for Assorted but not Necessarily Related Files

2008-06-11 Thread Edel SM
On Tue, Jun 10, 2008 at 1:32 PM, Ludwig Isaac Lim [EMAIL PROTECTED] wrote: Hi: Hi! I'm planning to put a certain folder under a version control system. The files under the folder a combination of .sh (bourne shell), .ksh (korn shell) and .pl (perl) files. As stated in the title of the

Re: [plug] CentOS Cacti Installation problem

2008-06-11 Thread Joyce Gutierrez
hi edel, thanks for replying, unfortunately i already tried that but I am still getting the error saying that the page cannot be displayed. thanks,ü joyce - Original Message From: Edel SM [EMAIL PROTECTED] To: Philippine Linux Users' Group (PLUG) Technical Discussion List

[plug] Regex Help

2008-06-11 Thread Noli Rafallo
Hi, I am trying to create a single regular expression that will match texts like ABC123 or ABC12-12. I have this (^[a-z]{1,3}[0-9]{1,3}$) which works with the first text but I don't know yet how to handle the second text with a dash in it. Thanks, Noli

Re: [plug] Regex Help

2008-06-11 Thread Mark David Dumlao
some questions/ notes 1) is ABC123 the whole line? If not, ^ and $ are not needed. 2) It's not clear what expressions you plan to catch. Do you mean 1-3 letters (regardless of case), followed by 1-3 digits OR a range having 1-3 digits as well? 3) here's my shot