Hello, I want to use apache web server in a DMZ. and a coldfusion server an another computer not in DMZ. I some have some problem because the coldfusion plug...
ColdFusion Hosting Providers ColdFusion Hosting Providers' List brought to you by *** ColdFusion-HowTo: Yahoo's No. 1 and the biggest group for ColdFusion...
coldfusion-howto@yaho...
Jul 1, 2004 3:14 pm
26743
Hi All, In cold fusion I want to restrict access of a page based on the port number that the user has tried. I mean , we develop one web based application, it...
this has multiple answers, depending on if you want to keep all the code (normal and admin) in one directory or not. 1) In my example I will use IIS since that...
Ok, I have no idea where to start, but I have a 2d array that has over 500 entries that needs to be inserted into a table as a new record for each array item....
<cfquery...> <cfloop> Build individual insert statement </cfloop> </cfquery> You just have all 500 inside 1 CFQUERY. mcg _____ From: Arthur, Douglas...
You can run 500 resultSets using JDBC <cfloop to="1" from=" arrayLen(array)" Index="x"> <cfloop to="1" from=" arrayLen(array)" Index="y"> <cfscript> results =...
What about checking if the CGI.HTTP_HOST is part of the CGI.HTTP_REFERER variable? I did something like this for a site where I did not want users to view...
Database interaction 101 without SQL: Step 1. Create a DB connection and make sure the resultset is updateable: <cfscript> ResultSet = createObject("java",...
I'd like to learn more about all this java, where is a good place to start? Because all of that is greek to me. Also, what is the benefit of doing that over...
Hello to all. This is my first message so I'll try to be clear and concise. I've created a cfquery that finds about 300 people. One of the fields is the...
Hi Christopher, The text "Email this group" shows up on the web interface, but when I try to click on it, it is inactive. It appears as an active link, ...
The advantage over cfquery is that you are diversifying your skillset, while becoming more compliant with the universal language of java and still get to use...
... Cfoutput with a query attribute will loop over each row in the resultset, generating 300 "Email this group" links (one for each of the 300 addresses)....
I need to do 2 things: - randomize the output from a database query, ensuring that the records are ordered randomly each time. - with that record set, I need...
It can be done, we have six servers running in such an environment, three outside, three inside. I'll see if I can get a comment from our of our SA's. -John ...
I have some code that I created for my spouse that I could probably bundle together for you. You can see it at: http://www.stampin.info/showgallery.cfm If you...
Hello Is there any word on if Blackstone will work on the same hardware as MX or if it will work on the same operating systems? I've got ColdFusion MX 6.1...
Coldfusion is based on java so the requirements will remain the same. ... From: Peter Mount [mailto:infopmount@...] Sent: Friday, July 02, 2004 9:23...
you may need to configure the .htaccess file add .cfm extension see http://wsabstract.com/howto/htaccess.shtml also check permissions on your images directory ...
Hello there, I want to program a n-level access program. How can I implement a security system such as the widnows. I want to give permission per functions. ...
mahdi_zare
mehdi_zare@...
Jul 4, 2004 4:51 am
26768
This query works: <cfquery name="testing" datasource="datasourceName"> SELECT * FROM resources, tracking, submission WHERE resources.resourceid = ...
Hi Trevor, Is ResourceID the key linking these two tables, and if so, are you then trying to find all rows from resources that don't have a row in tracking?...
Thanks Chris, I tried what you said and got a different and closer result! This is my new code: <cfquery name="testing" datasource="submissions"> SELECT * ...
Glad we're closer now :) Did you try using my select statement inside the parens you have instead of just (tracking.resourceid) ? _____ From: Trevor Lyman...