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: olmos
  • Order by date
  1. olmos

    script to check urls

    Thanks for your help. One more thing, how do I check if a certain phrase is in each URL being checked? Thanks again. olmos
  2. olmos

    script to check urls

    I am a beginner on scripting. Anyone know how I can script a way to do URL checking for a certain domain? I have a list of urls that I can also feed the script. I want it to be run automatically through a cron. Any examples or ideas? Thanks in advance, olmos
  3. olmos

    how to get the first character of a string

    Thanks, this worked. olmos
  4. olmos

    how to get the first character of a string

    It will only have the format of first and last name. Thanks, olmos
  5. olmos

    how to get the first character of a string

    How do I get the first character out of a string? For example, John Doe, J. I am looking for a way to just get the initials out of a name. Thanks in advance, olmos
  6. olmos

    URLs with cgi-bin and using https, not working

    URLS with cgi-bin and using https do not seem to work. I am using Squid 2.6 stable 6 on RH Linux 4. How do I get these types of urls to work? I have an allow list, to allow the site test.edu/cgi-bin/email. The URL also is using https (port 443, which is an allowed safe port). This is for a...
  7. olmos

    How to check last user that used mysql database and IP

    How can I check who was the last user who connected to the database and from which IP address ? Thanks in advance. olmos
  8. olmos

    textarea box formatting

    I have a textarea field box when submitted gets entered into the database. When data is entered and a hard return is put into it, it gets added to the database, which is what I want it to do. I am using the textformat udf . My problem is if someone decides to just copy and paste text in the...
  9. olmos

    how to align text in cfmail

    I need to send out text not html email which contains information that should be aligned as if in a table. For example, TITLE SUBJECT xxxxxxxproduct atetelj yy ccccc Is there a way to align text such as in a table format without using tables in CFMAIL...
  10. olmos

    java error

    This is the code that I am using in coldfusion that caused the error. <cfset thread = CreateObject("java", "java.lang.Thread")> About to sleep for 5 seconds...<cfflush> <cfset thread.sleep(5000)> olmos.
  11. olmos

    java error

    I'm new to Java. Can anyone tell me what this means ? I am running a coldfusion tag CFX_sleep which uses Java and I keep on getting this error. Error: Unhandled System exception ! java.security.AccessControlException: access denied (java.lang.RuntimePermission createClassLoader). Java...
  12. olmos

    using cfx_sleep error

    The Security section in Administrator (CF 5) only lists CF tags that can be enabled, i did not see anything related to the CreateObject function. olmos
  13. olmos

    using cfx_sleep error

    I get the following error below with the code in the link above. I think I might be missing something in the CF Administrator configuration page, but am not sure what it could be !?!? something to do with RuntimePermission ... ------------------------------- Error: Unhandled System exception...
  14. olmos

    how to slow down cfmail

    I tried doing the loop and the CPU resources went up and the browser Crashed. so I did some more research and read that cfx_sleep does not take up alot of CPU resources . I am currently testing it but am having problems getting it to work. Thanks , olmos.
  15. olmos

    using cfx_sleep error

    I am trying out the cfx_sleep tag and it seems to get the following error when I run the cfm page Error: java.security.AccessControlException: access denied (java.lang.RuntimePermission createClassLoader). Java exception occurred in call to method. I am running CF 5 on Solaris and have in...
  16. olmos

    how to slow down cfmail

    I have to send out emails to a list which then I am using procmail and a unix script to save the email message that was sent out to a file on the server. However, the script seems to not be able to keep up with all the email that gets sent out through CFMAIL, sometimes the files do not get...
  17. olmos

    rereplace

    How can I replace any text that contains more than one dash or asterisk and is followed by words to be replaced with a space. I tried this but it does not seem to remove the words after the dashes or asterisks. <cfset new_text = #REReplace(old_text, '[-+]|[*+](.*)', " ", "ALL")#>...
  18. olmos

    parsing a paragraph from files

    I need to get a certain paragraph out from a list of files which I do a cfloop over. The paragraph I need begins with the word "This" and the end of the paragraph is followed by a row of asterisks. Here is an example of what one of the files may contain, ....text... This file contains...
  19. olmos

    get directory listing

    thanks for your help olmos
  20. olmos

    get directory listing

    How can I get a list of files returned based on a file which contains part of the file name ? For example, I have a file which contains test1 test2 test3 and I need to find all the files within the directory which begin with each line . I then need to input the date of the file. How can...

Part and Inventory Search

Back
Top