Plugin PasswordMask - not found,

  1. #1

    delete please this post

    Hello!
    i create form with 2 password field :

    <ext:TextField ID="password" runat="server" FieldLabel="Пароль"  Name="password"  InputType="Password" >
                               <Plugins>
                                    <ext:PasswordMask ID="Pm1" runat="server"  />
                                </Plugins>
                             <Listeners>
                                <ValidityChange Handler="this.next().validate();" />
                                <Blur Handler="this.next().validate();" />
                            </Listeners>
                                 
    
                            </ext:TextField> 
                            <ext:TextField ID="password1" runat="server" FieldLabel="Подтвердите пароль"  Name="password1"  InputType="Password"        Vtype="password"
                              MsgTarget="Side"  ValidatorText="Пароли не совпадают" > 
                              <Plugins>
                                    <ext:PasswordMask ID="Pm2" runat="server"  />
                                </Plugins>
                                        <CustomConfig>
                                            <ext:ConfigItem Name="initialPassField" Value="password" Mode="Value" />
                                        </CustomConfig>                      
                                </ext:TextField>
    But i have message code 500:
    NetworkError: 500 Internal Server Error - http://localhost:1264/ux/passwordmask/passwordmask-js/ext.axd?v=40838"
    i think - virtual catalog /ux - not set in IIS?
    help me please..
    Last edited by asics167; Dec 09, 2013 at 3:54 PM. Reason: 2 post
  2. #2
    Hello!

    You don't have to create the ux catalog in IIS. Do you use Virtual Catalog for this site? Do you have other issues like this?

    Probably, you have this problem due to wrong IIS configuration.

    Also, investigate the Windows Event log, I guess it should have some details about this issue.
    Last edited by Baidaly; Dec 11, 2013 at 11:31 PM.
  3. #3
    thanks! i found my error in web config - i have Forms authorization and catalog /ux not in list w/o auth .

    i add thid in web.config and plugin works ok


    <
    location path="ux">
       <system.web>   
      <authorization>    
       <allow users="*" />  
       </authorization>  
      </system.web> 
    </location
    please close thread

Similar Threads

  1. [CLOSED] Problems with Password Validation and PasswordMask plugin
    By tactime10 in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Dec 10, 2013, 9:24 AM
  2. [CLOSED] PasswordMask. Disable all validation. Only use Mac style :)
    By CarWise in forum 2.x Legacy Premium Help
    Replies: 7
    Last Post: Sep 18, 2013, 1:18 PM
  3. [CLOSED] PasswordMask information
    By CarWise in forum 2.x Legacy Premium Help
    Replies: 5
    Last Post: Sep 12, 2013, 11:32 AM
  4. Ext.Net.UX.dll not found
    By retto in forum 2.x Help
    Replies: 0
    Last Post: Mar 17, 2013, 4:55 PM
  5. 'ConfigOptionsExtraction' could not be found
    By sampathch123 in forum 1.x Help
    Replies: 1
    Last Post: Oct 26, 2010, 1:11 PM

Posting Permissions