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!

Recent content by denoxis

  1. denoxis

    IIS6 won't log alias domains as referer during redirection

    I tried and it didn't change anything. Thanks though... Since global.asa redirects before everything I think that causes the problem. So I removed the redirection from global.asa, then I put absolute URLs everywhere. So when they enter www.abc2.com , they will enter to the website without any...
  2. denoxis

    new to IIS6 - How to setup a shared SSL

    I didn't mean to advertise this .com above. I realized it exists. It has nothing to do with me. I couldn't edit my message, so please ignore it this time.
  3. denoxis

    IIS6 won't log alias domains as referer during redirection

    I might remeber it wrong. In the first case, there was no redirection for a while. After I put the redirection in the global.asa, I was probably seeing old log entries that was recorded before I put the redirection. I realized that if there is a redirection in session_onStart in global.asa...
  4. denoxis

    IIS6 - Connection to database failed?

    Does the Internet User account have read/execute permission? Are you using SQL authentication or Windows authentication for the database? If it's Windows, try to create a login for that database and explicitly state your login in your connection string.
  5. denoxis

    new to IIS6 - How to setup a shared SSL

    I know some hosting companies let you use their ssl certificate through a domain. Some of them give you the convinience of using a subdomain i.e. https://yourcompany.hosting.com while others just give you a directory access: https://www.hosting.com/yourcompany In both cases, the URLs are...
  6. denoxis

    IIS6 won't log alias domains as referer during redirection

    Hi, I was hosting a web site on a shared environment before (Windows 2000/IIS 5)Since the domain name was long, I also had similar domain names pointed to the same IP. For example, my original domain was abcd.com, and I also have abcd2.com and abcd3.com pointed to the same IP. Then I was...
  7. denoxis

    SELECT works but not the UPDATE using LIKE % ?

    Actually, there is no need anymore. I used Enterprise Manager directly.
  8. denoxis

    SELECT works but not the UPDATE using LIKE % ?

    Hi, I have this strange problem. In Access 2002, I have linked tables to SQL2000. Basically I can do any kind of query on those tables just like they're an Access table. The other day, I needed to update the fields on this table: product_sku text(50) product_available yes/no...
  9. denoxis

    Any way to read a secure cookie?

    I can change the code like that, but I will have to wait for all the customers to login again.
  10. denoxis

    Recapturing Form Field Info after Gateway Process

    What gateway are you using for processing the credit cards? If it's a third party like VeriSign, they send back a few of the fields. But they support user fields i.e. user1, user2, user3, etc.. Please refer to the 3rd party's guide. Another solution would be sending the data to your API first...
  11. denoxis

    Any way to read a secure cookie?

    Hi, I have this e-commerce site. I have been writing customer IDs to a cookie, so I can help those people to log in easier. However, I have written the cookies on the secure side with secure property set to True. Therefore I can only read them from the secure side (HTTPS). Now I also want to...
  12. denoxis

    XMLHTTP with POST method doesn't work

    Here we go: action = Request.Form("a") sku = Request.Form("p") qty = Request.Form("q") order_id= Request.Form("o") str_params = "a="&action&"&p="&sku&"&q="&qty&"&o="&order_id caid =...
  13. denoxis

    XMLHTTP with POST method doesn't work

    semi-colon shouldn't be there. Also ¶ is actually the shift+7 (on the US keyboard) What is TGML BTW?
  14. denoxis

    XMLHTTP with POST method doesn't work

    Hi, I have been working on a website that utilizes this XMLHTTP object a lot. Examples look pretty easy, except the one with "POST" method. "GET" works fine, but the following example doesn't work: xml.Open "POST", "http://www.someAddr.xx", False...
  15. denoxis

    reading remote file with POST method

    Hi everybody, I'm working on a solution that should include some remote files from another URL. This solution will be platform independent, and I already know how to do it with ASP. Using PHP, I can dump the result of the remote script with the functions like include() or fopen(). What I want...

Part and Inventory Search

Back
Top