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

  1. Krus1972

    Rewrite Rule for .htaccess Help

    My website is located at www.freetv.info. When loading the root domain, freetv.info, the website redirects to the url: https://freetv.info/index.php/Main_Page I would appreciate it if someone could help me with modifying my existing .htaccess file and/or writing a simple rewrite rule that will...
  2. Krus1972

    msxml3.dll error '80072f7d' - An error occurred in the secure Channel support

    I get this error when using MSXML2.XMLHTTP6.0 Microsoft VBScript runtime error '800a01b6' msxml6.dll error '800c0005' The system cannot locate the resource specified. I do not know what version of TLS. I am running it on Windows 7 localhost IIS.
  3. Krus1972

    msxml3.dll error '80072f7d' - An error occurred in the secure Channel support

    That is the same string that was recommended by a response further up this thread. That string returns the same error. Any other ideas?
  4. Krus1972

    msxml3.dll error '80072f7d' - An error occurred in the secure Channel support

    Nope, that produces the same error. Any other ideas?
  5. Krus1972

    msxml3.dll error '80072f7d' - An error occurred in the secure Channel support

    I am receiving the following error when using the code below. This code worked fine for many years up until a short while ago. Does anyone have a fix for this? msxml3.dll error '80072f7d' An error occurred in the secure Channel support sURL = "https://mywebaddress.com" Set oXMLHttp =...
  6. Krus1972

    Pop-up Blocker Detecter

    I am using the following code to open brand new browser windows when our users use our website. I would like to integrate a popup blocker detector within the below code. If the users' pop-up blocker is enabled on our website, the below code cannot open the new browser sessions. If this is the...
  7. Krus1972

    Web.Config URL Rewrite Question

    I am using the following rule in my web.config file and I am having a few issues. I hope someone can help: <rewrite> <rules> <rule name="Shopping"> <match url="^([_0-9a-z-]+)" /> <action type="Rewrite" url="?thesearch={R:1}" /> </rule>...
  8. Krus1972

    Special Character Filter Function Problem

    I have the following function called within a large PHP script. All this function does, is it checks to see if any special character(s) have been submitted in a form. If a special character has been submitted, than an error message is sent to the user to fix their form entry. Right now, this...
  9. Krus1972

    Syntax Error - Confused

    I am using the following code to create tables within a MySQL database: // Connect to the database mysql_connect("$mysql_host","$mysql_username","$mysql_passwd") or die (mysql_error()); mysql_select_db("$mysql_dbase") or die (mysql_error()); // Create the tables mysql_query("CREATE TABLE...
  10. Krus1972

    How do You Terminate a Javascript Process

    Chris, That is not my question. I am looking for a way to prevent SUBSEQUENT javascript from executing. This infinite scrolling actually uses Jquery. Jquery has a .stop() method. I just don't know how to properly use it for what I need.
  11. Krus1972

    How do You Terminate a Javascript Process

    Hello, I am using the following code to provide endless scrolling of content on my website. The code works fine and I have no problems with any of it with the exception of one minor thing. When I have no more results to display, the endless scrolling Javascript continues to activate and tries...
  12. Krus1972

    URL Rewrite Rules in Web.config

    Hello, We own the website http://popularauctions.com. Our standard url for searching is popularauctions.com?thesearch=keywords+here I was told that you could set up some simple rules in the web.config file so that the search URLs entered into the browser could be entered in this format...
  13. Krus1972

    Centering Content Within a Fixed Navigation Menu

    Do you guys know how to give the same navbar a raised effect? Specifically, I would like to place the same gradient shadow along the bottom border as shown on the navbar on this page: https://www.w3schools.com/bootstrap/bootstrap_navbar.asp
  14. Krus1972

    Centering Content Within a Fixed Navigation Menu

    That is interesting. I am using Sitelock firewall on the website. Right now it is set to allow only U.S.A. and Canada based traffic. If you are located outside of these regions even if you are using a proxy, you won;t be able to access it. Where is vacunita and ChrisHirst located? If you guys...
  15. Krus1972

    Centering Content Within a Fixed Navigation Menu

    I have created a fixed navigation bar that remains at the top of the screen when the user scrolls through content on a webpage. The navigation bar is very similar to what LinkedIn uses and very similar to what Facebook uses at the top of the screen. You can see it here...
  16. Krus1972

    Determine the Width and Height of an External Image

    Does anyone know if there is a way, in classic ASP, to determine the height and width of an external image, that is not located on the server, and store these values in seperate classic ASP variables? For example, I would like to determine the height and width of the following image without...
  17. Krus1972

    On-Click Form Input Box Scrolling

    It works perfectly, thanks for your help!
  18. Krus1972

    On-Click Form Input Box Scrolling

    Hello, Thanks for your response. That is not working. The browser does not scroll to the "display2" when the the "display1" input box is clicked. I've tried placing the above Javascript in the head and then within the body of the document. Here is the code I am using: <html> <head>...
  19. Krus1972

    On-Click Form Input Box Scrolling

    I have a input form box at the very top of my webpage that is used solely for displaying text for reference to the visitor. This input box is used because the look and feel of a form input box fits the look and feel of the webpage. I do NOT want to use it as an actual form entry. The real form...
  20. Krus1972

    Specifying Which Option Tag is Selected Within a Drop-Down Box

    Thanks for your response. Could you provide more detail? I am only an intermediate javascript programmer and I don't use it that often.. Thanks again for your help.

Part and Inventory Search

Back
Top