detecting pdas and redirecting them

2007-11-28 Thread mayo
I need to do a quick down and dirty retrofit of a site. Adding a Stylesheet media=handheld will be too time-consuming. I would rather do this server-side: if HTTP_USER_AGENT = handheld redirect to another page. Looking around - and asking on a CSS list doesn't get me very far. I can't be

trouble nesting outputs

2007-11-13 Thread mayo
I'm having a little trouble with a project. I need to display a spreadsheet like set-up with product names on the left; quality types along the top; and the user fills in the product quality scores. The products are foods and the qualities have to do with taste, texture, etc. The user will

problems with the JRun server

2007-09-05 Thread mayo
I'm having problems correctly installing CFMX 6 on Windows XP Pro SP 2. I get everything to work except the admin section. Not good if you need to set datasources. Apparently SP2 causes some problems. I'm kinda getting down to the core of the problem. The JRun server is not being accessed

RE: problems with the JRun server

2007-09-05 Thread mayo
: problems with the JRun server What happens if you turn off the firewall? On 9/6/07, mayo [EMAIL PROTECTED] wrote: I'm having problems correctly installing CFMX 6 on Windows XP Pro SP 2. I get everything to work except the admin section. Not good if you need to set datasources. Apparently

SOLVED RE: braindead duh!! moment with db

2007-09-03 Thread mayo
. If you have ds in the recordset from the CFDUMP then I would go back and run the query in the database and look at what is in the tables. -Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sent: Friday, August 31, 2007 3:10 PM To: CF-Talk Subject: RE: braindead duh!! moment with db

braindead duh!! moment with db

2007-08-31 Thread mayo
My queries aren't working. Can't figure it out. SELECT items.itemID, items.designerID, designers.designerID, designers.designerName, FROM items,

RE: braindead duh!! moment with db

2007-08-31 Thread mayo
Yes, it was abbreviated. And, yes I'm tired. I should have stated designerID not designerName? here's a snippet (MUCH IS CUT OUT) cfquery name=getItems datasource=storeSR SELECT items.itemID, items.categoryID, items.itemTypeID,

FW: CFMX installation problems

2007-08-27 Thread mayo
I'm trying to install CFMX 6 on Windows XP Pro with Service Pack 2. I've installed, removed, reinstalled IIS and CFMX 6. I've tried it as a stand-alone server (port 8500) as well. I keep getting the same problem: I'm unable to access the admin area. I keep getting the same error.

CFMX installation problems

2007-08-27 Thread mayo
I'm trying to install CFMX 6 on Windows XP Pro with Service Pack 2. I've installed, removed, reinstalled IIS and CFMX 6. I've tried it as a stand-alone server (port 8500) as well. I keep getting the same problem: I'm unable to access the admin area. I keep getting the same error.

installing CFMX, problems accessing CFIDE

2007-08-26 Thread mayo
I'm trying to reinstall CFMX 6 and am having problems accessing CFIDE/administrator. From what I've read SP2 for XP Pro is causing the problem. How does one get around this? IIS is working fine. CFMX is working, ie all files that don't make a database call are working fine. And, as I can't

list / array problems, scheduling problem

2006-12-03 Thread mayo
I'm having a hell of a time building an employee scheduling calendar. - Employer has several locations, employees may work at more than one location. - There will usually be more than one employee per location. - Employer is looking for a scheduling calendar that can show the month and list

RE: OT: Humor for the day

2005-12-03 Thread mayo
There's an older, simpler one that I have. Guess I should scan it and upload it. Gilbert Midonnet GLM Designs 718-928-4524 www.glmdesigns.com -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Thursday, December 01, 2005 2:59 PM To: CF-Talk Subject: RE: OT:

embedded loops, trouble with

2005-06-29 Thread mayo
I was asked to display financial calculations. It requires embedded loops and I've been spinning my wheels on this project. The first task is to keep going through a loop until one reaches an inputted number. EX: The mortgage will be paid off in [ 36 ] months. So the loop is cfloop from=1

RE: search on house of fusion broken

2005-06-29 Thread mayo
Mike, First of all -- thank you for creating and moderating this listserv. I have to second the point that the searches are not very useful. It would be great to do searches on -- subject line -- from line -- date range I know you have tons on your plate but I'm sure you'll have tons of

RE: embedded loops, trouble with

2005-06-29 Thread mayo
- whatever !-- or inside the inner loop maybe?? -- /cfloop -Original Message- From: Eddie [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 29, 2005 4:19 PM To: CF-Talk Subject: Re: embedded loops, trouble with On 6/29/05, mayo [EMAIL PROTECTED] wrote: I was asked to display financial

RE: group by date, missing something

2005-06-24 Thread mayo
Jochem, Thx. I've reread your posts a few times. It will help next time. -- gil -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Thursday, June 23, 2005 6:41 PM To: CF-Talk Subject: Re: group by date, missing something mayo wrote: SELECT MONTH(saleDate

group by date, missing something

2005-06-22 Thread mayo
I'm trying to do a group by date on an access db. I have a list of sales and want to group by month and year. I can't get even a test run to work SQL below: SELECT MONTH(saleDate) AS theMonth, sum(saleTotal) as dailyTotal FROM sales GROUP by theMonth Thx

RE: group by date, missing something

2005-06-22 Thread mayo
, 2005 7:35 PM To: CF-Talk Subject: Re: group by date, missing something SELECT sum(saleTotal), saledate FROM sales GROUP BY saledate - Original Message - From: mayo [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, June 22, 2005 6:29 PM Subject: group by date

RE: group by date, missing something - SOLVED, thx

2005-06-22 Thread mayo
- From: mayo [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 9:52 PM To: CF-Talk Subject: RE: group by date, missing something Thanks eric, but that gives a total for every day. June 21 10,000 June 20 9,555 June 19 11,200 . That's useful but I'm trying to get

RE: using excel functions in cfmx, now off topic

2005-06-08 Thread mayo
By the way I went to the Ice Hotel. It was absolutely beautiful -- and not cold at all for anyone who goes backpacking. mayo -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 08, 2005 4:29 AM To: CF-Talk Subject: RE: using excel functions

using excel functions in cfmx

2005-06-07 Thread mayo
I have a client who would like to be able to put some calculators online. Currently these calculators are in excel. Is there a relatively simple way to have a user enter in the variables, have these variables processed by excel and and have the result on a ..cfm page? Thx, mayo

RE: using excel functions in cfmx

2005-06-07 Thread mayo
Some of the functions in excel such as standard deviations would be time consuming to create in CFML, but I guess I'll have to write them if I want them. I didn't think it was possible -- but I was hoping that it was. :-) Mayo -Original Message- From: Matthew Walker [mailto:[EMAIL

cybersource COM object

2005-06-06 Thread Cary Mayo
I need help getting the cybersource COM object working in CF 5. I have some code from a gentleman that works in 6.1, but I am getting the following error in CF5 Arguments expected by object does not match arguments specified in the tag here is the code cfscript oRequest =

mySQL, set preceeding zeros in auto_increment

2005-05-26 Thread mayo
I don't use mySQL that often. I need a 12 character auto_increment number. (I need to start with '01') I've been searching for an hour an unable to find how to set the auto_increment number. Thx mayo ~| Logware

RE: adding subtotals - SOLVED

2005-05-25 Thread mayo
Sorry to take so long to respond. I didn't even explain myself well the solution was: SELECT orderedItems.orderID, sum(items.itemPrice * orderedItems.itemQty) as theSubTotal FROM orderedItems, items WHERE

adding subtotals

2005-05-20 Thread mayo
I'm completely blanking on how to add subtotals. I'll explain clearer below: I have a table of itemsPurchased that includes itemID itemQty and itemPrice. !--- simplified --- SELECT itemID, itemQty, itemPrice FROM itemsPurchased WHERE purchaserID = '#purchaserID#' Say person A bought

RE: list problem, displaying CHECKED listboxes - SOLVED, thx

2005-03-24 Thread mayo
thanks Charlie, Jim that was it. Gil -Original Message- From: Jim Davis [mailto:[EMAIL PROTECTED] Sent: Thursday, March 24, 2005 1:34 AM To: CF-Talk Subject: RE: list problem, displaying CHECKED listboxes -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED]

list problem, displaying CHECKED listboxes

2005-03-23 Thread mayo
I'm creating an admin section where users can select from a series of checkboxes (for example itemColor or itemSize). When I examine the db I see there was no problem inserting the data via the checkboxes. However I'm having problems in the edit screen when I want to show the user the selected

CFIF, how to prevent CF from parsing code

2005-02-15 Thread mayo
I have an admin page that can be accessed from quite a few other pages. I would like to return people to their original page after they're through with this admin page. Simple enough on the surface but people can do a lot of editing and deleting on this page so a href=javascript:history.go(-1)

RE: House of Fusion - Cannot Sign In - Me Too

2005-01-06 Thread mayo
I also can't retrieve my password. -- gil -Original Message- From: Aaron DC [mailto:[EMAIL PROTECTED] Sent: Thursday, January 06, 2005 5:04 AM To: CF-Talk Subject: Re: House of Fusion - Cannot Sign In Now that you mention it, I too tried to retrieve my HoF password and received no

RE: shopping cart, session variables - best practices

2005-01-03 Thread mayo
and is not on another server with xxx websites who all make excessive use of session variables, then yes - maybe he should use session variables.. Mayo - please advise. Martin Parry Macromedia Certified Developer http://www.BeetrootStreet.co.uk -Original Message- From: Dave Watts [mailto:[EMAIL

shopping cart, session variables - best practices

2004-12-28 Thread mayo
I'm setting up a shopping cart for a jewelry store. I'm curious, what is performance limit for storing data in session variables? The following are lists: Item No (itemID used in check out) Item Qty (in case someone wants more than one) Item Price Item Description (most descriptions about 50

RE: shopping cart, session variables - best practices

2004-12-28 Thread mayo
variables - best practices On Tue, 28 Dec 2004 21:12:58 -0500, mayo [EMAIL PROTECTED] wrote: The following are lists: Item No (itemID used in check out) Item Qty (in case someone wants more than one) Item Price Item Description (most descriptions about 50 characters. ex: Ruby and gold drop

RE: SOT: Browser Stats (stirring the pot)

2004-12-05 Thread mayo
I maintain / have access to the logs of about 15 sites. The commercial and financial ones all have MSIE above 92% and holding. The purely financial ones are 95%+. The one pure art site (photography) has MSIE at 65%, and an awful lot of unknowns. Mac O/S is about 25%. IE will remains strong until

RE: email, pause while looping through list

2004-10-18 Thread mayo
, mayo wrote: I can send 20 emails/3 minutes. 1) create a separate page that sends 6 emails, and marks them somehow as sent. 2) use cfschedule to run that page every minute, with a self-cancel when it find out that there are no more emails not marked as sent I wouldn't want a page

email, pause while looping through list

2004-10-17 Thread mayo
I'm trying to send emails. Because of spam issues the client's hosting provider has put limits on how many emails can be sent at one time. I can send 20 emails/3 minutes. I'm wondering what the best way to do this is? !--- LOOP THROUGH RECORD SET SET COUNTER IF COUNTER EQ PRE-SET NUMBER {

RE: cffile write question, sending but not parsing cf code

2004-09-15 Thread mayo
CFFILE, for example: cfset pageString = this is some content cfset pageString = #pageString# cfset a = 1 cffile action="" file=/stories/2004-1234.cfm output=#pageString This will create the CF script and when called the CF parts will be processed. Andrew. - Original Message - Fro

CFFILE question, rewritten

2004-09-15 Thread mayo
I am using CFFILE to create articles for a magazine publisher. I would like to include CF code that is not processed when CFFILE is executed. In effect I'm looking for a tag that is something like: #doNotProcess(CGI.path_info)# where the CFFILE does not process CGI.path_info but in the

cffile write question, sending but not parsing cf code

2004-09-14 Thread mayo
I'm using cffile to allow a magazine site to publish articles and not have a db call everytime an article is selected. Is there anyway (aside from includes) that I can use send up cf code such as CGI.path_info without it being parsed when the cffile is being written? Example: For example

OT- What makes a blog a blog?

2004-08-26 Thread mayo
Is a fully hardcode page with blog entries written in the text editor a blog? Is a CMS which allows users to create and edit files but doesn't allow comments a blog? >From a developer's perspective: what makes a blog a blog? -- just curious [Todays Threads] [This Message] [Subscription]

RE: OT- What makes a blog a blog?

2004-08-26 Thread mayo
or online ones count), comments are not required. Though another further down the search probably defines it better: A web log: an on-line diary or frequently updated personal web page. -nathan strutz http://www.dopefly.com/techblog/-- mine mayo wrote: Is a fully hardcode page with blog entries

RE: OT- What makes a blog a blog?

2004-08-26 Thread mayo
) The ease by which the user can edit? What makes blogfusion a blog if a simple CMS is not? --gil -Original Message- From: Jake . [mailto:[EMAIL PROTECTED] Sent: Thursday, August 26, 2004 2:13 PM To: CF-Talk Subject: Re: OT- What makes a blog a blog? On Thu, 26 Aug 2004 14:25:12 -0400, mayo

RE: OT- What makes a blog a blog?

2004-08-26 Thread mayo
- there is no intermediate software. my ¥0.02 On Thu, 26 Aug 2004 14:25:12 -0400, mayo [EMAIL PROTECTED] wrote: I know what a blog is used for, why it's being used, etc... I was just wondering what makes a blog a blog? What features make it a blog? Is it simply a CMS or are there other

categories, subcategories and sub-subcategories in a database

2004-08-24 Thread mayo
I have scripts and notes that I would like to be able to organize in a better fashion. For example (scripts) Category: _javascript_ SubCategory: Form Validation SubSubCategory: Checkboxes Item: Is checkbox selected? I'm thinking about the following tables: SCRIPTS scriptID scriptText

RE: categories, subcategories and sub-subcategories in a database

2004-08-24 Thread mayo
:[EMAIL PROTECTED] Sent: Tuesday, August 24, 2004 5:29 PM To: CF-Talk Subject: Re: categories, subcategories and sub-subcategories in a database if you're taking that route.. instead of mids and lefts, why not put those values into a list? On Tue, 24 Aug 2004 18:24:17 -0400, mayo [EMAIL PROTECTED

stop insert when user presses refresh

2004-08-19 Thread mayo
How do you stop a database insert from occurring when a user presses refresh? I remember seeing posts regarding this but I can't seem to find them. Gil [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: stop insert when user presses refresh - thx

2004-08-19 Thread mayo
Thanks everyone for responding. I like the cflocation solution. Fits my needs perfectly. --glm -Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sent: Thursday, August 19, 2004 12:27 PM To: CF-Talk Subject: stop insert when user presses refresh How do you stop a database insert

SOLVED: EXTREMELY slow site, trying to troubleshoot

2004-08-06 Thread mayo
Joe, That was it Thanks. Gil Midonnet -Original Message- From: Joe Rinehart [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 04, 2004 7:33 AM To: CF-Talk Subject: Re: EXTREMELY slow site, trying to troubleshoot Hey Gil, I had a similar issue with a site I set up on a shared

RE: EXTREMELY slow site, trying to troubleshoot

2004-08-05 Thread mayo
/cfquery I set up a Access db and it takes 0.047 milliseconds to render. The same table takes 4500-9500 milliseconds on SQL 2000. I haven't done a php call -- well, because it looks as if it's the SQL 2000 connection. Gilbert Midonnet -Original Message- From: mayo [mailto:[EMAIL

RE: [mysql] alter column command...

2004-08-05 Thread mayo
ALTER TABLE slideshow MODIFY orderby char(5) Gilbert Midonnet I have the following column orderbyvarchar(5) I want to change it to... orderby char(5) I've tried this sql but no luck ALTER TABLE slideshow ALTER COLUMN orderby char(5) [Todays Threads] [This Message] [Subscription]

connecting to SQL 2000 directly WAS: EXTREMELY slow site, trying to troubleshoot

2004-08-05 Thread mayo
My site is extremely slow. I've narrowed it down to my database calls. This site is being hosted remotely. I am being told by tech support that to speed things up I ought to be connecting to SQL 2000 directly. Huh?! Is there something I ought to be doing aside from : cfquery name=whatever

RE: connecting to SQL 2000 directly WAS: EXTREMELY slow site, trying to troubleshoot

2004-08-05 Thread mayo
No, this isn't normal. I've dealt with the hosting company before and have been satisfied with them. I've never seen anything like this. At first I thought I had too many includes (4) and too many database calls with too many joins. Finally I pared a test page down to one database call SELECT *

RE: connecting to SQL 2000 directly WAS: EXTREMELY slow site, trying to troubleshoot

2004-08-05 Thread mayo
be a network issue you don't need to worry about too much. _ From: mayo [mailto:[EMAIL PROTECTED] Sent: Friday, 6 August 2004 2:05 p.m. To: CF-Talk Subject: connecting to SQL 2000 directly WAS: EXTREMELY slow site, trying to troubleshoot My site is extremely slow. I've narrowed it down to my database

EXTREMELY slow site, trying to troubleshoot

2004-08-04 Thread mayo
I'm building a site that is EXTREMELY slow even though there is no usage except for myself and two or three other people. Using CFMX and SQL 2000. I've boiled it down to my database calls. I thought perhaps it was my joins. But it's more than that even the simplest database call takes 4.5

RE: Mihai Bazon ( mishoo ) website gone

2004-05-18 Thread mayo
://dynarch.com/mishoo/htmlarea.epl On May 17, 2004, at 10:43 AM, mayo wrote: -Original Message- From: Gilbert Midonnet [mailto:[EMAIL PROTECTED] Sent: Monday, May 17, 2004 9:40 AM To: CF-TALK Subject: Mihai Bazon ( mishoo ) website gone Does anyone know what's happened to http://dynarch.com

FW: Mihai Bazon ( mishoo ) website gone

2004-05-17 Thread mayo
-Original Message- From: Gilbert Midonnet [mailto:[EMAIL PROTECTED] Sent: Monday, May 17, 2004 9:40 AM To: CF-TALK Subject: Mihai Bazon ( mishoo ) website gone Does anyone know what's happened to http://dynarch.com? I was going to purchase his htmlarea code and the site's been down since

using the result of CFDIRECTORY as a list

2004-05-17 Thread mayo
I'm using CFDIRECTORY to get a list of files that meet certain parameters. Sometimes one of the file doesn't exist. And here's the trouble. I can't seem to use CFDIRECTORY as a list. I keep getting the complex object type error. I can produce a list of a files that should exist, I would like to

RE: using the result of CFDIRECTORY as a list

2004-05-17 Thread mayo
if you cfdump the results, doesnt it look like a query? can you valueList() the getDirectory_QueryName.fileName or whatever the variable is called to get a list? tony Tony Weeg sr. web applications architect navtrak, inc. [EMAIL PROTECTED] 410.548.2337 www.navtrak.net -Original Message---

RE: using the result of CFDIRECTORY as a list

2004-05-17 Thread mayo
410.548.2337 www.navtrak.net -Original Message----- From: mayo [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 12:21 AM To: CF-Talk Subject: RE: using the result of CFDIRECTORY as a list The cfdirectory is below: cfdirectory action = ""> directory = c:\inetpub\wwwroot\RMG\event

show tables in cold fusion

2004-03-24 Thread mayo
OK, I'm having a bad day. I've googled to no avail for the last half hour. How do you do a show tables; describe [table]; within CF? thx, Gil [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: show tables in cold fusion

2004-03-24 Thread mayo
: Wednesday, March 24, 2004 4:15 PM To: CF-Talk Subject: RE: show tables in cold fusion What database? In SQL it's sp_tables. then you could cfdump it in CF. Steve Nelson -Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 24, 2004 4:01 PM To: CF-Talk Subject

RE: [OT] How do you make a DIV take up space?

2004-03-23 Thread mayo
http://www.css-discuss.org/mailman/listinfo/css-d is an excellent resource. However to answer the question. You can give a height and width to the outer div. There are also numerous kludges available. I'll need to know what you're trying to do to give a more precise answer. Gilbert Midonnet

web hosting, sql 2000

2004-03-17 Thread mayo
I have a client that's going to need something more robust than Access. Does anybody know of an ISP that has database admin tools like Enterprise Manager on line, something like phpmyadmin for SQL 2000. All I want to do is to set up the tables. thx Gil Midonnet [Todays Threads] [This

RE: web hosting, sql 2000

2004-03-17 Thread mayo
PM To: CF-Talk Subject: Re: web hosting, sql 2000 why not just enterprise manager? -adam -Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 09:15 PM To: 'CF-Talk' Subject: web hosting, sql 2000 I have a client that's going to need something more

RE: web hosting, sql 2000

2004-03-17 Thread mayo
17, 2004 09:27 PM To: 'CF-Talk' Subject: RE: web hosting, sql 2000 If I'm understanding you correctly, www.crystaltech.comwill work -Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 4:16 PM To: CF-Talk Subject: web hosting, sql 2000

RE: web hosting, sql 2000

2004-03-17 Thread mayo
of user interactions), which is a must in a cluster, and desirable even on single machines, because it lets you test the script and be assured that it'll happen exactly the same way on the production machine. Cheers barneyb -Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sent

SQL 2000 Enterprise Manager WAS: web hosting, sql 2000

2004-03-17 Thread mayo
: web hosting, sql 2000 snip mayo: you can totally get enterprise manager for free. Its included even with the free versions of SQL. I think I got my first copy out of the back of an SQL book that came with a CD. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

mysql and cold fusion WAS: web hosting, sql 2000

2004-03-17 Thread mayo
thanks, I have been under the assumption that cold fusion and mysql don't mix so I've been looking for SQL 2000 when an access dB won't work. I use php but much prefer CFMX. Gil Midonnet -Original Message- From: Bud [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 8:06 PM To:

RE: mysql and cold fusion WAS: web hosting, sql 2000

2004-03-17 Thread mayo
well, thanks all. I like mysql and love CFMX. Looks as if there is no problem. No need to hunt for SQL Server 2000 Enterprise Manager if I can use mysql. Gil Midonnet -Original Message- From: Josh [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 11:19 PM To: CF-Talk Subject:

sql, problem with

2004-02-16 Thread mayo
Currently I display a list of classes. Simplified SQL and display below: SELECT * FROM classes WHERE classCategory='$Category' AND classDeleted=0 ORDER BY $order $reorder The presentation is: +--+--++ | CLASS TITLE| LOCATION | CLASS CODE |

problems with spam

2004-02-16 Thread mayo
Has anybody else been getting spammed with penis and breast enlargeners to their listserv email? I use [EMAIL PROTECTED] solely for listservs and in the past week I've started getting 5-10 spams a day. Gil Midonnet [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: sql, problem with - THX!!

2004-02-16 Thread mayo
group=classId !--- general info about class --- #myQuery.classDescription#br... cfoutput !--- specific info about class code --- #myQuery.classCodeSection#br #myQuery.classDate#br #myQuery.classTime#br... /cfoutput /cfoutput Pascal -Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sen

permissioning, security and efficiency question

2004-02-14 Thread mayo
I have a site where there are a variety of permissioning and then filtering withing apermissioning group. Example: For example a person with customer access may have permission to articles a,b,c but not d,e,f. Another person with customer access may have permssion to articles a,c,e but not

RE: inserting into multiple tables

2004-02-13 Thread mayo
/ Methodology http://www.tacofleur.com/index/methodology/ Tell me and I will forget Show me and I will remember Teach me and I will learn -Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sent: Friday, 13 February 2004 2:32 PM To: CF-Talk Subject: inserting into multiple tables I have

inserting into multiple tables

2004-02-12 Thread mayo
I have to insert data into multiple tables. I'm using 3 db calls. After the first insert I'm immediately selecting the rowID of the insert and using that in the second and third inserts. Originally the information had been inputted on different pages so there was no problem but now everything is

checkbox display problem

2004-02-08 Thread mayo
I have a site which which will sort articles into numerous categories. The user selects the categories via checkboxes (currently 9, it will grow). Articles may be in more than one category. There are over 5000 articles and growing at several 100 a month. The easiest solution would be an

RE: checkbox display problem - THX

2004-02-08 Thread mayo
thx Cameron that was it. -- gil -Original Message- From: Cameron Childress [mailto:[EMAIL PROTECTED] Sent: Sunday, February 08, 2004 5:37 PM To: CF-Talk Subject: RE: checkbox display problem Mayo, you look like you're on the right track.I'd only insert records into ARTICLEDISPLAY

RE: OT- making a windows based app

2004-01-03 Thread mayo
this, but I haven't seen it. Jim Davis _ From: mayo [mailto:[EMAIL PROTECTED] Sent: Friday, January 02, 2004 11:53 AM To: CF-Talk Subject: OT- making a windows based app A client would like for me to build a windows based app for him. I have suggested that he keep it web-based but he insists

OT- making a windows based app

2004-01-02 Thread mayo
A client would like for me to build a windows based app for him. I have suggested that he keep it web-based but he insists that it be available on unconnected desktops. He's even thinking about selling it to customers. The application is a catalogue of items. Selecting an item will display

RE: OT- making a windows based app

2004-01-02 Thread mayo
[mailto:[EMAIL PROTECTED] Sent: Friday, January 02, 2004 12:28 PM To: CF-Talk Subject: Re: OT- making a windows based app mayo wrote: -- The app will need to tie into a database. Access would do -- It would have to be secure. Employees, and customers, should not be able to readily download

RE: OT- making a windows based app

2004-01-02 Thread mayo
The main reason why he doesn't want it to be web-based is that employees and on-site customers will be constantly accessing these files. This means that he will have to have a dedicated phone line or upgrade to dsl in each of his stores. Since the information only changes twice a year he would

RE: CFMX installation problems, datasource

2003-12-21 Thread mayo
these folders up first, in case the reuslts are not what you expect. _ From: mayo [mailto:[EMAIL PROTECTED] Sent: Sunday, December 21, 2003 1:13 AM To: CF-Talk Subject: RE: CFMX installation problems, datasource yes, same script, same databases. I can access the databases via php. I

RE: CFMX installation problems, datasource

2003-12-21 Thread mayo
. -- gil -Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sent: Sunday, December 21, 2003 12:43 PM To: CF-Talk Subject: RE: CFMX installation problems, datasource Thanks for the suggestions Michael, I dumped the files inC:\CFusionMX\db\slserver52\tracing. Restarted CFMX, CFMX ODBC

RE: CFMX installation problems, datasource

2003-12-21 Thread mayo
. Still no go. A general question -- in your admin sections do you have a username and password listed? CFIDE administrator data sources : click on a datasource select Show Advanced Settings username and password should be listed there. -- glm -Original Message- From: mayo [mailto:[EMAIL

RE: CFMX installation problems, datasource - SOLVED !?!

2003-12-21 Thread mayo
Message- From: mayo [mailto:[EMAIL PROTECTED] Sent: Sunday, December 21, 2003 1:57 PM To: CF-Talk Subject: RE: CFMX installation problems, datasource OK, maybe I'm grasping at straws here. A macromedia.com tech note Troubleshooting data sources and database connectivity for Windows platforms says

CFMX installation problems, datasource

2003-12-20 Thread mayo
After IIS and CFMX crashed last week I had to reinstall both. IIS works as does CFMX EXCEPT for the fact that CFMX there is a problem accessing the database. The ODBC connection seems to be working. If I don't put in the datasource it gives the Data Source x cannot be found error.

RE: CFMX installation problems, datasource

2003-12-20 Thread mayo
a query or a table, did you verify that the DB was still the same and that all the tables that were initially there were in fact still there? _ From: mayo [mailto:[EMAIL PROTECTED] Sent: Sunday, December 21, 2003 12:00 AM To: CF-Talk Subject: CFMX installation problems, datasource After IIS

RE: IIS remove and reinstall

2003-12-18 Thread mayo
I removed and reinstalled IIS. My asp pages work fine. CF doesn't work, I can't get to the CFIDE/administrator pages but Cold Fusion has started. The CFMX logs are below \CFusionMX\logs Information,main,12/18/03,08:52:49,,Starting license... Information,main,12/18/03,08:52:49,,Starting License

RE: IIS remove and reinstall

2003-12-18 Thread mayo
for .cfm are listed in IIS. They probably are not -Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sent: Thursday, December 18, 2003 1:13 PM To: CF-Talk Subject: RE: IIS remove and reinstall I removed and reinstalled IIS. My asp pages work fine. CF doesn't work, I can't get to the CFIDE

RE: Help with Netscape 4.7

2003-12-17 Thread mayo
NS 4.7 supports CSS (very buggy support, but support nonetheless) .class is fairly good # ID is very poor I remember being able to set left and width so, depending on the information that may work. I haven't worked with NS 4.7x for a long time and I don't have a copy with me to test it out. I

IIS remove and reinstall

2003-12-16 Thread mayo
IIS crashed, or at least I think it did as neither CF or ASP work. (I'm running IIS 5) It was suggested that I try uninstalling JRun by using wsconfig.exe.I've read and reread files such as the FAQ for ColdFusion MX connector configuration at

PHP listserv

2003-12-15 Thread mayo
Does anybody know of a good PHP listserv, looks as if I have a small job in php. DevShed looks decent but would rather go by recommendations. Gil Midonnet [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: IIS isn't working today, why, help!

2003-12-11 Thread mayo
thx Dave, I think this is the time to back everything onto a CD (haven't done so for almost 2 mths) BAD ME. /head banging against wall like Dobbie then I'll try uninstalling wsconfige.exe as you suggested -- gil -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent:

IIS isn't working today, why, help!

2003-12-10 Thread mayo
I've maxed out my troubleshooting skills. I couldn't reach my localhost (127.0.0.1) I went to admin tools component services and restarted CFMX. That didn't work. I restarted IIS. That didn't work. I restarted my laptop. (Win2000) That didn't work. Restarted it again. Checked to see if my asp

RE: displaying the list items in a ticker

2003-12-10 Thread mayo
this is a common js/dhtml script. dhtmlcentral is a terrific resource http://www.dhtmlcentral.com/script/search.asp?category=text dynamicdrive.com has a lot of useful scripts: http://www.dynamicdrive.com http://www.dansteinman.com/dynduo/ is a good place to start picking up dhtml tricks and a

store dB - question re items

2003-12-02 Thread mayo
Up to now when creating a store I've been selling items such as CDs which would have band, title, check to see the amount still in stock, etc... Now I'm creating a store front for a sweater manufacturer. There are a variety of different sweaters. No problem :-) There are a variety of different

RE: store dB - question re items

2003-12-02 Thread mayo
] 410.548.2337 -Original Message- From: mayo [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 02, 2003 3:43 PM To: CF-Talk Subject: store dB - question re items Up to now when creating a store I've been selling items such as CDs which would have band, title, check to see the amount still

Interesting problem, query with javascript

2003-11-06 Thread mayo
I have a problem that doesn't make sense to me. COLD FUSION QUERY I have a query that pulls data about a photo (name, URL, ...). _javascript_ Clicking on the thumbnail changes the option ../option in a select box a href=""> > img src="" width=37 height=58 border=0 alt=/a script

FTP; non-techies using

2003-10-27 Thread mayo
Has anybody had experience with having a non-techie upload files (in this case photos) to their website? quote I will tfp.Just show me how. /quote To save $100 the site-owner would rather use a site that doesn't permit CFFILE. Just wondering if there's been any disasters. Gil Midonnet

RE: FTP; non-techies using

2003-10-27 Thread mayo
Thanks everybody for the input. Right now I'm leaning to eating the $100. I just saw that they have aspUpload. Ifthat works - the world is good. I guess I'll have to work a little bit on asp skills. Re the client, he'sgood with photoshop (he's a photographer) so file size and type is not an

  1   2   >