SOT: SQL SERVER RESTORE DATABASE

2004-04-22 Thread Phoeun Pha
Hey guys I set up a new instance of SQL server 2000 on a new machine, and am trying to restore a database from a backup file.I backed up the mdf and ldf file as well. the ldf that i backed up is 4GB.I was wondering if I needed todo something with that, or if i can just throw thataway. THanks!

RE: How Good is the Job Market for ColdFusion?

2002-10-16 Thread Phoeun Pha
THat still isn't HARD FACTS. It could mean 4 ASP servers with 89.2 million asp pages in their apps, and 20 million CF servers with X CFM pages in their apps combined. I know the numbers are exxagerated a bit, but u get the drift -Original Message- From: Mike Brunt [mailto:[EMAIL

RE: select more columns

2002-10-16 Thread Phoeun Pha
take off the single quotes on VISITS. you dont need it cfquery name=getsomedata datasource=log_stats select URL count(url) as VISITS, IP_Column, Date_Column from log_data group by url order by visits desc /cfquery -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED]] Sent:

RE: select more columns

2002-10-16 Thread Phoeun Pha
oops sorry u also need to take off URL so it should be like cfquery name=getsomedata datasource=log_stats select count(url) as VISITS, IP_Column, Date_Column from log_data group by url order by visits desc /cfquery -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent

RE: select more columns

2002-10-16 Thread Phoeun Pha
it so it reads 10/01/2002. I was looking at the dateformat cmd, but I don't think that is useful. Any ideas? I'm still kind of new to this... Robert O. -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 16, 2002 3:39 PM To: CF-Talk Subject: RE: select more

RE: Checkbox Value

2002-10-16 Thread Phoeun Pha
cfif userinfo.worh EQ 1 CFSET checked=Yes CFELSE CFSET checked=No /CFIF cfinput type=checkbox name=worh value=1 Checked=#checked# -Original Message- From: Jillian Carroll [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 16, 2002 2:51 PM To: CF-Talk Subject: Checkbox Value I know

RE: Checkbox Value

2002-10-16 Thread Phoeun Pha
It's because he put CFIF tags inside a CF TAG. I dont think that is allowed and thus Coldfusion couldn't parse it correctly. -Original Message- From: Everett, Al [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 16, 2002 3:14 PM To: CF-Talk Subject: RE: Checkbox Value Hard to tell

HTML FORM

2002-10-14 Thread Phoeun Pha
Hey guys I have an HTML form where people put in their information. What I want to happen is this. When they submit the form, have CF write a html file that looks exactly like the HTML form, except it will have the data in the fields provided by the submitter. Any suggestions as howto approach

RE: Mixing CF and ASP on same server

2002-09-23 Thread Phoeun Pha
It's really a matter of being able to afford another server. Otherwise, nuffin wrong :) -Original Message- From: Earl, George [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 12:31 PM To: CF-Talk Subject: Mixing CF and ASP on same server Is it ok to mix ColdFusion and ASP

RE: 3 Tier Security

2002-09-18 Thread Phoeun Pha
How about a Class 2 force field around the servers heh... The way u have it set up now is wy more secure than most people have it. -Original Message- From: Michael Ross [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 2:30 PM To: CF-Talk Subject: 3 Tier Security

OT: Technology?

2002-09-12 Thread Phoeun Pha
When can you call something technology? Like if I made my forms look different for each user according to their preference, is that called technology? To me it's just a few lines of coding and logic. The same thing goes with Amazon's One-Click technology. I am sure most of us have heard of

RE: session logout on browser close

2002-09-12 Thread Phoeun Pha
Whata re the problems exactly? Do your clients want the session to end when they close the browser? or not? If they do, then the body onunload=window.open('logout.cfm'); deal works great. No concievable problem. -Original Message- From: Gyrus [mailto:[EMAIL PROTECTED]] Sent:

RE: Implementing remember me capability

2002-09-09 Thread Phoeun Pha
First have a cookie named RememberMe. Its only values are only 1, or 0. 1 being Yes, and 0 being No. When users choose the RememberMe option, set that cookie to 1, and set another cookie with some randomly generated unique alphanumeric string. Call this cookie MyUniqueNum. Also set the your

RE: Implementing remember me capability

2002-09-09 Thread Phoeun Pha
, 2002 10:18 AM To: CF-Talk Subject: RE: Implementing remember me capability How do you read the cookie using Javascript? TIA, Susan Hamilton Allen Web Programmer Pfingsten Publishing, L.L.C. Seven Hills, OH 44131 -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Monday

RE: Session question

2002-09-09 Thread Phoeun Pha
Session exists across browser windows. It's the nature of sessions. Session is not encapsulated in one browser. But what is the big deal? Is there a real problem you are having with sessions existing over browsers? -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]]

RE: Session question

2002-09-09 Thread Phoeun Pha
ermm you don't can't fix it lol. It's kinda like saying, Boss, there's a bug in this array. Everytime I delete an element in the array, the array elements realign themselves! It's not a bug! There's nothing wrong with the session existing across multiple browsers. Have you thought of a

RE: Session question

2002-09-09 Thread Phoeun Pha
: Session question LOL... Well the problem it may cause is that a not so computer literate wants t sign up for a class opens 2 windows and gets confused and gives up on our site.. Lol that's a reach -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002

RE: Session question

2002-09-09 Thread Phoeun Pha
Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 12:08 PM To: CF-Talk Subject: RE: Session question Well, if this is any assurance... You're the only person ever to have come across a problem with this non problem. COmmon people have been online shopping since

OT: Unlimited bandwidth

2002-09-09 Thread Phoeun Pha
Is there a coldfusion host that offers unlimited bandwidth? -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 11:47 AM To: CF-Talk Subject: RE: Java and Verisign Try this for your JVM path (it's looking for the dll): Java Virtual Machine

RE: Preventing User from Re-submitting Add Record Form

2002-09-09 Thread Phoeun Pha
I first thought that this was an issue with people clicking the submit button twice but it's just another case of THINGS YOU CAN'T CONTROL. Here is something you can do. On that add new member page, write a javascript to clear all the fields, you know, when the page loads (ex. use onload

RE: CFMX - Slow, why?

2002-09-09 Thread Phoeun Pha
Big deal. I can't tell the difference between 1 MS and 10,000 MS. The delay is there in the beginning because the code has to be compiled first. It's a annoying :) When I was a young boy, I walked 5 miles barefoot to school, in the snow! -Original Message- From: Sean Daniels

RE: Error trying to create an Array

2002-09-05 Thread Phoeun Pha
Usually coldfusion gives a reason for the error, instead of just stating the error. Now whats the reason?? -Original Message- From: Larry Juncker [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 05, 2002 10:29 AM To: CF-Talk Subject: Error trying to create an Array Can anyone tell

RE: Getting a business off the ground

2002-09-05 Thread Phoeun Pha
That depends on what kind of business you're going into, and how well you market your product. At least you already have something to sell! What is it by the way? Oh, a couple of my college buddies and I decided to get into the web business. You know, your typical web solutions business.

RE: Looking for mail tag - submit form emails contents without all the code...

2002-09-05 Thread Phoeun Pha
Man it only takes a few minutes. stop being lazy! =) -Original Message- From: Steven A. del Sol [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 05, 2002 1:23 PM To: CF-Talk Subject: Looking for mail tag - submit form emails contents without all the code... I am sure there is

RE: Looking for mail tag - submit form emails contents without al l the code...

2002-09-05 Thread Phoeun Pha
the Advanced ColdFusion 4.0 Application Development book (p. 123). Hey wait! All the code examples are on the CD that comes with the book! You do have Uncle Ben's book, don't you? -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 05, 2002 3:58 PM

OT: SQL Server Export

2002-09-04 Thread Phoeun Pha
Hey guys, whenever i do an export of tables from one DB to another, it never copies the table attributes, such as default value, for example. I have many instances where the default value is needed. Can someone let me know how to do this? maybe i missed a step in the DTS thanx

OT: Virus in JPG???

2002-09-04 Thread Phoeun Pha
Hey guys, I have been having virus problems lately, especially this backdoor trojan virus. It appears to be embedded in a JPG file! How can that be?! I thought viruses only worked in executables and scripts. heh. My apps are crapping out on me as well. Only thing that works is IE and winamp!

RE: Hiding Source Code

2002-09-04 Thread Phoeun Pha
hey PaulAs long as those values are not Credit Card number or something compromising, don't worry about it. Anyhow, variable values are always showing up on the dang page. That's what non-static web pages are all about, eh? Also what is the variable whose value is being shown? Can you

RE: Hiding Source Code

2002-09-04 Thread Phoeun Pha
URL variables are good if the values are non compromising, and as long as you validate them :) And no, you cannot hide HTML code. Oh, sure, yeah, you can set it in IIS to not reveal source code, and users with IE won't be able to see it. But then they'll just open up Mozilla and use that

RE: Infinite loop... (continued)

2002-09-03 Thread Phoeun Pha
Where's the code, bro? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 03, 2002 10:54 AM To: CF-Talk Subject: Infinite loop... (continued) Alright, I give up... for whatever reason this is spinning the page into an infinite loop. It

RE: Cold Fusion MX Flash MX Applications

2002-08-29 Thread Phoeun Pha
I believe flash has its uses, but it shouldn't and CAN'T replace certain things a browser can offer, like a BACK button! And it's also time consuming to write actionscript to make it mimic a browser. The only thing good about using flash is animation and a really good looking interface. I am

Women programmers

2002-08-29 Thread Phoeun Pha
I think I asked about this a year or two ago, but are more women getting into hardcore programming, or at least, developing (hehe)? A few years ago web design was dominated by guys (no stats, just almost sure it was that way), and now I'm bumpin into all these women designers. I guess it was

RE: Looping depending on CFIF Statement

2002-08-29 Thread Phoeun Pha
CF doesn't allow you to put un-closed tags in CFIF statements like that. Tell me exactly what you want to happen so i can help yo structure it the right way -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 10:38 AM To: CF-Talk Subject:

RE: Warning: Page has Expired Error - How do I get rid of this?

2002-08-29 Thread Phoeun Pha
that is wierd i have never come across that problem, unless it was an upload form -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 10:43 AM To: CF-Talk Subject: Re: Warning: Page has Expired Error - How do I get rid of this? Hi Ali,

DNS question

2002-08-29 Thread Phoeun Pha
Hey guys I have a site that was registered through Verio (verio.com). And now I am going to have ti hosted on a new site, and my host has given me the IP address for the site. However, the host doesn't have a DNS service. What do I do? Right now, the verio guys are my DNS service. DO i call

RE: Women programmers

2002-08-29 Thread Phoeun Pha
. here}. I actually find it really annoying when I walk in new to a team and get the assumption that I'm there to make the application look pretty or design/develop the GUI. - Original Message - From: Phoeun Pha [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 29, 2002 11

OT: hostcentric

2002-08-29 Thread Phoeun Pha
Are they any good is CFdynamics better? __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: [OT] Re: Women programmers (OT Threads)

2002-08-29 Thread Phoeun Pha
Jon, what does this have to do with factual discussion. No more OT from you! heh Sorry, I was the one who made the some of the original OT posts, but did not expect it to drag on for that long. -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29,

Semi OT question: Skills for jobs

2002-08-28 Thread Phoeun Pha
Hey guys and gals and code monkeys, it's come to my attention that Employers are looking for someone with a wide range of skills For example, one required that you know C++, Coldfusion, ASP, Dreamweaver, VBScript, Java, Adobe Photoshop, Macromedia Flash... Oh, and it would be a PLUS if you

RE: Function?

2002-08-28 Thread Phoeun Pha
Why not just let it happen when the user clicks a submit button? Onexit AKA OnBlur is creepy and confusing. but it's possible to do it your way. First write a javascript function to submit the form. THen in the form field for the SSN, add in this attribute.. onblur=nameoffunction();

RE: Function?

2002-08-28 Thread Phoeun Pha
with the form. -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 1:01 PM To: CF-Talk Subject: RE: Function? Why not just let it happen when the user clicks a submit button? Onexit AKA OnBlur is creepy and confusing. but it's possible to do it your way

RE: Cflocation and a popup

2002-08-28 Thread Phoeun Pha
actually, this would work cfif NOT IsDefined('session.client_id') script language=javascript function pupUpb() blah blah blah; /script /cfif it runs the script right in there :) -Original Message- From: Kodjo Ackah [mailto:[EMAIL PROTECTED]] Sent:

RE: Function?

2002-08-28 Thread Phoeun Pha
message, display a submit button for them to click. heh i'm sleepy i guess -Original Message- From: charlie griefer [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 12:34 PM To: CF-Talk Subject: Re: Function? Phoeun Pha writes: That is unconventional. Do it this way

programmer vs. developer

2002-08-28 Thread Phoeun Pha
whats the difference? __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: programmer vs. developer

2002-08-28 Thread Phoeun Pha
Mikey, It's just that i saw certification classes for Java programmer, and Java developer. Is developer reserved for WEB? And programmer reserved for Stand Alone apps? -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 12:52 PM To:

RE: Cflocation and a popup

2002-08-28 Thread Phoeun Pha
that's cos you're doing it wrong! u need home_login.cfm to be a text and where di the variable ID from from? where was it defined? -Original Message- From: Kodjo Ackah [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 12:49 PM To: CF-Talk Subject: RE: Cflocation and a popup

RE: programmer vs. developer

2002-08-28 Thread Phoeun Pha
I think it's ego and class distinction. I remember my first time trying to learn to make web pages, and I would use an application to do itsay, dreamweaver. I'd ask some coder questions, and he would go off on how these programs sucked and Notepad all the way!. I guess it's like this. He

RE: Web Hosting services for ColdFusion

2002-08-28 Thread Phoeun Pha
i think he was just being mean and joking. And i found that hilarious lol -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 1:11 PM To: CF-Talk Subject: Re: Web Hosting services for ColdFusion [EMAIL PROTECTED] writes:

RE: Web Hosting services for ColdFusion

2002-08-28 Thread Phoeun Pha
they also offer support for gifs, jpg, and even flash files! HTML also supported, free of charge! -Original Message- From: charlie griefer [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 1:55 PM To: CF-Talk Subject: Re: Web Hosting services for ColdFusion [EMAIL PROTECTED]

RE: Dyanmic Form Names huh?

2002-08-27 Thread Phoeun Pha
First of all, in the first page, in a hidden field, give it a value of how many sections there are, which i hope u can do. Let's call this hidden field num_sections. Then, in the processing page for the loop CFLOOP index=index from=1 to=#form.num_sections# cfif evaluate('form.section'

RE: Blatant advertising: Two new CF books!

2002-08-27 Thread Phoeun Pha
Come on yall, Ben's growling. Let's help him make some dough. I'm gettin a copy today if i can! -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 27, 2002 1:13 PM To: CF-Talk Subject: RE: Blatant advertising: Two new CF books! G! It is

form.fieldnames question WAS RE: Dyanmic Form Names huh?

2002-08-27 Thread Phoeun Pha
Wouldn't #form.fieldnames# return all the fields? i mean what if there were some other fields that was passed through but not related to form.section this would work. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 27, 2002 3:21 PM To: CF-Talk

OT: WHy is this list so slow??

2002-08-27 Thread Phoeun Pha
Can someone (Mike?) explain to me why this list is soo so SOO slow? I mean, the subscription system works pretty darn fast. Why's the list so slow? ::sniff:: __ Structure your ColdFusion code with

RE: Mail Delivery Status Notification blah!

2002-08-26 Thread Phoeun Pha
Tell me if I'm wrong, but doesn't displaying the profanity in this notification undermine the silly censorship system in the first place? whats the point? -Original Message- From: Postmaster [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 4:01 PM To: CF-Talk Subject: Mail

RE: Debug

2002-06-25 Thread Phoeun Pha
what IP address do u use for the server? an external or internal? also, try 127.0.0.1 :0)~ -Original Message- From: Ashe Richards [mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 9:04 PM To: CF-Talk Subject: Debug I'm having a bit of a problem after upgrading to CF5. For some

Browser Question

2002-06-25 Thread Phoeun Pha
Hey guys, any insight on this. When you are on the web and putting information onto a form, and press submit, your browser sends information to the server. Is it possible to know what exactly your browser is sending? I mean would it be possible to manipulate exactly what you send, but from

RE: Browser Question

2002-06-25 Thread Phoeun Pha
: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: 25 June 2002 15:53 To: CF-Talk Subject: Browser Question Hey guys, any insight on this. When you are on the web and putting information onto a form, and press submit, your browser sends information to the server. Is it possible to know what exactly

RE: Debug

2002-06-25 Thread Phoeun Pha
). Ashe - Original Message - From: Phoeun Pha [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, June 25, 2002 9:28 AM Subject: RE: Debug what IP address do u use for the server? an external or internal? also, try 127.0.0.1 :0)~ -Original Message- From: Ashe

RE: Browser Question

2002-06-25 Thread Phoeun Pha
will cover several ways to do this... -Cameron - Cameron Childress Sumo Consulting Inc. --- cell: 678-637-5072 aim: cameroncf email: [EMAIL PROTECTED] -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 10:53 AM

RE: Devcon Volunteers

2002-06-25 Thread Phoeun Pha
Why stop at a beard? http://www.snifflebear.com/woops.jpg Look like that and they'll never notice! haha :D -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 11:37 AM To: CF-Talk Subject: Devcon Volunteers any one know if MM has any programs

RE: Devcon Volunteers

2002-06-25 Thread Phoeun Pha
That's Bob getting ready for a NADs infomercial :) -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 12:06 PM To: CF-Talk Subject: Re: Devcon Volunteers Isn't that Bob Vila? On Tuesday, June 25, 2002, at 09:50 AM, Phoeun Pha wrote: Why

RE: test

2002-06-25 Thread Phoeun Pha
This means my comments are searchable through the net? eheh Time to subscribe to a new account! -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 12:05 PM To: CF-Talk Subject: Re: test The easiest way to see if the lists are up is to

Javascript/HTML Based Chat Tip

2002-06-25 Thread Phoeun Pha
I noticed that some javascript/html based chats are made up of 2 frames (one on top of the other)-one frame displaying the chat messages, and the other for message input. The frame displaying the chat messages would refresh at a specified interval to refresh messages. I find this quite

RE: Javascript/HTML Based Chat Tip to Jann

2002-06-25 Thread Phoeun Pha
Um I'm not sure of the point of your post, but ... Javascript is NOT Java Just doing my bit to educate the world On 6/25/02 11:06 AM, Phoeun Pha [EMAIL PROTECTED] wrote: I noticed that some javascript/html based chats are made up of 2 frames (one on top of the other)-one frame displaying

RE: Removing html tags stored with text in a database

2002-06-25 Thread Phoeun Pha
use replace character functions -Original Message- From: Charlie [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 2:59 PM To: CF-Talk Subject: Removing html tags stored with text in a database I have data ( company profile ) stored in a SQL Server data table (ntext). The

RE: Javascript/HTML Based Chat Tip

2002-06-25 Thread Phoeun Pha
to educate the world On 6/25/02 11:06 AM, Phoeun Pha [EMAIL PROTECTED] wrote: I noticed that some javascript/html based chats are made up of 2 frames (one on top of the other)-one frame displaying the chat messages, and the other for message input. ... muwhahahahaha! no need

RE: Removing html tags stored with text in a database THE CODE

2002-06-25 Thread Phoeun Pha
Here this works perfect. The final stuff will be in the variable called TEMP, so just cfoutput it somewhere. you owe me! :) Profile is the variable of the company profile, of course. change it to whatever you wish. dont change anything else CFSET temp=profile CFLOOP index=index from=1

RE: cflocation url length

2002-06-24 Thread Phoeun Pha
it's a browser thing :) I recall a convo where IE was restricting limits. the question is, what the heck are u passing?! -Original Message- From: Rob Baxter [mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 5:17 PM To: CF-Talk Subject: cflocation url length I've noticed that

Future of Coldfusion

2002-06-14 Thread Phoeun Pha
Hey guys, where do you think coldfusion is headed? I mean, when 4.5 came out, it was like when AMD came out with their cheap and competitive Athlons! But all of that excitement kind of died down.well, at least for me anyways. But how about you guys? Maybe the Macromedia merge had

Coldfusion WishList

2002-06-14 Thread Phoeun Pha
Well, first of all, I wish there was a email list for CF wishlists. Seondly, I was just wondering what you guys always wanted in Coldfusion, but is missing from CFMX?? I couldn't think of anythign yet :) __ Get the mailserver

RE: Future of Coldfusion

2002-06-14 Thread Phoeun Pha
As you are reading this I am in process of submitting a trademark for that phrase. Any use of that phrase, whether exclaimed, or as a question, will be subject to payment per use! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, June 14, 2002 12:32 PM

Coldfusion Apps You've Built

2002-06-14 Thread Phoeun Pha
Hey guys, I'm 2 years in the CF game, and so far I've built a timesheet program, and events administration, countless shopping carts, pharmacy prescription app. But looking back at my code, it was verry bddd! Like I could think of a hundred places to do things differently, either form CF

RE: Coldfusion Apps You've Built

2002-06-14 Thread Phoeun Pha
2002, Phoeun Pha wrote: Hey guys, I'm 2 years in the CF game, and so far I've built a timesheet program, and events administration, countless shopping carts, pharmacy prescription app. But looking back at my code, it was verry bddd! Like I could think of a hundred places to do things

RE: Coldfusion Apps You've Built

2002-06-14 Thread Phoeun Pha
better. My thoughts Shawn Grover -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Friday, June 14, 2002 11:31 AM To: CF-Talk Subject: Coldfusion Apps You've Built Hey guys, I'm 2 years in the CF game, and so far I've built a timesheet program, and events

RE: Creating Images Question

2002-06-14 Thread Phoeun Pha
Hey brian, there's a CFX tag that createsdynamic images, i think as a JPG...u can specify the text, size, font, color, background color, width, height In fact, u can even use an existing image that has its own cool background, and then dynamically put text in front of it. just check around

RE: Coldfusion Apps You've Built

2002-06-14 Thread Phoeun Pha
The most embarassing code I've written involved displaying the names of events in calendar-like page (each day would list the events). Well, I have never used the GROUPING attribute in the CFOUTPUT, so instead I ended up looping through the query for the right events, and if the event matches

Structure vs. array

2002-06-14 Thread Phoeun Pha
I always found structures to be harder to work with than arrays. in fact i find nothing useful with structure (cuz of ignorance, of course) :) Can someone gimme an example of when a structure should be used and what not? Cuz structures are one of the few main things I have left to touch in

RE: registry error

2002-06-13 Thread Phoeun Pha
try deleting it from the ODBC datasources control panel instead of using the Coldfusion admin that is, if you're using windows :) -Original Message- From: Steven Dworman [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 1:51 PM To: CF-Talk Subject: registry error I've never had

SOT: DNS Havoc!!

2002-06-13 Thread Phoeun Pha
Hey guys i just switched to a new host for the website www.entelligence.com But for some reason it still pings to the old host IP address Can you guys Ping the site and tell me (directly to my email) what address you get? The new host IP is 66.28.113.146 The old host IP is 209.113.73.92 The

RE: DNS Havoc!!

2002-06-13 Thread Phoeun Pha
-Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 1:47 PM To: CF-Talk Subject: SOT: DNS Havoc!! Hey guys i just switched to a new host for the website www.entelligence.com But for some reason it still pings to the old host IP address Can you guys Ping

RE: registry error

2002-06-13 Thread Phoeun Pha
International Empower-XL Software for Higher Education http://www.ComspecInternational.com - Original Message - From: Phoeun Pha [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, June 13, 2002 2:18 PM Subject: RE: registry error try deleting it from the ODBC datasources

RE: CF_Forms_in_HTML_E-Mail No Answers yet

2002-06-13 Thread Phoeun Pha
process is spelled with 1 c only. maybe u got the spelling mixed up with the actual file -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 5:03 PM To: CF-Talk Subject: CF_Forms_in_HTML_E-Mail No Answers yet Hello, No one seems to be

RE: Does cfcookie depend on cfapplication

2002-06-12 Thread Phoeun Pha
Why are you structuring your app that way though? CFAPPLICATION should be used to define the scope of one application, not the scope of a permission. I suggest a different approach on structing the permissions part of your web. If you're interested, contact me! And to answer your

Re: Form Question

2001-04-04 Thread Phoeun Pha
hello u silly person. lets say the forms made were day1, day2, and day3 and i also have a hidden form called "how" that has the values of how many "day" forms i have, which is 3. this is how u would call them out dynamically when you do your update query CFLOOP index="number" FROM = 1 TO =

Re: date range search - thanks!

2001-04-04 Thread Phoeun Pha
i guess i'm one of the "others" heh - Original Message - From: Robert Orlini [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, April 04, 2001 12:07 PM Subject: date range search - thanks! Thanks to all (Lamon, Steve, Jason, Jay, Phillip, Paul, and others) who helped

Re: How to Allow a Doesn't Matter Variable in a Search?

2001-04-04 Thread Phoeun Pha
just set a condition to not do a WHERE statement in your SQL if they choose "it don't matter" - Original Message - From: P@tty Ayers [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, April 04, 2001 11:30 AM Subject: How to Allow a "Doesn't Matter" Variable in a Search?

RE: Posting screenshots

2001-04-03 Thread Phoeun Pha
go to www.download.com, and check out screenImg 1.0 (shareware) this program takes screenshots and saves them as jpegs to the hard drive (u specify it in the preferences). this is how i would approach this. u build an interface for reporting bugs, and have an upload file thingy. have the

RE: Do I need to run ColdFusion IDE Service?

2001-04-03 Thread Phoeun Pha
Studio has bad memory management, thats what i heard -Original Message- From: Peter J. MacDonald [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 12:57 PM To: CF-Talk Subject: RE: Do I need to run ColdFusion IDE Service? Jeff, I ran CF 4.5 on win 98 fine for over six months.

RE: Stupid Question? - Commenting Code That Does Not Show in Brow ser

2001-04-03 Thread Phoeun Pha
this is what i would do. u will have to work a login page (u decide how to verify it). all this login page will do is set a session or application variable to true, or some value. then in your actual code, i would wrap a condition around your comment, to only let the comment show (on the

RE: Posting screenshots

2001-04-03 Thread Phoeun Pha
dude, whats so HARD about pressing a button that makes the screenshot and saves it automatically somehwere that can be found easily, then uploaded? if u still dont wanna go that route, i was thinking maybe make a java applet that acts like a simple graphics program and peeps and just paste

RE: Stupid Question? - Commenting Code That Does Not Show in Brow ser

2001-04-03 Thread Phoeun Pha
ack! i didn't know that! ::dies:: sorry jeff, i guess the CF hyphen thing is much easier to implement than what i posted earlier! I learned something today! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 1:50 PM To: CF-Talk

RE: Uploading a Zip file with cfhttp

2001-04-03 Thread Phoeun Pha
i assume u are using codlfusion's scheduling thingy right? what I would do is make a javascript that would submit the form, with the correct path of the file embedded as the form value. -Original Message- From: Nathan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 2:09 PM

RE: Stupid Question? - Commenting Code That Does Not Show in Brow ser

2001-04-03 Thread Phoeun Pha
answer - ignore the response below. use the !--- --- vs. !-- -- as many experienced CF developers have already posted in this thread. -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 11:46 AM To: CF-Talk Subject: RE: Stupid Question? - Commenting

RE: tracking visitors on CF pages?

2001-04-03 Thread Phoeun Pha
blah, I'd just get a host that'll provide that stuff for ya. heh like www.hostcentric.com they track by sessions, hits, IP machines, man, anything everything! they got charts. (I'm not promoting hostcentric in anyway, my point is to use other people's stuff) otherwise, code all that stuff

RE: Stupid Question? - Commenting Code That Does Not Show in Brow ser

2001-04-03 Thread Phoeun Pha
Thanx for that saying. Although i don't think it's a stupid idea, it's not the best idea, but hey variety is good. had I known of the coldfusion comment, I would have recommended that instead. sorry, I'm not as advanced as most of yall :) -Original Message- From: Jeffry Houser

RE: date range search

2001-04-03 Thread Phoeun Pha
take out the single quotes from the query. -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 3:30 PM To: CF-Talk Subject: date range search I'm working on a search form which can search between a range of dates. I'm using the code below and

RE: tracking visitors on CF pages?

2001-04-03 Thread Phoeun Pha
: productdetails.cfm) but i want to be able to tell down to the actual product (ie: productdetails.cfm?ID=10) Thanks, Donna French -Original Message- From: Phoeun Pha [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 2:40 PM To: CF-Talk Subject: RE: tracking visitors on CF pages? blah, I'd

RE: dynamic form builder

2001-04-03 Thread Phoeun Pha
If you dont happen to find one, I'll create one for you (prolly take me 2 days or 8 hours whichever comes first) hehe. all i will do is create the interface and the database. how u want to use that data and make the options show is up to you, and i will help u with that if needed. errr, for

RE: tracking visitors on CF pages?

2001-04-03 Thread Phoeun Pha
visitors on CF pages? this method really adds a lot of database transactions...not to mention more network traffic. I am sure with some tweaking a tool like Webtrends could tell you what you are looking for...provided you can access your log files. -Original Message- From: Phoeun Pha [mailto

RE: Here's A Good One...

2001-04-03 Thread Phoeun Pha
you have to tell it to display median time, not military time :P (use the timeformat function) -Original Message- From: Robert Forsyth [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 4:03 PM To: CF-Talk Subject: Here's A Good One... Since the time change this weekend The

  1   2   3   >