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 Chriss Miller 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: panini
  • Content: Threads
  • Order by date
  1. panini

    Joomla URL Rewrite - Canonicalization

    Hi there, I'm having a problem with canonical URL's on my site hosted in Joomla. I switched one of my sites over to Joomla and the existing Google search results all point at http://www.domain.co.uk/page.php but when you click on them you just end up at http://domain.co.uk/ and not the specific...
  2. panini

    Problem running DTS package from classic asp page

    I'm trying to run a DTS script that copies tables to from a dev server up to a live server. The DTS script works fine with a right click and execute. I've been using these two pages as examples. http://www.asp101.com/articles/carvin/dts/default.asp http://support.microsoft.com/kb/252987 My...
  3. panini

    MS SQL skipping DB writes?

    SOS! My SQL 2000 server is appearing to miss some UPDATE statements - or sections of update statements out so the orders that I'm writing to my databases are not complete... - i'm getting no errors and if i add another update in to test the code it works fine. We have increased the load on the...
  4. panini

    random email truncation with _NextPart_

    Hi guys, I'm running an IIS6 server using classic ASP and CDO SYS - i've been sending order confirmation emails without problems but have now started to get some of them seemingly randomly truncated with the code ------=_NextPart_000_27B5_01C781E7.440B53D0-- Has anyone seen this ever...
  5. panini

    SQL date format query

    I have a query that gets values from todays date or yesterdays date using: (orderdate = CONVERT(CHAR(8), GETDATE(), 112)) and (orderdate = CONVERT(CHAR(8), GETDATE()-1, 112)) The cell format used to be 25/12/2006 but it's now been changed to include a timestamp so it's 25/12/2006 10:15:00...
  6. panini

    Good promiscuous mode fast wifi card?

    Hi Experts, Can anyone recommend one of these? Specifically one available for sale in the UK and one that works with WinPcap.... Many thanks,
  7. panini

    Auto Date Selection Script Help

    hi i currently use this for a form that has individual day/month/year drop downs: function fromDate() { today = new Date(); d = today.getDate(); m = today.getMonth(); y = today.getFullYear(); document.SelForm.ddd.selectedIndex = d+0; document.SelForm.ddm.selectedIndex = m+0...
  8. panini

    regular expression to remove letters in classic asp

    Hi there, A numeric (cash) variable I am working with is having extra characters added to it in different browsers and os's on it's path through scrapes and javascript links. Just before i use the variable again in asp i want to clean it up and get rid of everything apart from numbers and a...
  9. panini

    Simpler query question

    hi there, I've got 3 tables - orders1, orders2, and customers. Should have been linked but a file overwrite has knocked the code that links them out.... I want to get a feel for how many there are that should be linked. So i want to run a query that says - give me all the orders and...
  10. panini

    SOS! query for date within string

    Hi there, I need to pull the first date out of a string that looks like this Mr. Boris Mackay * DOB: 12/11/1940 :: Mrs. Sheila Mackay * DOB: 11/10/1956 and check the DOB against another date to make sure they aren't over 65.... (I'm using ... AND (DATEDIFF([year], customer.DOB...
  11. panini

    ASP to encrypt string before MS SQL insert

    Hi there, I'm looking for a good encryption technique to use to store some data - my web pages are asp on iis 6 on a win 2003 server that has MSSQL 2000 as a db. I want to use asp to encrypt the strings before inserting them into the table, then be able to pull them out again with a decrypt...
  12. panini

    write response to browser window

    hi again, I'm a php newbie - and am having a problem with the code below. Basically it's timing out or cutting the request off before it gets a response back from the remote server (which can take up to 10 seconds). I'd also like to write the server response to the screen - can anyone point...
  13. panini

    how do i handle speech marks in a variable

    hi there - i have a string that needs to have -ds1"data" in it - but the first " keeps closing the string... In asp in would be -ds1""data"" but i can't work out what it would be in php
  14. panini

    Make TCP socket connection?

    Hi experts, Does anyone know how I can make a standard tcp socket connection from an asp page? Basically i have a payment server that needs a socket connection and i want to make a call to it from an asp page using vbscript and then deal with the response back.... I think the php equivalent...
  15. panini

    Permissions question - SQL 2000

    Hi there, I've worked out how to control a users access to tables within my database using roles. However, I want to give no access to most tables, select, insert, delete to another and complete unrestricted access to another - including design view, etc so they can add more columns - in fact...
  16. panini

    RETRIEVE DATA FROM XML RESPONSE INTO ASP VARIABLES/ARRAY

    Hi There, I have the following object which makes an XML request to a remote server: requestStr = "<API_Request System=""XXX"" Version=""1.0"" Product=""CarPark"" Customer=""A"" Session=""000000001"" RequestCode=""1"">" requestStr = requestStr & "<Agent>" requestStr =...
  17. panini

    IDE Hard drive compatibilty

    Hi there - I need to buy a new hard drive for a dell dimension 4100 - p3 1gb - desktop machine. Dell have quoted £140 which seems too much to me - i'm thinking that this drive may do the job, but don't understand if it's going to be compatible - can anyone help? here's the link to the drive...
  18. panini

    set value of hidden form field

    Hi Experts, I have the following conditional which first sets the visibility of a table and then sets the value of a for object. Both the tables and the forms are created dynamically and the dynamic element of the table name always matches the dynamic name of the form. E.G: result_1 relates...
  19. panini

    Stumped! - Unable to authenticate to SBS domain over Cisco VPN

    Hi Experts, I'm pulling my hair out trying to authenticate over my VPN - we have a new SBS 2003 server which is running away quite happily when you're on the local LAN - you can login, it maps home / group drives etc. I'm now trying to connect over my cisco VPN client and get access to shared...
  20. panini

    DTS ActiveX VBScript problem

    Hi there, I had some really great help a while back for a script problem i had, but it's giving me some weird results... this is the original question.. "I've got an activex script that emails orders out to suppliers. They need to receive the data in a particular format - and need some field...

Part and Inventory Search

Back
Top