Re: MySQL - Trying to query x days back

2008-12-28 Thread Eric Haskins
Yeah DATE_SUB() would work too select * from table WHERE date_column BETWEEN CURDATE() and DATE_SUB(CURDATE(),INTERVAL 30 DAY) Eric On Sun, Dec 28, 2008 at 7:00 PM, Will Tomlinson wrote: > >(I think this should work; I use MSSQL, so can't test this...) > > > >Seb > > > Yep, that works perfectl

Re: banning a User from the site

2008-12-26 Thread Eric Haskins
The best way is using a Flash Cookie as most dont even know they exist. I catch alot of Chinese hackers with a signup flash cookie that is embedded into my FlashCaptcha. On every signup we check for the cookie and compare flash Language against the Browser & System langs. I love when I see Flash

Re: Banning a User from my Site

2008-12-26 Thread Eric Haskins
The best way is using a Flash Cookie as most dont even know they exist. I catch alot of Chinese hackers with a signup flash cookie that is embedded into my FlashCaptcha. On every signup we check for the cookie and compare flash Language against the Browser & System langs. I love when I see Flash

Re: Easy Credit Card Processing Service?

2008-11-21 Thread Eric Haskins
LOL I would run away from Paypal On Fri, Nov 21, 2008 at 11:11 AM, Claude Schneegans < [EMAIL PROTECTED]> wrote: > See Paypal. > You don't even have to bother with the credit card type, they handle it. > > They just flagged a txn of mine ( Sister in law sent us money for an XMas present for the m

Re: Easy Credit Card Processing Service?

2008-11-21 Thread Eric Haskins
Plenty http://letmegooglethatforyou.com/?q=Coldfusion+Credit+Card+processors Eric Haskins On Fri, Nov 21, 2008 at 10:58 AM, Don L <[EMAIL PROTECTED]> wrote: > Sorry, not exactly CF question, does anyone know of a credit card process > service that provides just the following

Re: Code Synchronization - Synchronize code on 2 different machines

2008-11-14 Thread Eric Haskins
http://pvcs.synergex.com/products/Serena_Mover.aspx Serena has some nice stuff but can be pricey I would just setup a CVS Repository Dev can commit code to it and then the WebServers you would just need to run CVS/SVN Update on them when the code changes Eric Haskins On Fri, Nov 14, 2008

Re: Parsing timestamp set by phpBB

2008-11-03 Thread Eric Haskins
Sorry misread able as unable :) its monday but yeah it is Epoch Eric On Mon, Nov 3, 2008 at 12:11 PM, Eric Haskins <[EMAIL PROTECTED]> wrote: > echo date("F d, Y,g:i a",'993124800'); > ?> > > Gives me this output??? > > June 21,2001,8:00 am >

Re: Parsing timestamp set by phpBB

2008-11-03 Thread Eric Haskins
Gives me this output??? June 21,2001,8:00 am Eric Haskins On Mon, Nov 3, 2008 at 11:31 AM, Jason Durham <[EMAIL PROTECTED]> wrote: > I have a date represented as "993124800" in my database that php's > date() function is able understand and format. I'm ru

Re: database encryption

2008-10-20 Thread Eric Haskins
You could always use an nChiper Encryption Appliance which holds your keys. You would need to then make a request to the ncipher to encrypt then store the response in a DB. These are PCI compliant Appliances but they come at a $$$ and you would need 2 in case one fails Eric Haskins On Tue, Oct

Re: trouble authenticating to ms virtual earth webservice

2008-10-17 Thread Eric Haskins
Damn!! When I worked for Roomstogo.com I managed to get it working. It was a bit of a process to get the stubs to generate. I may have a copy somewhere in my gmail Ill take a look Eric Haskins On Fri, Oct 17, 2008 at 8:29 PM, Nick G <[EMAIL PROTECTED]> wrote: > Has anyone been s

Re: Google Chrome and FCKeditor

2008-09-02 Thread Eric Haskins
FCK has handlers based on the browser detected.Im curious as to how it identifies itself Eric On Tue, Sep 2, 2008 at 9:29 PM, Jeff Fleitz <[EMAIL PROTECTED]> wrote: > Yeah, mine is broken too. The editor just doesn't show up. > > On Tue, Sep 2, 2008 at 9:06 PM, Al Musella, DPM > <[EMAIL PROTECTE

Re: Coldfusion Flex app help?!

2008-08-08 Thread Eric Haskins
We do something similar to Brad. When the user is doing things we have a function that updates a login_security table to show they are still active. We have a Scheduled task that checks the table and clears it once their last active reaches x amount of mins. To combat the Lockout we used our secur

Re: paypal cart

2008-07-29 Thread Eric Haskins
Chad, I guess I am kind of lost as to what the problem or what your trying to do then. I have used paypal in many apps and have had no problem storing the customers order in a db sending the data to paypal with the itemid being their cart/orderid. Then paypal IPN notifing my cart the txn was succe

Re: I need help with a PHP question - off line i guess

2008-07-29 Thread Eric Haskins
Im not even gonna entertain Phillip with a response ill informed response :)I have benchmarked it on both platforms and it was pretty close. I would bet he has some code issues and if he is using one of the PHP CMS's (joomla,xoops). They are bloatware and that is probably 90% of his issue. Also

Re: paypal cart

2008-07-29 Thread Eric Haskins
Look at PayPal IPN code. I have done some hacks (in php) where I serialized and Array of data then base64 encoded and passed it in the the string to get around limitations but I think your problem is the buttons do not post any data back to your cart that is why you should use PayPal IPN Eric On

Re: [ot] - Payment Gateways?

2008-07-27 Thread Eric Haskins
"We didnt receive the product" yet he provided tracking info and everything. I am unfortunately forced to still use them as some of my long term customers only use them. But now I keep my PayPal Balance at 0. Eric Haskins On Sun, Jul 27, 2008 at 7:18 AM, Will Tomlinson <[EMAIL PROT

Re: ext-all.css

2008-06-11 Thread Eric Haskins
That is the main include for Ext Javascript library extjs.com Eric On Wed, Jun 11, 2008 at 3:04 PM, Chad Gray <[EMAIL PROTECTED]> wrote: > I am experimenting with CFLayout and I noticed in Firebug's console there > are a ton of warnings for this file: > ext-all.css > > Looks like CFLayout is wha

Re: credit card storage help

2008-05-24 Thread Eric Haskins
25K. Eric Haskins On Fri, May 23, 2008 at 9:27 PM, Mike Kear <[EMAIL PROTECTED]> wrote: > So how do ISPs and other companies handle storing credit cards? I > get regularly charged by several companies, not all of whom would be > large enough to have dedicated IT department

Re: credit card storage help

2008-05-23 Thread Eric Haskins
/hardware_security_modules/10/nethsm/ I have done some projects with these in the past they are $$$ and you would need atleast 2 incase one fails. I am working a cheaper solution smaller scale solution. For the people that cant afford 25K each LOL Eric Haskins On Fri, May 23, 2008 at 8:57 AM, Matthew Sievert

Re: Avoid multiple form submits.

2008-05-09 Thread Eric Haskins
The Javascript example above doesnt have a TYPE="submit" so it will cause weird behavior in some browsers. I bet it will work if you add it Eric On Fri, May 9, 2008 at 10:52 AM, Massimo Foti <[EMAIL PROTECTED]> wrote: > If what you are looking for is just a client-side solution, the TMT > Valid

Re: New to colocation

2008-04-24 Thread Eric Haskins
LOL Im an idiot someone was talking to me about a .org when I was typing this and I put it in my email. Its Zipa.com LOL is it friday yet Eric Haskins PHP/MySQL Specialist RackSPEED Hosting & Devel ~| Adobe® ColdFusio

Re: New to colocation

2008-04-24 Thread Eric Haskins
corners when buying hardware I plan to ship 15 hours away :( Eric Haskins PHP/MySQL Specialist RackSPEED Hosting & Devel On Thu, Apr 24, 2008 at 10:18 AM, Jason Durham <[EMAIL PROTECTED]> wrote: > I realize this isn't specific to ColdFusion but I'm not sure where else

Re: Flex Ajax Bridge & jQuery...

2008-04-03 Thread Eric Haskins
I started using it with a Flexchart APP I was doing in PHP. I found it better to make a call from flex to the bridge once the SWF was loaded. That way I knew everything was up Eric On Thu, Apr 3, 2008 at 11:43 AM, Andy Matthews <[EMAIL PROTECTED]> wrote: > Ah...okay...we'll see if that works. T

Re: Loading plain text into Flash

2008-01-09 Thread Eric Haskins
your query to (one_owner ) &ONE_OWNER=N&UID=C410881&VIN=1G6DM57N030113765 The response is just Yes Eric Haskins On Jan 9, 2008 2:47 PM, Josh Nathanson <[EMAIL PROTECTED]> wrote: > > how can I hit this URL and get back JUST the plain text? I'll format it > in

Re: What can PHP do that CF can't?

2007-10-21 Thread Eric Haskins
I second that Eric! What is useless to one is useful to others and it just bothers me when there is one or two complaints/trolls that had nothing to contribute. They just make sure they express their displeasure. Eric Haskins

Re: 2 NIC windows server with CF/JRUN

2007-09-17 Thread Eric Haskins
I think it has to do with having 2 different Default gateways. I believe you need to make sure you primary nic has default gateway and the secondary doesnt have anything in default gateway I ran into this once and I think that is how I fixed it Eric Haskins On 9/17/07, po poi <[EM

Re: capturing barcode keystrokes

2007-09-14 Thread Eric Haskins
determine it was the scanner or the user typing?? Eric Haskins On 9/14/07, James Holmes <[EMAIL PROTECTED]> wrote: > > There's no way of knowing whether the keys come from the barcode > scanner or the user's keyboard, unless you have a special character > progra

Re: UNIX/Apache .htaccess problem

2007-09-05 Thread Eric Haskins
http://www.webconfs.com/how-to-redirect-a-webpage.php Neat little bookmark I had look near the bottom Eric On 9/5/07, Ian Skinner <[EMAIL PROTECTED]> wrote: > > I am trying to create an .htaccess to use a 301 redirect to direct users > to a new directory structure of our site. When I put th

Re: CF vs. PHP

2007-08-29 Thread Eric Haskins
Security is an issue with all exposed languages?? Its only as good as the codemonkey writing it? Yahoo uses PHP? Directnic Uses PHP? James I will put up some examples been really busy past couple days. Dave im sorry if I am wrong but that really appears to be a Troll Response Eric Haskins

Re: CF vs. PHP

2007-08-28 Thread Eric Haskins
s/is my primary source of income :) Or is > legitimate to keep "consistency" in the languages used within the > organization? I think this would be the reasoning. Eric Haskins ~| Get the answers you are look

Re: MySQL FullText search with CFQUERY?

2007-08-24 Thread Eric Haskins
Make Sure you have the Fields set as Fulltext Eric On 8/23/07, Les Mizzell <[EMAIL PROTECTED]> wrote: > > > We use MS SQL and utilize full text queries just like any other select > > query. I suspect that MySQL will work the same. > > > So the below should be a valid query then? > > > SELECT

Re: Good Authorize.net Reseller...

2007-08-15 Thread Eric Haskins
I have been using e-onlinedata.com for a couple years. I am also a reseller thru them great payouts too Eric On 8/15/07, Will Tomlinson <[EMAIL PROTECTED]> wrote: > > Who's a good, reputable authorize.net reseller? > > Thanks, > Will > >

Re: OT: JS Question Hide/Show Form Elements

2007-08-02 Thread Eric Haskins
We use Prototype. It works in just about everything we have thrown at it. Eric On 8/2/07, Che Vilnonis <[EMAIL PROTECTED]> wrote: > > Anyone know of a JS that works on *most* browsers that will allow me to > hide/show sections of a form depending on what radio button is clicked? > I've > found a

Re: OT: Java Script Question

2007-08-02 Thread Eric Haskins
writetag You have a - after language too. writetag(); Eric On 8/2/07, Robert Harrison <[EMAIL PROTECTED]> wrote: > > > Sorry for the OT JS question, but I need this to work and someone my see > the > problem. > > I'm creating a function to write a tag with some external variables. I'm > usin

Re: Java Script Question

2007-08-02 Thread Eric Haskins
Just a quick note. Firefox with the Firebug addon is the best thing you can use for Js troubleshooting. I am doing a ton of AJAX mods to the sites I am working on now. I still need to make sure it works in all/most browsers but Firebug has saved me a ton of time Eric ~

Re: Blog CFC, PHP Equivalent

2007-07-27 Thread Eric Haskins
WordPress? Eric On 7/26/07, Peter Donahue <[EMAIL PROTECTED]> wrote: > > Hello again everyone, > >Sorry if this is slightly OT, but after exhausting all other lists to > which such a post would go I figured I would send this inquiry here as > folks > on the other lists I'm on have never hear

Re: HELLO

2007-07-25 Thread Eric Haskins
in the "original message" but I > removed it totally due to its content. > > >Eric Haskins wrote: > >> Almost hit "Report SPAM" in Gmail until I noticed it was from CF-Talk. > > > >And you found it of vital importance to include the full

Re: HELLO

2007-07-25 Thread Eric Haskins
Almost hit "Report SPAM" in Gmail until I noticed it was from CF-Talk. Eric Haskins On 7/25/07, ISWARDUTH BEEHARRY <[EMAIL PROTECTED]> wrote: > > > Alternate e-mail: [EMAIL PROTECTED] > > > > > I am Dr. Mrs. Mariam Abacha, wife to the late Nigerian He

Re: Encrypting database information

2007-07-18 Thread Eric Haskins
md5 (one way encrypt) Hash pretty much standard way for passwords. I know alot of people that dont even encrypt passwords any more. The thought is if they have hacked your database what do they need the password for :) As for credit cards,customer details and such Usually requires something around

Re: SOT: 3D-Secure / MC SecureCode / Verified by VISA

2007-07-05 Thread Eric Haskins
I like 3-D Secure & Securecode in theory but I ran into issues back in the day when it first started and some gateways used HTTP redirects to send your customer to the bank. Major Headaches then and it sounds like major headaches now Eric On 7/5/07, Paul Vernon <[EMAIL PROTECTED]> wrote: > > I

Re: Dreamweaver and Vista

2007-07-04 Thread Eric Haskins
Damn learn new things everyday!!! That Search Start Menu is Sweet!! and the Reliability Monitor is even better (aside from the fact it has to be taking up HD space). I honestly had high hopes for Vista but never lost sight of reality. Thanks for the tips Jim ~Eric ~~~

Re: Dreamweaver and Vista

2007-07-03 Thread Eric Haskins
Well I bit the Bullet and got CS3 Web Premium and everything appears to be working fine in Vista. Another great side effect of my decision is my wallet now fits in my back pocket too! ~Eric Haskins ~| Upgrade to Adobe

Re: Dreamweaver and Vista

2007-06-29 Thread Eric Haskins
I only have MX 2004 and I cannot for the life of me get it to run well. I have it up and running now so I dont shut the laptop down :) just put it to sleep. Flash wont start at all. Online right now looking to buy a Windows XP pro License. Kind of a bummer I really liked the look and feel but if

Re: Anyone use Akamai?

2007-06-22 Thread Eric Haskins
Scott, They do have a service where you can tag dynamic content. I believe its called dynamic site accelerator. We didnt use it we only used them for image hosting Eric On 6/22/07, Scott Stewart <[EMAIL PROTECTED]> wrote: > > When I was at the FDA they used it for FDA.gov. It's a html cache

Re: Anyone use Akamai?

2007-06-22 Thread Eric Haskins
Im not familiar with the pricing but I can say it was easy to setup. basically we pointed images.domain.com to akamai. Then we created an images-mirror.domain.com All images had full url http://images.domain.com/image.jpg When the user requests the page if akamai doesnt have the image they req

Re: Good SSL Provider

2007-06-21 Thread Eric Haskins
I ran into some issues with the GoDaddy Startech certs apache wouldnt start with a couple of them ended up getting a refund and going back to RapidSSL Eric On 6/21/07, Robert Rawlins - Think Blue <[EMAIL PROTECTED]> wrote: > > Thank you for all your suggestions guys, > > I'll do some research

Re: Good SSL Provider

2007-06-21 Thread Eric Haskins
I second Chris on RapidSSL . I have have all four of my servers thru ev1 now The Planet and I resell those SSL Certs for 39.95 (60.00) if I have to install them for my customers Eric On 6/21/07, Chris Montgomery <[EMAIL PROTECTED]> wrote: > > Robert Rawlins - Think Blue said the following on 6/

OT: CVS Question

2007-06-21 Thread Eric Haskins
Lets preface this with I am in no way a CVS wizard :) I have used SVN, CVS, Serena TeamTrack. I am doing some work for a company now and we are trying to figure out how we setup a DEV Branch/Trunk and be able to merge the changes from Dev to Live??? Currently we have CVS setup but they are worki

Re: web page snapshots

2007-06-19 Thread Eric Haskins
Not everyone is using Gmail for the list :) So we are kinda spoiled because we see all responses. Most just see the topic and reply to it not seeing our responses Eric ~| Upgrade to Adobe ColdFusion MX7 The most significant re

Re: configuring Apache to use multiple JRun Application Servers

2007-06-18 Thread Eric Haskins
You manually edit the the httpd.conf and add the into the Virtualhost container Multihosting with Apache To set up Apache virtual hosts, each with its own JRun server, include a JRun configuration block inside each VirtualHost directive in the Apache configuration file (httpd.conf). The follo

Re: Translation WebService

2007-06-15 Thread Eric Haskins
uot;> The result should be in CFHTTP.FileContent. Then use a regex to get it out the Div (.*?) I will test when I get home Eric Haskins Web Application Developer Directnic.com <http://directnic.com/> / Parked.com <http://parked.com/> Convert your Parked Domains in revenue strea

Re: Translation WebService

2007-06-15 Thread Eric Haskins
to help our CSR's. When I worked for Roomstogo.com they used http://motionpoint.com/ it worked great but man they could hammer your servers Eric Haskins Web Application Developer Directnic.com / Parked.com Convert your Parked Domains in revenue streams http://www.parked.com/tour/?

Re: Flex barcode reader

2007-06-12 Thread Eric Haskins
I wrote a Pharmaceutical Return Web App in PHP and any old Bar Code Scanner off ebay worked fine??? I dont see why you would need drivers? It just gets translated like a keyboard As for locking pc's down I used to use software called Frotres from FortresGrand.com Worked great Eric On 6/

Re: OT: PHP and MYSQL install help.

2007-06-12 Thread Eric Haskins
Not familiar with WAMP I use XAMPP for my windows Dev enviroment. Unsure but that is the same message I see when someone forgets the PHP MYSQL Connector. In most cases it is only on a linux box. I have never seen it on windows (Unless I forget to Start MySQL Server) Eric Haskins On 6/12/07, Tom

Re: OT: VK_BACK & Javascript

2007-05-01 Thread Eric Haskins
Yeah I figured it was just firing off a Backspace (keycode == 8) but it isnt lol. Goes to show you plan for everything and still someone finds a flaw Eric ~| ColdFusion MX7 and Flex 2 Build sales & marketing dashboard RIA’s

OT: VK_BACK & Javascript

2007-05-01 Thread Eric Haskins
Has anyone seen a way to capture the virtual keys(VK) on a mouse. I have an AJAX enhanced app that we got some complaints on blank pages when the users clicked the back button on their Intellimouse's I can reproduce the issue. I just want to know how to trap the event. I alerted the Keybd events

Re: Hardware load balancers (lower-end)

2007-04-05 Thread Eric Haskins
Are the newer LD's 1U??? I know when I worked form my previous employer We were switching to radware because of some issues with the LD. Not to mention they were like 4U each :) Eric On 4/5/07, John Paul Ashenfelter <[EMAIL PROTECTED]> wrote: > > I have to say it makes me happy to see so many p

Re: Hardware load balancers (lower-end)

2007-04-04 Thread Eric Haskins
Radware!!! :) but $$$ Russ is onto something there with LVS. All a radware is, is a PC running their version of linux Eric On 4/4/07, Jacob <[EMAIL PROTECTED]> wrote: > > I have used both Radware WSD and Cisco Content Services Switch. > > Both worked fine for me. Not *cheap* though. > >

Re: OT - PHP Question

2007-03-26 Thread Eric Haskins
If the query returns no results you will get that see modified code. Dont forget to edit db password my dev machine doesnt have mysql passwd. Eric ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10 years.

Re: OT - PHP Question

2007-03-26 Thread Eric Haskins
b\wwwroot\personalphp\resultsbyname.php on line > 20 > > I have attached both programs to this email. > > Regards > > Pete > > I'm guessing it must either be the $record or the $result. > > I changed the $name back to $record. > > > > -Original Message- &

Re: OT - PHP Question

2007-03-26 Thread Eric Haskins
difficult to pick up where the variables are actually coming from as it > checks the URL, Sessions and the POST variables for that particular > variable. > > !k > > -----Original Message- > From: Eric Haskins [mailto:[EMAIL PROTECTED] > Sent: Sunday, March 25, 2007 9

Re: OT - PHP Question

2007-03-25 Thread Eric Haskins
Use $_REQUEST['rec_ID'] or $_GET['rec_ID'] / $_POST['rec_ID'] Like so $sql="SELECT * FROM personal WHERE ID = '" . $_REQUEST['rec_ID'] . "' "; Most servers or hosts like me turn of Register Globals. DOnt forget to use strip_tags() or other form of input sanitation Eric On 3/25/07, Jochem

Re: Microsoft Mappoint Working on CFMX 7 Standalone

2007-03-21 Thread Eric Haskins
Hey Paul, I will get my working example packed up and on the web for your to download. Eric ~| Macromedia ColdFusion MX7 Upgrade to MX7 & experience time-saving features, more productivity. http://www.adobe.com/products/co

Re: Looking for a good IIS URL rewriting plugin

2007-03-15 Thread Eric Haskins
I second Russ on $0 get apache its built in, not to mention more flexible ;) mod_rewrite baby! We have used Helicon's ISAPI_rewrite while we were migrating to Apache so if you need to stay with IIS (Authentication,AD) then I will throw a vote for Helicon Eric On 3/15/07, Russ <[EMAIL PROTECTED]

Multiregion Directory site

2007-03-14 Thread Eric Haskins
Hey Everyone, I have a directory site(like superpages.com) I did in PHP awhile back and I am thinking of rewriting in CF. I want it to be able to do regions like craigslist, or handle urls like orlando.directorysite.com with the same codebase just different Database data. has anyone done anyt

Re: Daylight Savings Time Change (Slightly OT, but relevant)

2007-03-13 Thread Eric Haskins
Adobe wont support you if you install past 1.4.2_11 so if you dont have support your fine Eric On 3/13/07, Ben Mueller <[EMAIL PROTECTED]> wrote: > > Sun's website appears to have 1.4.2_13 as the latest. Are we safe > installing that version, or should we stick to 1.4.2_11? We're running > CFMX

Re: TIMEZONE issues?? anyone?

2007-03-12 Thread Eric Haskins
>From my previous post I believe the servers that didnt update were our domain controllers but MS released another KB on this (KB931836) Take a look Eric On 3/12/07, Brad Wood <[EMAIL PROTECTED]> wrote: > > We are working ok now. We run single instance installs on Linux. > Following a Adobe Tec

Re: TIMEZONE issues?? anyone?

2007-03-12 Thread Eric Haskins
H Took on all 5 of our 2K servers. Although I did hear that some of the other 2K servers needed to use the vbs w/ .reg file version before it worked. Eric On 3/12/07, Tony <[EMAIL PROTECTED]> wrote: > > yes, that was done. > > tw > > On 3/12/07, Eric Haskins &

Re: TIMEZONE issues?? anyone?

2007-03-12 Thread Eric Haskins
and then click *OK*. *Note* Steps j and k are required for the new changes to take effect. On 3/12/07, Eric Haskins <[EMAIL PROTECTED]> wrote: > > Did you do the last step of tzedit?? > > You need to change timezone then change back for the update to take?? > > > Eric &g

Re: TIMEZONE issues?? anyone?

2007-03-12 Thread Eric Haskins
Did you do the last step of tzedit?? You need to change timezone then change back for the update to take?? Eric On 3/12/07, Adkins, Randy <[EMAIL PROTECTED]> wrote: > > All of mine are running fine. Win 200 and W2K3 servers > > > > From: Tony [mailto:[EMAIL PROT

Re: Anyone develop with Linux as an OS?

2007-03-09 Thread Eric Haskins
Yeah I got around it using _org_wrapper_NSPlugins_libflashplayer.so Not a major issue as I am a linux geek by nature just the only bump I may have seen to push "not so linux savy" peeps away Thx Tom Eric On 3/9/07, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Fr

Re: Anyone develop with Linux as an OS?

2007-03-09 Thread Eric Haskins
I run a new Dell Precision Pro 490 that came preinstalled with RedHat Enterprise WS 4 x86_64. I Also run VMWare Workstation so my Corp email runs on a XP virtual machine. Dev enviroment is RHEL WS 4 XAMPP modded to work with CF Developer and PHP5 The only drawback I have is x86_64 finding Flash

Re: installing CF Enterprise, Load Balancing Etc...

2007-03-07 Thread Eric Haskins
Brad, Most Hardware balancers have options to allow the server to drain users on it by not allowing new sessions. Yes it will kick users on the server you are taking out of service if you do not allow it to drain. I can see how many sessions are active on each server in the farms. When we wer

Re: installing CF Enterprise, Load Balancing Etc...

2007-03-07 Thread Eric Haskins
We had Cisco Local Directors and they were doing similar things as yours are now. It would at times direct all traffic to the one server that was having issues. I believe this was a flaw in the way they handled balancing but we could easily pull/drain a server from the farm. We now run Radware WS

Re: installing CF Enterprise, Load Balancing Etc...

2007-03-06 Thread Eric Haskins
OUCH kinda sounds like a step backwards on a couple levels. Of course I am partial to linux on a performance level but the step back from Hardware to software loadbalancing I just do not understand. ~Eric ~| ColdFusion MX7 by Ad

Re: OT Flash Remoting on IIS 6

2007-03-06 Thread Eric Haskins
What version of CF7 ?? Enterprise or Standalone? Eric On 3/6/07, Adrian Lynch <[EMAIL PROTECTED]> wrote: > > Where to begin... > > I'm trying to set up Flash remoting on IIS6 with CF7. > > I've tried the points on this page: > > > http://www.adobe.com/support/flash_remoting/ts/documents/iis_gatew

Re: Text Similarity Algorithm

2007-03-06 Thread Eric Haskins
I have used an md5() hash for this but we were only looking to see if there was change not the amount of change. Just throwing out ideas :) -- ~Eric ~| ColdFusion MX7 and Flex 2 Build sales & marketing dashboard RIA’s for yo

Re: GotCFM.com - Need Opinion on Whether to Approve a Site

2007-03-05 Thread Eric Haskins
I vote NO yet Im not opposed to Porn heh heh :) I was an adult webmaster before Acacia Media tried to sue me for patent violations _ ~Eric ~| Create Web Applications With ColdFusion MX7 & Flex 2. Build powerful, scalable RIAs

Re: Why does IE s*(k... let me count the ways.

2007-03-05 Thread Eric Haskins
I love mondays :) The list is like watching Saturday Night Fights on Showtime LOL ~Eric ~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Coldfusion MX7 with Flex 2 http://www.adobe.com/products/coldfusion/flex

Re: CF Administrator Server Settings Errors

2007-03-05 Thread Eric Haskins
No I havent seen that Error and we are running 7.0.2 on 2K3 ~Eric ~| ColdFusion MX7 by Adobe® Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. Free Trial. http://www.adobe.com/products/coldfusion Archi

Re: Simple JS?

2007-03-05 Thread Eric Haskins
LOL Thx Jim yes parseFloat() rushing out the door to get to work :) I hate monday! Eric On 3/5/07, Jim Davis <[EMAIL PROTECTED]> wrote: > > > -Original Message- > > From: Eric Haskins [mailto:[EMAIL PROTECTED] > > Sent: Monday, March 05, 2007 9:19 AM >

Re: why "Named Virtual Hosts" in apache??

2007-03-05 Thread Eric Haskins
I use XAMPP modded to run CF and PHP. I usually use http://localhost/projectname/ but some sites you want to test full functionality so I set a hosts file and a Named VirtHost to test with a domain name. Named Virt Hosts is the same as Host Headers in IIS. Saves IP's :) -- ~Eric ~~~

Re: Simple JS?

2007-03-05 Thread Eric Haskins
I believe float() will also help with this. Eric On 3/5/07, Coldfusion <[EMAIL PROTECTED]> wrote: > > Well that is what I was learning about JS. Thanks! The trip in forcing > them > to numbers worked!! > > > -Original Message- > From: Peter Boughton [mailto:[EMAIL PROTECTED] > Sent: Mond

Microsoft Mappoint Working on CFMX 7 Standalone

2007-03-02 Thread Eric Haskins
WOW what a week!! I never thought I would be diving into java headfirst. I was able to get a map rendered via Microsoft Mappoint .NET webservice. If anyone is interested let me know and I will put up what I have. I am now working on adding functionality (I was just happy to get an example to run)

Re: Best "Download Firefox" ad ever!

2007-03-02 Thread Eric Haskins
Now that is the way to start a weekend off! All Hail Rick LOL ~Eric ~| Macromedia ColdFusion MX7 Upgrade to MX7 & experience time-saving features, more productivity. http://www.adobe.com/products/coldfusion Archive: http://www

Re: php equivalent of application.cfc

2007-03-02 Thread Eric Haskins
I run a shared PHP Hosting company and the .htaccess with prepend is how I setup phpfusebox sites Eric ~| Create Web Applications With ColdFusion MX7 & Flex 2. Build powerful, scalable RIAs. Free Trial http://www.adobe.com/prod

MapPoint and CF / Java

2007-03-01 Thread Eric Haskins
Has anyone seen any classes to do this??? I cant believe I can make this work in PHP in 10 mins and it is like building a Highrise building to get it working with CF or Java?? I have a bunch of class files but the problem is doing Digest Auth with the SOAP request We would even buy a wrapper if it

Re: Why is House Of Fusion posting email addresses?

2007-03-01 Thread Eric Haskins
Dale, Unfortunately it may be a bit before Google Drops already indexed pages before the fix. Eric On 3/1/07, Dale Fraser <[EMAIL PROTECTED]> wrote: > > Ok, > > > > So a couple of weeks have passed so I thought I'd check. > > > > 1. Still showing on House of Fusion > > 2. Still showing in

Re: Problem with Server Timing Out

2007-02-23 Thread Eric Haskins
--> SELECT * FROM WebCompanies WHERE CID=#getCompanyURLs.CID# --> SELECT * FROM WebCompanies WHERE CID=#getCompanyURLs.CID#

Re: cfcs defining datasource in application.cfm

2007-02-21 Thread Eric Haskins
Not to Hijack but I always do this // instantiate Image CFC imgObject = CreateObject("component", "model.image").init(dsn); Passing the dsn to the CFC in the create object?? Is this correct or should I change my ways? Always looking to better my skill Eric On 2/21/07, Dwayne Co

Re: Showing data from a cfquery.

2007-02-21 Thread Eric Haskins
Here is some of my code Photo Requests Results:  <<   #i# #i#   >> I just quickly hacked some code I had. I woul probably add logic to grey out the >> and << depending on the page your on -- ~Eric ~~~

Re: Regular Expression Help on Email Addresses

2007-02-21 Thread Eric Haskins
Kind of a hack Im sure it can be done better but this works. Im still learning :) -- ~Eric ~| ColdFusion MX7 by Adobe® Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. Free Trial. http://www.a

Re: Regular Expression Help on Email Addresses

2007-02-21 Thread Eric Haskins
I am working on a variable mask version as I have time. This one will atleast mask the domain for now. Eric On 2/20/07, Eric Haskins <[EMAIL PROTECTED]> wrote: > > "([a-zA-Z0-9_\-\.]+)@((([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})", > "[EMAIL PROTECTED]&q

Re: Regular Expression Help on Email Addresses

2007-02-20 Thread Eric Haskins
Try this one Eric On 2/20/07, K Simanonok <[EMAIL PROTECTED]> wrote: > > I would like to use a regular expression to camouflage email addresses in > a forum I'm building. I'd like to replace just the domain name (not the > .com or .net or other extension though) with x's: > > FROM THIS: [EM

Re: Credit Cards - How to handle

2007-02-19 Thread Eric Haskins
Auth.Net does offer ARB (Automatic Recurring Billing) but I believe it costs more and required manually setting the txn to reoccur. This doesnt help a company that wants to offer rebilling. Alot of webhost billing systems have their own way to encrypt CC Info ,AWBS for instance. Advantage is they

Re: Credit Cards - How to handle

2007-02-19 Thread Eric Haskins
I have had a couple requests like this and I generally keep 5446 7086 In the Database and send the middle 8 via email. Doesn't really make you compliant because if they hack the server and you haven't checked your mail some people will be compromised(if on shared hosting where mail and

Re: Credit Cards - How to handle

2007-02-19 Thread Eric Haskins
Here is what you can use. Just remember you'll need 2 for redundancy http://www.ncipher.com/ http://www.ncipher.com/cryptographic_hardware/hardware_security_modules/10/nethsm/ PCI requirement if you are going to store customer info. Eric

OT: Verisign/Paypal Down

2007-02-19 Thread Eric Haskins
Paypal Payflow Pro went down today at 9:20AM est. We couldnt reach anyone on the phone due to the stupid holiday. So I created a post on the Paypal dev site to see if it was just us and boom a bunch of folks with the same problem. We were literally watching fly away lol. Finally at 1:34pm we

Re: Client variables? reliable enough?

2007-02-15 Thread Eric Haskins
"And to add to the fun of it all, we have to have a new session variable each page request." Can you explain this a bit?? What do you mean? ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerfu

Re: Client variables? reliable enough?

2007-02-15 Thread Eric Haskins
Coming over from php I have always used Session Vars to start off. I have uncovered issues with the Client Vars here in my current position. If you do high volume and have a large customer base you can experience a performance hit with Client Var lookups. Eric ~~~

  1   2   >