jjdonate,
do you need the second application.cfm?
Logically for the session to remain the same both <cfapplication ...> tags are identical (especially the name attribute!), and as the "/user folder/" is under the original folder the application.cfm it should work for all sub-folders!
if...
Have you tried to just stop and start the ColdFusion service once a day (e.g. at 4am) we used to have the same issue, and that resolved it for us.
a shellscript and a cron job on Linux or a batch file and a windows scheduled task do the job perfectly, just run it in your sites low-traffic hours...
Dear anyone,
Please help me!
We have an issue, we migrated our mail server, but the plonkers in the IT Team neglected to update our DNS servers...
as a result I have some 10'000 mails in the Undelivr folder of ColdFusion!
The positive, we have all the .cfmail file... the bad point is that...
Hi TheBorg72,
would like to help, but in your example you do not actually reference a ListDeleteAt() anywhere..
could you include it?
d.
We never fail, we just find that the path to succes is never quite what we thought...
Hi All,
I have a dilemma, I need to perform the most horrible action one can think of I need to add a sound to a web-app...
So far I've tried various interactions all using ActiveX, JS, Flash and I'm down to using 8 different methods at the moment (Yes we even support IE on a MAC...) ... But...
MJV,
Try something like this
CREATE PROCEDURE sp_myProcedure
@myID int
AS
DECLARE @AWR FLOAT
BEGIN
SET NOCOUNT ON;
SET @AWR = (SELECT AVG(wagerate) FROM wages)
UPDATE myTable
SET avgWageRate = @AWR
WHERE myId = @myID
END
if you are indeed talking about a procedure this is...
Hi folks,
Sorry it was an &amp; there but it got HTML rendered :(
b.
We never fail, we just find that the path to succes is never quite what we thought...
Julie,
have you tried to copy the JAR file containing the Driver to the correct folder under JRUN??
e.g. make sure that the JAR file is available in:
* Server Configuration: Place the jar in cf_root/wwwroot/WEB-INF/lib
* J2EE Configuration: Place the jar in cf_web_root/WEB-INF/lib
And have...
Hi Julie,
have you made sure that the JDBC driver (com.ibm.u2.jdbc.UniJDBCDriver) is installed and available to JRUN??
We never fail, we just find that the path to succes is never quite what we thought...
Kevin,
something that would be more than usefull here is the code of your page (gallery_display.cfm) ... but based on pure theory here is a sample...
Pagination isn't exactly difficult to do, so i would just recommend having a look at google for more complete FAQs and instructions, but if you...
Hiya folks,
have a question for you all; the sites I've recently been handed use URL rewriting and somewhere this is causing an issue; now i was wondering if there is anyone out there that knows how we can retrieve the URL passed to the server before the re-write takes place?
For Example...
There are many ways to do this, have a look at: http://www.adobe.com/devnet/coldfusion/articles/cacheclear.html
forget setting the interval, just call the function when you need to clear the cache :)
We never fail, we just find that the path to succes is never quite what we thought...
just use a group by clause, ensure you have only the highest bid :)
<cfquery name="qBidSelect1" datasource="#request.dsName#">
SELECT MAX(Bid.Bid) AS Bid, Bid.CustomerID, Bid.TenderID, Tender.TenderName , Customer.CustomerName, Car.CarID, Car.CarNumber , Car.MakeAndModel , Car.RegNumber ...
Hey all,
we are experiencing some issues with a module in our CF Application, we offer our users a verity search, for some (unknown reason) if the user enters, then exits then enters the search again the entire server goes mad... it displays us a message stating "Session is invalid"
the way...
you can always use a flash component to upload the files using a cfform try this url: ASFusion
We never fail, we just find that the path to succes is never quite what we thought...
One problem I've found over time on some (l)Unix and Mac platforms is that there is a bunch of junk generated along with the form field. The only solution I've found is to trim the form field (there seems to be additional data from some OS's) try adding this before the upload:
<cfset...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.