Search results

  1. T

    MS SQL problem

    SELECT ISNULL(columnA, columnB) AS columnC FROM MyTable See http://msdn2.microsoft.com/en-us/library/aa933210(SQL.80).aspx Cheers Ross
  2. T

    If ElseIf within another If ElseIf in ASP

    I think your elseif varfail = 0 should be an IF. Something like this: If trim(request("Action")) = "Start" Then If varfail = 0 Then ... ElseIf varfail = 1 ... Elseif varfail = 2 ... End If Else If trim(request("Action")) = "NextQ" Then ... End If...
  3. T

    What is SSH Access?

    SSL and SSH are used for different purposes. SSH is mostly for shell (i.e, command line) access. It's the modern secure alternative to telnet. SSH is irrelevant on shared hosting because shell access is not permitted. Very few shared hosts allow shell access. Your client asking "is SSH...
  4. T

    Diacritics problem

    I had a look at your soft4web.ro site. I don't really have the answer but I think I can at least explain what's happening. Both Firefox and I.E. correctly interpret your meta tag and switch to utf-8. I see the question marks. Now if I manually change my browser to ISO-8859-1 or Windows-1252...
  5. T

    Imap copy tool?

    Thanks Stephen. I didn't know it was that easy. I wonder if Thunderbird can do it too. I'll give it a go.
  6. T

    Imap copy tool?

    Hi all I'm looking for a tool that will let me copy the messages and folders in an imap mailbox to another mailbox. A Google search finds all sorts of tools with various comments so I wonder if anyone has any recommendations. This is a once only migration. Both mailboxes are at JodoHost. I...
  7. T

    Drupal multisite install and virtual hosts

    I think domain aliases will do what you want. You can set them in HSphere. Drupal wants multiple domains to hit the same site. "Site" really meaning root web directory. Then the PHP code in Drupal looks at the URL to figure out what real site to deliver. DotNetNuke can do the same sort of...
  8. T

    Mixed Windows and Linux on same domain

    Resurrecting an old thread. Is static IP the only way to do this? I have a windows account with a DotNetNuke site at www.example.com. We'd also like to run MediaWiki on Linux at , e.g, wiki.example.com Last time I tried, I could create a Linux account, add a DNS A record on the Windows...
  9. T

    Custom file extensions

    Subspace, one way I've achieved the same sort of thing is to deliver the file through ASP.NET. That doesn't require anything special on the host. I haven't tried this on JodoHost but it should work. If you can get it to work then it makes your code more portable. The key thing is the...
  10. T

    Cannot connect to MSSQL database... Error

    You've got me interested in mojoPortal. I won't promise but I might try installing it myself on JodoHost in the next few days. I'll let you know how it goes and if I find anything useful that might help you. I'm quite a DotNetNuke fan but I must admit mojoPortal looks interesting. Ross
  11. T

    Cannot connect to MSSQL database... Error

    I think you need to ask support to setup the database and directory permissions the same way they do for DotNetNuke. That should solve it.
  12. T

    Cannot connect to MSSQL database... Error

    I think your problem is the ( ) around the IP number. They shouldn't be there. I just tried it with a DotNetNuke test site and got exactly the same error. I know (local) is used to mean local machine but I think that's a special case. If possible, you should probably use a host name...
  13. T

    Cron Jobs

    I'm sure Praveen's answer is the best way but of course its only useful for hitting a site on the same account. I'm using a cron on a Linux account to hit a page on a Windows account where we don't have cron. This is what I use. wget -O /dev/null http://www.example.com The -O to null...
  14. T

    Writing to web.config (asp.net)

    You can't get full trust but you can probably ask support to set permissions to be the same as they set for DotNetNuke. DNN certainly writes to the web folder, creates folders etc. I don't know if DNN writes to web.config but its just another file.
  15. T

    Report Viewer - Security Exception

    Yes but I haven't used any and, despite what they say, I don't know how secure they really are and it would hardly be polite to mention them here. Some Google searching with carefully chosen words or questions on a general ASP.NET forum will probably find what you're looking for. Ross
  16. T

    Internationalisation

    I think that's why its spelt (that would be spelled in the US) i18n.
  17. T

    Internationalisation

    Surely you mean Internationalization with a zee? Of all the countries in the world, I think m/d/y is only used in one. I had some convincing to do once while cashing a traveller's cheque from NZ in the USA. ( "Sir, we can't cash a check from the future!" ) Good luck Ross (A...
  18. T

    Read spam emails

    That is how you read the message in its original form. I don't think there is another way.
  19. T

    Report Viewer - Security Exception

    For what its worth, there's a post in this thread explaining why it needs full trust. Its not reflection as I thought. Hopefully a future version will address this.
  20. T

    Report Viewer - Security Exception

    The problem is that report viewer won't work on medium trust, it needs full trust. Yes, its frustrating and disappointing but I wouldn't blame JodoHost. Very few shared hosts will allow full trust. Exactly why it needs full trust is something that Microsoft could answer. I suspect it has...
Back
Top