Ask a Question related to Macromedia Contribute General Discussion, Design and Development.

  1. #1

    Default Access Denied Error

    CN is computer name

    set wmiLocator = CreateObject("WbemScripting.SWbemLocator")
    Set wmiServices = wmiLocator.ConnectServer(CN)

    I am receiving a Access Denied Error on the 2nd line above when a user is
    trying to access my page. I don't receive the error. I have gone into the
    WMI Control and set the permissions for the web server to gave the user
    permissions to connect. However, they are still receiving the Access Denied
    errors?

    Does the permissions need to be set on the local machine?




    TenStar Guest

  2. Similar Questions and Discussions

    1. Error: Access Is Denied
      Hi Guys, We're hosting a web portal running on Windows 2003, IIS 6.0, Coldfusion MX, MS SQL 2000. All functionalities are workable when accessed...
    2. 550 Access is denied - permission error
      hi all. im having an issue tring to connect to a site using contribute 3.11. i get this error. Make Directory Test: The server is unable to...
    3. Web Service + Anon Access, but getting 401 Access Denied Error
      I have a simple webservice that just returns a string. The security for this is set to windows authentication in IIS (XP Professional) and anonymous...
    4. Access is Denied Error??
      Hi: I am getting the below error, when i run my project from visual studio environement. When i restart the m/c, the error disappers. After...
    5. Always get Error 401: Access denied
      Thanks Kashif for the suggestions. Hi Tore, You may check the following link for more information: 811318 PRB: "Access Denied" Error Message...
  3. #2

    Default Re: Access Denied Error

    Replace the wmiLocator.ConnectServer(CN) with the given below:

    wmiLocator.ConnectServer(WScript.Arguments(1),"roo t\cimv2",WScript.Arguments(2), WScript.Arguments(3),null,NULL, NULL )

    Where WScript.Arguments(1) is <some ipaddress>
    WScript.Arguments(2) is <Username Should be memeberof admin group>
    WScript.Arguments(3) is the password.


    ************************************************** ********************
    Sent via Fuzzy Software @ [url]http://www.fuzzysoftware.com/[/url]
    Comprehensive, categorised, searchable collection of links to ASP & ASP.NET resources...
    jntupal@yahoo.co.in Guest

  4. #3

    Default Access Denied Error

    I am using Contribute 3.1. I set up a site to have FTP access. The FTP
    connection checks out fine if I test it. I can browse around in Contribute and
    edit a page, but when I try to Publish it, it errors out. The error message
    says, "Access Denied. The file may not exist, or there could be a permission
    problem"

    I am testing this out to verify a client will be able to use it. I have access
    to the actual web server and don't need Contribute for what I do - However the
    people maintaining the site will have FTP access to it and would like to use
    Contribute. To resolve the error, I am not sure what I'm looking for. As I
    said, the FTP information is correct. A folder called \TMPn1768kx8p7 was
    created on my site but there is nothing in it.

    Can someone point me in the right direction?

    ThatNicknameIsTaken Guest

  5. #4

    Default Re: Access Denied Error

    I know what the pattern is -
    First off I had to uninstall and reinstall the software in order to get past
    the Access Denied error. Obviously that is not going to be a workable solution
    but it was a last resort.
    If I create a connection and update a page. Publish it using my FTP connection
    and everything's fine. The FTP connection is to the live web site and I made a
    bogus update to the page.
    So I then copied the page back over from the test server, to overwrite the
    bogus update I had just published thru Contribute. Bingo, I get the Access
    Denied error.

    The client will be making changes using Contribute and an FTP connection. I
    however will be copying pages over from a test server - How can both of these
    live in harmony. Any ideas?

    ThatNicknameIsTaken Guest

  6. #5

    Default Re: Access Denied Error

    One thing we ran into: when you update and load a page, you become the owner of
    it. So, if the other person doesnt have rights to things you own, they cant
    update.

    The rights and permissions I am talking about have to do with apache's groups
    and users... though I imagine the same thing would happen with IIS. We
    basically had to have a cron script go through and change the ownership to our
    main group, of which everyone is a member, to get this to work.

    Just a thought!

    lisa3711 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139