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: *

  • Users: ksea
  • Order by date
  1. ksea

    how to pass struc to cfc???

    the following will all do the same thing but I think (argumentCollection=get)works the most consistently... not sure why though... <cfscript> get = StructNew() get.id = 1 get.IsActive = 1 get.isDeleted = 0 rsStruk =...
  2. ksea

    how to accomplish: www.mysite.com/123123 ?

    you need something that can rewrite urls for you http://www.isapirewrite.com/ It takes a little to setup but it's really not bad at all.
  3. ksea

    Best Practice for Setting Up Multiple Associated Websites

    they better be truly unique products. Google and the rest are going to actually index each sub domain seperatly. If your navigation structure is going to be exactly the same, don't do it. If your products really do need their own sub domain for some reason I won't understand without additional...
  4. ksea

    Session vars in domain.com and www.domain.com

    it's bad SEO practice to use http://domain and http://www.domain. Force guests to one or the other. Plus unless you have a wildcard SSL your SSL Cert. would normally be purchased as https://domain name or https://www.domain name, this would cause users to have to click ok to accept certs...
  5. ksea

    How to avoid form resubmission when browser refresh clicked!

    why not check session for a var before submitting? your form process could be surrounded by <cftransaction> tags and part of the transaction after the sql insert would be a <cfset> tag. If the form is submitted once set <cfset session.var1 = "wasSubmitted"> <cfif val var1 EQ "wasSubmitted">...
  6. ksea

    Code reverting back to original version after save

    Are you using trusted cache? With trusted cache enabled, ColdFusion will only access the template cache—even if the template itself is modified. This can be problematic if developers expect to see changes when files are modified. To introduce modified templates into the cache with out...
  7. ksea

    ColdFusion Installation MX 2004 error

    there is a service running in windows 2003 that stops application installs from taking place. So when you attempt to start the MX install is just goes away. I forgot the name of the service running but check your events log and you will see the name of it.
  8. ksea

    Float-over text in CF

    I'm always amazed at how quickly tek-tips gets this job done... Might be 2 -5 seconds after loading a post but they get "Key Words" to load like this. Key words meaning they might have a list somewere that when a page is rendered if it contains these types of words then bam add a tool tip. It's...
  9. ksea

    Passing parameter into MS Word!

    not sure how you would open a word document and write in specific areas on the page... You could just save the output to a word.doc file. Bring over table formatting etc. this is a basic example... If you made a .cfm file with this code it would automaticly save the info as a word document and...
  10. ksea

    2 websites on same server

    thank you all for your comments. It's not as much RDS that's the problem when you get right down to it. It's application error logs. all sites would share the same log files right? Application mail etc...
  11. ksea

    2 websites on same server

    Hi, If I'm going to deply a new website on an existing server with Coldfusion. Does CF need to be installed with JRun inorder to handle each site? If so, anyone running JRun on their server? How's the performance? Would I really need to disable RDS... That would be a bummer.
  12. ksea

    Coldfusion Hosting

    viux.com Not bad for the price.
  13. ksea

    Database Front-End

    There are a couple of script type programs out there that you might be interested in checking out. http://www.hkvstore.com/cfmmaker/ http://www.interaktonline.com/ If you use dreamweaver then the interakt extensions are your best bet. Be carfull using these programs though because they add...
  14. ksea

    Who gets the most CFML webspace for their $$$

    thanks for the replies. hosting providers look nice. Still not exactly more then i got now for less. Infinities.com offers reseller accounts but only discount packages. freshlookhosting.com looks nice but cold Fusion on reseller accounts is another 9.20 / Month so add in $32.75 and it's just a...
  15. ksea

    Who gets the most CFML webspace for their $$$

    Current goods... Web Sites: (5) Disk Space: (2.5 GB) Monthly Data Transfer: (25 GB) Monthly Price: ($34.95) Of course my webhost still uses CFML MX6 but I don't mind much... Anyone receiving a better deal on CF hosting / Billed monthly?
  16. ksea

    Newbie question

    outside of messing with the coldfusion there is another problem with editing SEO via FTP. Or I should say there is another route you can go. If the page content is stored in the database you can create additional columns to store metta and SEO type text. When the page content is generated...
  17. ksea

    Limit Query recordset to 5 results

    sorry. Think I need more coffee before posting messages in forums.. Totally missed TruthInSatire'z post.
  18. ksea

    Limit Query recordset to 5 results

    what about using maxrows, does this run the sql first then store only 5 in the query? <cfquery name="top5" maxrows ="5"> SELECT * FROM FAQ ORDER BY views DESC </cfquery>
  19. ksea

    cftree Browser Support

    I always though the tree thing was a bit stupid. Every additional plugin a user needs on their system means less cross-browser / OS compatability. Stick with CSS for making your trees and your on the golden path to usability success. Internet Average for browsers like netscape/firefox for java...
  20. ksea

    Problem with CF dying when related servers under load

    Also make sure you not storing your sessions in registry. That will end up killing your server as well.

Part and Inventory Search

Back
Top