Search results

  1. largerabbit

    HSphere XML API Help Needed

    Hi Emagine, I am using Perl along with SOAP::Lite at the moment, but there is a good .net (VB) example that wraps up some of the API functionality. It is at http://www.gotchasoft.com/ I have tested it and it works.
  2. largerabbit

    HSphere XML API Help Needed

    I only see that error when I have passed a bad authtoken to the service I am calling. I currently don't use the signup methods, just use the api to retrieve disk space/transfer etc. I will have a play later this week.
  3. largerabbit

    HSphere XML API Help Needed

    Hi there, Are you having problems generating an authtoken? Or forming the request to signup a new user?
  4. largerabbit

    Access auto identifier lost during import to SQL

    Adding an identity column is a bit of a nightmare from the analyser. It is very simple to do in the Enterprise manager in the table designer.
  5. largerabbit

    PHP Mail

    Replace your \n's with \r\n's in your message string. Strictly speaking, you're supposed to separate lines with carriage return+line feed.
  6. largerabbit

    Semi-dedicated Servers???

    How would we control the sites? Would it be integrated into ourHsphere, or would we have to use a different control panel?
  7. largerabbit

    Shopping Basket

    Might be a bit more than you are looking for but comersus is open source. You won't need to buy the extra modules if your site is simple. www.comersus.com
  8. largerabbit

    Syntax error in UPDATE statement.

    Highflyer, the solution to the problem is above in doctorallia's post.
  9. largerabbit

    Syntax error in UPDATE statement.

    The quoted string from doctorallia look perfect, but in your code you need to move the line id = Request.QueryString("id") above the sql string. Otherwise your value of id in the SQL will always be nothing. Also, there are soem variables coming from form input and the id is coming...
  10. largerabbit

    Syntax error in UPDATE statement.

    Hi there, I think you need to a) quote your strings b) the value of the variable id is assigned after its use that should fix it. Cheers, Paul.
  11. largerabbit

    apache -> u get what u pay for & Case sensitivity

    Not really laziness on their part. The unix filesystem is always case-sensitive so the task of rewriting all URLS to match the case of the file on disk would be significant, and they can't control the case variance of the files on disk. mod_spelling should automatically create a redirect to...
  12. largerabbit

    Not slow server, but server php issues!?

    Are your PHP pages doing any logging, dns lookups etc. Is anything odd happening in your code? I have a PHP site which uses Mysq at Jodo and it is pretty much instant.
  13. largerabbit

    Not slow server, but server php issues!?

    The connection/download times are quick from the UK, so it is not network or bandwidth. Does your php site make use of a database? If so you could run some queries manually against the DB to see whether the slowdown is the web server or the db?
  14. largerabbit

    Ado

    Thanks!!
  15. largerabbit

    Ado

    Hi there Stephen, I am on win8. Thankyou!
  16. largerabbit

    Ado

    Can we have ADO installed as a DBI driver on a windows machine. Or is it not installed for some reason? Cheers.
  17. largerabbit

    What is DTS

    Hi there, http://www.microsoft.com/technet/prodtechnol/sql/2000/deploy/dtssql2k.mspx Check out the link. Loads of info there. It is a pretty cool tool. Cheers.
  18. largerabbit

    dates and database

    Hi there, I think the easiest way to do it is to transfer the data via DTS and use a transformation script on those fields to alter them accordingly. Cheers.
  19. largerabbit

    Backing up my MSSQL database

    Hi, As far as I know, the Enterprise Manager is acting as an interface to the remote DB server. If you try and perform a DB backup it is actually trying to write the backup onto the hard disk of the DB server, not your local machine. You can use DTS to copy over a DB via Enterprise...
  20. largerabbit

    DNN 3.0 statement

    Thanks Yash! I will be careful I promise :-) It is always good to have a development setup at home or in the office. I know sometimes people are reluctant to set something up but not only is it much better for your web host, in general you can work so much faster!
Back
Top