Search results

  1. S

    ASP.NET Permissions to Mail Directory

    Mison, I have set the permissions for all of the concerned directories to 0777. This did not help the problem. I tried using the Mono namespace but my compiler doesn't understand it. I'm developing on a machine at work so I have limited priveleges as far as installing goes. This does...
  2. S

    ASP.NET Permissions to Mail Directory

    Misson - thank you for your attention. Unfortunately, I do not believe your post is correct. I have created the following script: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim MAIL_PATH As String =...
  3. S

    ASP.NET Permissions to Mail Directory

    Hello, I'm trying to give my ASP.Net script access to the mail directory in order to process it. I am unable to do this as I get a permission error regardless of the permissions set for the directory. More information is at a thread I started on your forums...
  4. S

    ASP.NET Permissions to Mail Directory

    Thanks xav0989 but that didn't work either.
  5. S

    ASP.NET Permissions to Mail Directory

    I'm hoping a Moderator could help me with this. I believe they have to set the appropriate permissions.
  6. S

    ASP.NET Permissions to Mail Directory

    Each directory: mail - 0750 neckelmann.x10hosting.com - 0750 mapper - 0750 cur - 0750
  7. S

    ASP.NET Permissions to Mail Directory

    I'm trying the following coding: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim MAIL_PATH As String = "/home/neckelma/mail/neckelmann.x10hosting.com/mapper/cur/" Response.Write(My.Computer.FileSystem.DirectoryExists(MAIL_PATH)) End Sub...
  8. S

    Cron Job with ASP.NET

    Thanks guys. I've started another thread at http://forums.x10hosting.com/programming-help/102417-asp-net-permissions-mail-directory.html in order to avoid crossing subjects.
  9. S

    Corey, I have a question regarding folder permissions that I'm sure you can answer quickly. I...

    Corey, I have a question regarding folder permissions that I'm sure you can answer quickly. I can't seem to get an answer from anybody else. I'm trying to access my mail folder from a script executed by a cron job. Unfortunately, I get an "access denied" error obviously due to permissions...
  10. S

    Cron Job with ASP.NET

    Yes but I wasn't aware that you meant to use "wget" in the cron job. My mistake. Any clue on how to get a script read permission for the mail directory?
  11. S

    Cron Job with ASP.NET

    I got this figured out. For anyone questioning, you have to use "wget" (as suggested) followed by the full page address running the script.
  12. S

    ASP.NET & Mail Folder

    Hello, How can I give my ASP.NET script access to the mail directory?
  13. S

    Cron Job with ASP.NET

    [FONT=Courier New]Thank you. I went with your suggestion. The script runs fine over the web, but the cron job reports: That's it!
  14. S

    ASP.NET Permissions to Mail Directory

    Hello, How can I give my ASP.NET script access to the mail directory?
  15. S

    Cron Job with ASP.NET

    Hello, I'm new to cron jobs as a whole. I program in ASP.NET and cannot figure out how to get a job to run. Do cron jobs work for ASP.NET?
  16. S

    Create/Modify Files (ASP.NET)

    Thanks. Giving the maps directory 775 worked. Everything else is set to 644. I'm not much on the admin side of things. More into the programming. Thanks again. Edit: Oops! I take it back... Correct permissions had to be set to 645.
  17. S

    Create/Modify Files (ASP.NET)

    I'm getting an error when I run the coding Return XmlTextWriter.Create("/home/neckelma/www/maps/" & strFileName, xmlSettings) strFileName obviously holds "N164RJ TXKF-LFTH.kml". The file causing the error is Default.aspx & I've set permissions 755. Can anyone tell me what I'm...
  18. S

    Basic Problem with ASP.Net

    The problem was in my markup design. Colors were given by name instead of their hex value. Problem seems to be with Mono.
  19. S

    Basic Problem with ASP.Net

    I have a simple website at (http://neckelmann.x10hosting.com/). The website begins with the following coding: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If Page.IsPostBack = False Then Response.Write("no text") End If Exit Sub Coding of...
Top