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. anon1971

    Trying to find is a null is True False

    I am trying to check to confirm that both memberid and recipeid is not null. That way if both have value it will allow the member to ad the ripe to there list if both have a value it will tell them the recipe they are adding is already in there list. Working on this for a while need help and...
  2. anon1971

    Form Not Inserting Data

    I am new to PHP have built everything in ASP Classic and decided to upgrade and so I choose PHP over ASP.net and love it so far. One more thing hosting is 2011 server with IIS 7 PHP integration on mysql and the table it is incerting has full permission from root so I have ruled that out and so...
  3. anon1971

    Form Not Inserting Data

    I checked the log file and nothing to indicate the errors what I did find strange is that when you submit a blank form with no data it does not validate. All the other forms work on the site just not this one nor does it seem the captcha is captchaing. I am going nuts here. Your vacutina did not...
  4. anon1971

    Form Not Inserting Data

    No errors and the code works perfect except it will not post put pulls everything everything else here is the full code I am beside myself on it <?php include_once("/apps/config.php"); // get vars $id = $_REQUEST['id']; $id = sanitize(1, 11, $id); // start session for captcha...
  5. anon1971

    Form Not Inserting Data

    Do anyone see anything wrong with this code: $ip = $REMOTE_ADDR; $insert_comment = mysql_query("INSERT INTO comments (name, comment, reid, dateadded, userip) VALUES ('".mysql_real_escape_string($yourname)."', '".mysql_real_escape_string($comment)."', ".$id.", NOW()...
  6. anon1971

    Calculate Sum In ASP Classic

    Thanks guys works perfect with ether of xwb fixes
  7. anon1971

    Calculate Sum In ASP Classic

    Below is the code and I recieve no errors but it write mo data in the response.write? set rs = Server.CreateObject ("ADODB.Recordset") Set conn = Server.CreateObject("ADODB.Connection") Conn.ConnectionString =...
  8. anon1971

    Runtime Error 5

    Thanks Mad Oh i feel like an idiot MS Document Scan was not saving it to the temp file meaning it had nothing to move lol. fixed the code is not the problem.
  9. anon1971

    Runtime Error 5

    thanks, Here is the entire code and I might add it has worked for over two years with no problem. Now I did formate this workstation that uses it but before no issues. i have checked Microsoft Scripting Runtime in References. Dim stAppName As String stAppName = """C:\Program Files\Common...
  10. anon1971

    Runtime Error 5

    Runtime Error 5 Invalid Procedure or Argument? fso.MoveFile temp, "\\192.168.0.101\_file cabnet\" never had this issue before until today
  11. anon1971

    State 28000 Error 18542

    Fixed it! I when to Data Source (ODBC) configured it for Name Piping then went to SQL Server Configuration Manager and disabled TCP/IP. Restarted the SQL Server and Server Browser Walla worked! I then re-enabled the TCP/IP settings restarted server 2011 and the troubled workstation running vista...
  12. anon1971

    State 28000 Error 18542 Help...

    I will repost it there thanks
  13. anon1971

    State 28000 Error 18542

    Help!!!! We have a Access Front-end and an sql backend that are getting the following error. State 28000 Error 18452 Not from a Trusted Connection <---- Shows this on the workstation running Vista. SSPI handshake failed with error code 0x8009030c, state 14 while establishing a connection with...
  14. anon1971

    State 28000 Error 18542 Help...

    Help!!!! We have a Access Front-end and an sql backend that are getting the following error. State 28000 Error 18452 Not from a Trusted Connection <---- Shows this on the workstation running Vista. SSPI handshake failed with error code 0x8009030c, state 14 while establishing a connection with...
  15. anon1971

    Connection Error

    Wow really 4 12hour days upgrading our server a this is what stumpped me LOL. All I can do is laugh!!! Below is is the fix, thanks guys... Does Not Work With IIS 7.5 Provider=SQLNCLI;Server=SERVER\SQLEXPRESS;Database=GE_Data;Trusted_Connection=yes; Does WORK WITH IIS 7.5...
  16. anon1971

    Connection Error

    Thats not it, it has somthing to do with ASP on IIS 7.5 that just want work
  17. anon1971

    Connection Error

    The code below works fine on win 2003 server running SQL Express 2003 but it gives an error when I upgraded to Win 2011 SQL Express Server 2008 R2. I am stumped... Error ADODB.Connection error '800a0e7a' Provider cannot be found. It may not be properly installed. /apps/cs/login.asp, line...
  18. anon1971

    Mising Operator Error 3075

    Now its given a invaild sql statement error DoCmd.RunSQL "; with cte as (select MailID, count(Address) over (partition by Address) as cntAddresses from MailingList2) update cte set SS = 'true' where cntAddresses > 1"
  19. anon1971

    Mising Operator Error 3075

    thanks for the response now its giveing a 3319 error on union query: DoCmd.RunSQL "(; with cte as select PK, count(Address) over (partition by Address) as cntAddresses from MailingList2)update cte set SS = 'true' where cntAddresses > 1"
  20. anon1971

    Mising Operator Error 3075

    Ok I am trying to set the value to true if it finds more than one duplacate address?

Part and Inventory Search

Back
Top