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 bkrike 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: Aeros
  • Content: Threads
  • Order by date
  1. Aeros

    spam spiders grabing emails

    We display alot of users information on our sites including their email addresses. Whats the best technique to use to still display the email addresses but hurt the spam-spiders from grabing this information? Thanks
  2. Aeros

    looking for a dsl router

    Im wondering if anyone can recommend a router to me for my business needs. I have several clients that I want to set web fitlers on. Some of the employees find the need to visit and waste time on certain sites and instead of setting up filters on all of these machines individually (win xp) I...
  3. Aeros

    larger storage than 8000 char

    What do you do when you need to store ALOT of text and need to go past the limits of a varchar with 8000 characters? Thanks
  4. Aeros

    blocking urls for clients

    Im looking for a good application to run on our windows 2k server that will allow me to block out websites for our client machines. Thanks
  5. Aeros

    schedule on certain days of the week

    I see in the schedule section of the CFMX admin I can set this to run daily, weekly or monthly. If I set it to run weekly does it start a week from the point that I set this at? Preferably I woudl like this to run every Monday and Wednesday morning. Whats the best way of doing this? Thanks
  6. Aeros

    ...greater than the allowable maximum of 8094

    I have a query that is giving me an error when I use the 'ORDER BY' function but is fine if I DONT use the 'ORDER BY' and I really have no idea why this would happen. Useing this query without the 'ORDER BY' gives me a result of 32 rows: declare @sqlSearchParam varchar(500) set...
  7. Aeros

    Creating printable PDF's

    I want to allow clients to enter their content and images into a predefined template on my site which will get stored into a database. Then I need to have that data created into a pdf that will go to our production department to get placed into our printable magazine. Ive looked at the HTMLDOC...
  8. Aeros

    weird SP problem

    When I run this query is query analyzer I get the results I expect but when I run the stored procedure with the same query I get 0 results. Any ideas? <cfparam name="sqlCatID" default=""> <CFSTOREDPROC procedure="dbo.GetListingsByCatID" datasource="tswdb"> <CFPROCPARAM type="IN"...
  9. Aeros

    passing via ssh from CF

    I see that there have been a few other posts on thsi before but no conclusive answer. Is anyone here passing documents via ssh from a CF template? Im trying to set up a wsftp schedule to allow me to do this but its not going through and wondered if anyone else has had success. Thanks
  10. Aeros

    Passing a command line

    D:\Program Files\WS_FTP Pro\wsftppro.exe" -s "local:D:\file.csv" -d "MySites!Site1:/" I need to pass this through a cmf page to execute a wsftp schedule. Whats the best way of doing this? With cfexectue? If so Ive never done this and cant seem to find the right documentation on this. Thanks
  11. Aeros

    include files

    I have two include files. In order they load: inc_file1.cfm inc_file2.cfm I need to pass some query info back from inc_file2.cfm to inc_file1.cfm. Is there a way to accomplish this? Thanks
  12. Aeros

    IIS 5 running but no sites showing up

    Ive been having this weird problem for the last few weeks that I just cannot figure out or find any information on. Im running windows 2k server with all the updates and IIS5. Every now and then when accessing and of my sites running on that machine I get a page canot be displayed message. I...
  13. Aeros

    testing the first charcter of a sting

    I have a query that pulls up a set of listings. I would like to test to see if there are listings that start with certain characters. What I am doing is creating an alpha list from A-Z and would like to link the letters only if there are listings that start with that letter. What is the best...
  14. Aeros

    Reading last 3 characters

    Im pulling a string out of a dabase and need to read the last three characters. Whats the best way of doing this? Thanks
  15. Aeros

    passing dropdown vars

    Im trying to pass the values of two drop downs to a hidden field which already holds the item name (ItemDesc) of 'shirt' so that if a user picks 'red' and 'large' the ItemDesc value becomes 'shirt - red/large'. The question is can this be done in this single page or do I need a secondary page...
  16. Aeros

    forwarding variables

    I have a form called page1.php and the user hits submit. I need to take the variables pass from page1.php to page2.php and do some logic with them and placing them in hidden form fields then automatically pass those variables to page3.php without any user interaction. Whats the best way of...
  17. Aeros

    File Name change on data files and transaction log

    We had a developer who developed two databases that were identical but each for its own site. They created the first one and duplicated for the second site. When he did this for DB2 he gave it a different database name and datafile that it points to. Now when I look under the DB2 properties...
  18. Aeros

    results showing all but one result

    Im displaying the results of a query into a drop down form. I get all of the results except for the last record: Query: mysql_select_db($database_aaa, $aaa); $query_ColorResults = "SELECT J.intColorID, C.varColor FROM ProductColor_JUNC J JOIN Color C ON J.intColorID = C.intColorID WHERE...
  19. Aeros

    Array question

    Im still kind of new to php and Ive looked into solving this on my own...so I must post the question. Im trying to post the results of a multiple select list to a new page. I realize that I will be passing an array and on the second page (ive tried tons of configurations) the result I get is...
  20. Aeros

    replace bad passwords

    Im trying to figure out the best way to loop through my list of users that have set their password to 'password' and replace it with random characters. SELECT nvcPassword FROM test WHERE nvcPassword = 'password' The way I tried it was: <cfloop index="i" from="1" to="16"> <CFQUERY...

Part and Inventory Search

Back
Top