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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by smack1

  1. smack1

    how to read a text file and display it to the page

    Ah, I see. We haven't made the move CF8 yet. We do lots of file/txt manipulation. I may need to push a little harder for the upgrade. Thanks
  2. smack1

    how to read a text file and display it to the page

    I'm not sure what you mean by a file loop. This way you only hit the 20 records you want instead of looping through the whole file (we don't know how big this file is). This way you don't need the counting and logic it is built into the loop. KEENDEV you out there? BTW, cfsearching took a look...
  3. smack1

    how to read a text file and display it to the page

    Actually, you could use a listgetat() function to get the values at a certain position using the end of line delimiters. You could use a loop to iterate through the file. <cffile action="read" file="C:\Myfile.txt" variable="FileVar"> <cfloop index="i" From="15" to="35"> <cfoutput>...
  4. smack1

    how to read a text file and display it to the page

    If your file has line breaks in it for each line you can use them as delimiters. You can loop through the lines/positions you want. <cffile action="read" file="C:\Myfile.txt" variable="FileVar"> <cfloop index="lineVar" list="#FileVar#" delimiters="#chr(10)#"> <cfoutput>#lineVar#</cfoutput> ...
  5. smack1

    how to create backup for webser

    You might want to ask that over in the networking forum. That would need to be handled at the router level and beyond. Not at the (web)server level. Good Luck
  6. smack1

    Bizarre Issue on FTP login

    On IIS 5.0 we are using Windows Integrated auth. and NTFS to limit access to directories on the site. When a particular user account (only this particular account) attempts to login it fails using the proper credentials. When you look in the ftp log the failed attempt has the username wrong. It...
  7. smack1

    Implementing SSL

    Thanks! I'm trying to get away from having my whole site under SSL. I was planning to have a folder that had my login forms and action pages and just include them with <cfinclude> tags. I haven't been able to get it to work with the full HTTP or HTTPS address. Any suggestions? Thanks again.
  8. smack1

    Implementing SSL

    I need some help implementing SSL on my site. I understand that it is a good practice to encrypt login forms and validation processes to prevent passing usernames and passwords unprotected across the web. What I’m looking for is how to implement it. I think I only need to have one directory...
  9. smack1

    Brower timeout... help

    I'll try that. I am just running this on a development PC. I am quering an Excel spreadsheet with 18K+ records and writing it to a DB. I am having to do some data checking to maintain integrity of the data. I'm kind of new at this. It seems to be taking a long time to process. I'm just pulling...
  10. smack1

    Brower timeout... help

    Hey guys, I have a very lengthy process I'm running through on one of my templates. IE times out before the I get conformation that the job has completed. It also kills the processing. Any ideas on how to extend the timeout settings or work around it? Thanks in advance!
  11. smack1

    Excel to Access data problem

    Hey Guys, Thanks for the prompt response! Sorry mine hasn’t been as quick. I had another issue to solve first. The client I am working for had purchased this customized spreadsheet from someone else and it was password protected so I could not save it out as a csv. So I just copied out the data...
  12. smack1

    Excel to Access data problem

    I have a client’s spreadsheet in Excel 2k. I am trying to import it into a new table in Access 2k. one of the fields in the spreadsheet is like a serial number. It contains letters, numbers, dashes, etc. They are generally between 5 and 20 characters in length. When I import it into Access some...
  13. smack1

    Looking for an application

    This is a site with a pretty good forum app. It looks like it will be pretty customizable. I have set it up, but that is about as far as I have gone with it. There are 2 things you will need to fix the app when you download it. 1) is a copy of the first use patch whis is a update to the...
  14. smack1

    update multiple records from single from

    Well call me Stupid! I tried everything we said earlier. None of it worked. I even recreated that field in the db. So, I went through the db and templates and changed the name of the db field from &quot;desc&quot; to &quot;description&quot;. It worked. I really don't understand...
  15. smack1

    update multiple records from single from

    No, the field size in the db is set to 50 and the most I think I tried to update is about 33 char. This is the longest enrty: FunPack Camera Gravity Feed 32150 So far I have just been letting it update itself with out changes. Oh, well I will try your suggestion later or tomorrow. Thanks

Part and Inventory Search

Back
Top