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!

Search results for query: *

  • Users: olmos
  • Content: Threads
  • Order by date
  1. 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
  2. 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
  3. 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...
  4. 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
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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")#>...
  11. 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...
  12. 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...
  13. olmos

    ls * script

    I have a file that contains a list partial names of files. From that list I need to do an ls command to find the complete name of the files and output it to another file. For example : my file name_list contains tom_smith joe_doe ... The above list is the beginning of the file names that I...
  14. olmos

    converting string to date

    I am having trouble converting a string which is is a date such as 050419 (yymmdd) to a dateformat like 2005-April-19. <cfset find_date = #DateFormat(find_date, "yyyy-mmmm-d")#> <cfoutput>#find_date#</cfoutput> it shows up as 2038-January-14 How can I convert it correctly ? Thanks, olmos
  15. olmos

    does cfmail process sending files

    I need to send out email using a specific file for each email. For example, I have 5 recipients each have a unique file located on the server that needs to be included in the body of the email sent, not as an attachment. I have the recipient's email information in a database and can query this...
  16. olmos

    Ambiguous error in script to rename a file

    I need to get everything between two words then put that in a file renamed with the original filenameand "-body" and the end of it . file1-body I keep on getting $file-body: Ambiguous error. What am I doing wrong? ------------------ #!/bin/csh -f foreach file ('cat ./filelist') sed -n...
  17. olmos

    substituting dashes in files

    I have a group of files with the name as such: John_Smith05-04-13.txt Marge_Doe-Johnson05-04-13.txt and need to rename them to remove the dash only after any number, so that it will be like Marge_Doe-Johnson050413.txt How can I do that ? sed command .... thanks, olmos
  18. olmos

    script to find latest file version

    I have a group of files some beginning with the similar name and date it was created at the end of the filename. For example, john_smith_2005-04-16 john_smith_2005-04-10 joe_harris_2005-04-01 joe_harris_2005-04-03 I need a way to get the latest version of a group of files, for example I need...
  19. olmos

    Exporting errror - OCI-21560: argument 7 is null

    I am trying to do a full export but keep on getting the same error. I'running Oracle 9.2.0.4 enterprise edition on Solaris. I have run catpatch.sql, catexp.sql, and utlrp.sql with no errors. I am getting the error below. Anyone know how to fix this ? ... . about to export DBSNMP's tables...
  20. olmos

    root.sh error while upgrading

    I am trying to upgrade Oracle 9i Standard edition to Enterprise edition on a Solaris 9 system. I uninstalled standard and installed the Enterprise edition software only. When it asked me to run root.sh I recieved the following error. root: not found root.sh 06550: not found. The root.sh file...

Part and Inventory Search

Back
Top