Recent content by coreo

  1. C

    Asp.net Site Problem

    Can you poast the code contained in the sqltest.aspx file?
  2. C

    Can't add email address

    I posted the same question when I joined. You need to wait about 24 hours for payment to go through various checks.
  3. C

    Permissions Change

    In your control panel under the Web Service properties, make sure you have ASP turned on. Also turn on directory indexes and enter the files you want (something like "index.asp index.htm default.asp").
  4. C

    Having this same doubt (subdomains) ...

    But then he would be using one of his limited subdomains. If he's thinking along the same lines as me, he'd like to find a way of running unlimited subdomains by pointing them all to subdirectories. Effectively that would be just using the one domain but having unlimited aliases in the form of...
  5. C

    Mail Problem from ASP.NET

    This was my code that worked, stopped working, but now works: System.Web.Mail.MailMessage Mail1 = new System.Web.Mail.MailMessage(); Mail1.From = "[email protected]"; Mail1.To = txtEmail.Text; Mail1.Subject = "Subject"; Mail1.Body = "Body"; System.Web.Mail.SmtpMail.Send(Mail1)...
  6. C

    Mail Problem from ASP.NET

    And now it's working again. I haven't changed a thing. Must have been something funny going on somewhere!
  7. C

    Mail Problem from ASP.NET

    This was all working until 2 days ago. The email address is correct and the SMTP server is valid.
  8. C

    Mail Problem from ASP.NET

    Hi, I'm developing an application in ASP.NET which involves the sending of email via the SMTP server mail.myaccount.com. When it tries to send the email, I get an error: The server rejected one or more recipient addresses. The server response was: 553 sorry, that domain isn't in my list...
  9. C

    index.php not directory index

    It's a Windows account
  10. C

    index.php not directory index

    Hi, I am having a problem with osCommerce. It is installed to the "catalog" folder on my website. If I type in http://mywebsite.com/catalog/index.php then osCommerce comes up. But if I type in http://mywebsite.com/catalog (without naming the index.php page), it just says "you are...
  11. C

    Parent Include Paths

    In ASP, I am getting an error message: The Include file '../include/include.asp' cannot contain '..' to indicate the parent directory. I've looked up the problem and apparently it is a setting in IIS. I found the following advice: This is to do with the 'Enable parent paths' option...
  12. C

    Recent package change announcements

    Although I'm still a bit disappointed with the changes, I would like to say I am impressed with the action JodoHost have taken in response to posts in the original thread about the original changes. I posted a message talking about my disappointment at the removal of unlimited domain aliases...
Back
Top