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. 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...
  16. denoxis

    stored procedure and a date

    The stored procedures I have don't have any problems with the dates. It could be the local settings of your SQL server. Also I assume you send the dates in single quotes just like varchars (i.e. EXEC sp_my_sp intParam,'varChar','10/5/2003') Also if you use any forms that allows you to enter a...
  17. denoxis

    Help, I need a Ticket System

    Hi, I was working on a ticket system by myself for the support department of a company. Currently, visitor submits a form, database records it and assigns a ticket number, and sends a message. But we can't track them yet, because support people use Outlook. 1) In order to build my own system...
  18. denoxis

    Closing the objects

    Hi, My server admin warned me about the server resources due to the high traffic. Two main thing, DLLHOST.EXE and INETINFO.EXE are the main resource eaters. He asked me to double check the site if there is any open objects that are not closed properly. I do like this in my code, would it...
  19. denoxis

    SELECT question...

    Thank you both! I didn't think about using DISTINCT with COUNT. Now makes sense :)
  20. denoxis

    SELECT question...

    Hi, I have a table that keeps which item from which order has been dropshipped by who. Something like this: CREATE TABLE [dbo].[new_tbl_drop_ships] ( [drop_ship_id] [int] IDENTITY (1, 1) NOT NULL , [vendor_id] [varchar] (20) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL , [order_id] [int]...

Part and Inventory Search

Back
Top