Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Bammy217

    Upgrading from CF 5 to CF8 and undefined session

    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...
  2. Bammy217

    CF server seems to get bogged down after a while

    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...
  3. Bammy217

    mail spool re-spooling

    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...
  4. Bammy217

    MM_UserAuthorization

    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...
  5. Bammy217

    System Beep

    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...
  6. Bammy217

    Temporary Variable In Procedure

    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...
  7. Bammy217

    Cannot connect to database from windows server

    It should be, depends if it's a multi-instance server or not We never fail, we just find that the path to succes is never quite what we thought...
  8. Bammy217

    Issue importing pipe delimited file.

    Hi folks, Sorry it was an &amp;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...
  9. Bammy217

    Cannot connect to database from windows server

    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...
  10. Bammy217

    Cannot connect to database from windows server

    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...
  11. Bammy217

    Issue importing pipe delimited file.

    Try the following: <cfloop index="index" list="#txtfile#" delimiters="#chr(10)##chr(13)#"> <cfset index = ReplaceNoCase(index,"||","| |","ALL")> <cfif Right(index,1) EQ "|"> <cfset index = index & " " /> </cfif> <cfif Left(index,1) EQ "|"> <cfset index = " " & index /> </cfif>...
  12. Bammy217

    Coldfusion Pagination in details page.

    Always a pleasure We never fail, we just find that the path to succes is never quite what we thought...
  13. Bammy217

    Coldfusion Pagination in details page.

    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...
  14. Bammy217

    Apache mod_rewrite / Helicon ISAPI Rewrite question

    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...
  15. Bammy217

    Don't Cache Page

    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...
  16. Bammy217

    Query to Select the Top Value

    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 ...
  17. Bammy217

    Session is invalid

    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...
  18. Bammy217

    Alternative to CFFILE UPLOAD?

    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...
  19. Bammy217

    CFFILE UPLOAD does not always work

    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...
  20. Bammy217

    CFLoop in MX7 throws up Null Pointer Intermitently

    try this: <cfloop index="i" from="1" to="#Ch_Pass_No#"> <cfif IsDefined("form.Ch_DOB#i#") AND Len(Trim(form["Ch_DOB#i#"]))> <cfset Ch_Prod = DateDiff("yyyy", #Form["Ch_DOB" & i]#, LDay)> <cfset Age_Array[j] = "#DateFormat(Form["Ch_DOB" & i], "dd-mmm-yyyy")#"> <cfset j = j + 1>...

Part and Inventory Search

Back
Top