SourceFire management system error when I try to delete a user agent

I'm running into an issue with the Sourcefire management system. When I try to delete a user agent within Sourcefire I get redirected to an error page.
Running 5.3. I have attached the error.

Try disabling your antivirus/antispam software.

Similar Messages

  • System Beep when I try to delete

    I'm using Aperture 3 and when I try to delete a photo with CMD+Delete the system beeps and the photo is not deleted. I have tried this with both referenced and managed files and get the same result. I'm able to delete the photo if I go to the menu and choose delete but prefer to use the keyboard shortcut.
    Any ideas would be appreciated.
    Thanks
    Arnie
    Message was edited by: ArnieB

    Try this link, http://support.apple.com/kb/HT1526

  • N97 system error when i try to open menu,music.ima...

    please

    Try a reset, back up contacts, calendar and note ONLY then dial *#7370# followed by 12345 and the phone will reset, you then need to set it up again manually, if this doesn't work you need to visit Nokia care !
    Good Luck
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Can somebody explain the error when i try to delete something off my Jlist?

    type String name, password, phone and int currently salary and desired salary.
    press the add button.
    then click on the name and pres delete. theres a huge error on the command prompt. could some1 tell me how to solve it?
    here are the codes:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.text.*;
    import java.util.*;
    import java.util.Vector;
    import javax.swing.JScrollPane.*;
    import javax.swing.event.ListSelectionListener;
    public class Employment extends JFrame
            //declare class variables
            private JPanel jpApplicant, jpEverything,jpWEST, jpCENTRE, jpEAST, jpAddEditDelete,
                                       jpCentreTOP, jpCentreBOT, jpEastTOP, jpEastCENTRE, jpEastBOT,
                                       jpBlank1, panel1, panel2, panel3, panel4,jpBottomArea,
                                       jpEmptyPanelForDisplayPurposes;
            private JLabel jlblApplicantForm, jlblAppList, jlblName, jlblPhone,
                                       jlblCurrentSalary, jlblPassword, jlblDesiredSalary,
                                       jlblNotes, jlblApplicantSkills, jlblIndustrySkills,
                                       jlblBlank1, jlblBlank2, ApplicantListLabel,
                                       NotesListLabel, ApplicantSkillsLabel,
                                       IndustrySkillsLabel,jlblEmptyLabelForDisplayPurposes;  
            private JButton jbtnAdd1, jbtnEdit, jbtnDelete, jbtnSave, jbtnCancel,
                                            jbtnAdd2, jbtnRemove;
            private JTextField jtfName, jtfPhone, jtfCurrentSalary, jtfPassword,
                                               jtfDesiredSalary;
      private JTabbedPane tabbedPane;
            //private DefaultListModel listModel2;
      String name,password,phone,currentsalary,desiredsalary,textareastuff,allthetext;
      String selectedname;
            final JTextArea Noteslist= new JTextArea();
            DefaultListModel listModel = new DefaultListModel();
            JList ApplicantSkillsList = new JList(listModel);
            DefaultListModel listModel2=new DefaultListModel();
      JList ApplicantList = new JList(listModel2);
           private ListSelectionModel listSelectionModel;
            JList  IndustrySkillsList;
                  Vector<StoringData> details = new Vector<StoringData>();             
                public static void main(String []args)
                    Employment f = new Employment();
                    f.setVisible(true);
                    f.setDefaultCloseOperation(EXIT_ON_CLOSE);
                    f.setResizable(false);
                }//end of main
                    public Employment()
                            setSize(800,480);
                            setTitle("E-commerce Placement Agency");
          Font listfonts = new Font("TimesRoman", Font.BOLD, 12);
                            JPanel topPanel = new JPanel();
                            topPanel.setLayout( new BorderLayout() );
                            getContentPane().add( topPanel );
                            createPage1();
                            createPage2();
                            createPage3();
                            createPage4();
                            tabbedPane = new JTabbedPane();
                            tabbedPane.addTab( "Applicant", panel1 );
                            tabbedPane.addTab( "Job Order", panel2 );
                            tabbedPane.addTab( "Skill", panel3 );
                            tabbedPane.addTab( "Company", panel4 );
                            topPanel.add( tabbedPane, BorderLayout.CENTER );
            public void createPage1()//PAGE 1
             /*******************TOP PART********************/
                            panel1 = new JPanel();
                            panel1.setLayout( new BorderLayout());
          jpBottomArea = new JPanel();
          jpBottomArea.setLayout(new BorderLayout());
                            jpApplicant= new JPanel();
                            jpApplicant.setLayout(new BorderLayout());
                            Font bigFont = new Font("TimesRoman", Font.BOLD,24);
                            jpApplicant.setBackground(Color.lightGray);
                            jlblApplicantForm = new JLabel("\t\t\t\tAPPLICANT FORM  ");
                            jlblApplicantForm.setFont(bigFont);
                            jpApplicant.add(jlblApplicantForm,BorderLayout.EAST);
                            panel1.add(jpApplicant,BorderLayout.NORTH);
                            panel1.add(jpBottomArea,BorderLayout.CENTER);
           /********************************EMPTY PANEL FOR DISPLAY PURPOSES*************************/
               jpEmptyPanelForDisplayPurposes = new JPanel();
               jlblEmptyLabelForDisplayPurposes = new JLabel(" ");
               jpEmptyPanelForDisplayPurposes.add(jlblEmptyLabelForDisplayPurposes);
               jpBottomArea.add(jpEmptyPanelForDisplayPurposes,BorderLayout.NORTH);
           /*****************************************WEST*********************************/             
                            jpWEST = new JPanel();                 
                            jpWEST.setLayout( new BorderLayout());
                            //Applicant List
         // listModel2=new DefaultListModel();
         // ApplicantList = new JList(listModel2);
                listSelectionModel = ApplicantList.getSelectionModel();
                listSelectionModel.addListSelectionListener(new SharedListSelectionHandler());
                JScrollPane scrollPane3 = new JScrollPane(ApplicantList);
          ApplicantList.setPreferredSize(new Dimension(20,40));
             scrollPane3.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);        
                            scrollPane3.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
                            ApplicantListLabel = new JLabel( "Applicant List:");
                            jpWEST.add(ApplicantListLabel,"North"); 
                            jpWEST.add(scrollPane3,"Center");
                            jpBottomArea.add(jpWEST,BorderLayout.WEST);
                            /*********CENTRE*********/
                            jpCENTRE = new JPanel();
                            jpCENTRE.setLayout(new GridLayout(2,1));
                            jpCentreTOP = new JPanel();
                            jpBottomArea.add(jpCENTRE,BorderLayout.CENTER);
                            jpCENTRE.add(jpCentreTOP);
                            jpCentreTOP.setLayout(new GridLayout(6,2));
                          //Creating labels and textfields
                            jlblName = new JLabel( "Name:");
                            jlblBlank1 = new JLabel ("");
                            jtfName = new JTextField(18);
                            jlblBlank2 = new JLabel("");
                            jlblPhone = new JLabel("Phone:");
                            jlblCurrentSalary = new JLabel("Current Salary:");
                            jtfPhone = new JTextField(13);
                            jtfCurrentSalary = new JTextField(7);
                            jlblPassword = new JLabel("Password:");
                            jlblDesiredSalary = new JLabel("Desired Salary:");
                            jtfPassword = new JTextField(13);
                            jtfDesiredSalary = new JTextField(6);
                          //Add labels and textfields to panel
                            jpCentreTOP.add(jlblName);
                            jpCentreTOP.add(jlblBlank1);
                            jpCentreTOP.add(jtfName);
                            jpCentreTOP.add(jlblBlank2);
                            jpCentreTOP.add(jlblPhone);
                            jpCentreTOP.add(jlblCurrentSalary);
                            jpCentreTOP.add(jtfPhone);
                            jpCentreTOP.add(jtfCurrentSalary);
                            jpCentreTOP.add(jlblPassword);
                            jpCentreTOP.add(jlblDesiredSalary);
                            jpCentreTOP.add(jtfPassword);
                            jpCentreTOP.add(jtfDesiredSalary);
                            //Noteslist
                            jpCentreBOT = new JPanel();
                            jpCentreBOT.setLayout( new BorderLayout());
                            jpCENTRE.add(jpCentreBOT);
                            jpBlank1 = new JPanel();
         // Noteslist = new JTextArea(/*Document doc*/);
                            JScrollPane scroll3=new JScrollPane(Noteslist);
                            scroll3.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);        
                            scroll3.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
                            NotesListLabel = new JLabel( "Notes:");
                            jpCentreBOT.add(NotesListLabel,"North"); 
                            jpCentreBOT.add(scroll3,"Center");
                            jpCentreBOT.add(jpBlank1,"South");
                            jpBottomArea.add(jpCENTRE,BorderLayout.CENTER);
                            /**********EAST**********/
                            //Applicant Skills Panel
                            //EAST ==> TOP
                            jpEAST = new JPanel();
                            jpEAST.setLayout( new BorderLayout());
                            jpEastTOP = new JPanel();
                            jpEastTOP.setLayout( new BorderLayout());
                            ApplicantSkillsLabel = new JLabel( "Applicant Skills");
                            JScrollPane scrollPane1 = new JScrollPane(ApplicantSkillsList);
                           scrollPane1.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);        
                          scrollPane1.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);        
                            ApplicantSkillsList.setVisibleRowCount(6);
                            jpEastTOP.add(ApplicantSkillsLabel,"North"); 
                            jpEastTOP.add(scrollPane1,"Center");
                            jpEAST.add(jpEastTOP,BorderLayout.NORTH);
                            jpBottomArea.add(jpEAST,BorderLayout.EAST);
                            //Add & Remove Buttons
                            //EAST ==> CENTRE
                            jpEastCENTRE = new JPanel();
                            jpEAST.add(jpEastCENTRE,BorderLayout.CENTER);
                            jbtnAdd2 = new JButton("Add");
                            jbtnRemove = new JButton("Remove");
                            //add buttons to panel
                            jpEastCENTRE.add(jbtnAdd2);
                            jpEastCENTRE.add(jbtnRemove);
                            //add listener to button
                           jbtnAdd2.addActionListener(new Add2Listener());
                           jbtnRemove.addActionListener(new RemoveListener());
                            //Industry Skills Panel
                            //EAST ==> BOTTOM
                            jpEastBOT = new JPanel();
                            jpEastBOT.setLayout( new BorderLayout());
                           String[] data = {"Access97", "Basic Programming",
                           "C++ Programming", "COBOL Programming",
                           "DB Design", "Fortran programming"};
                           IndustrySkillsList = new JList(data);
                           JScrollPane scrollPane = new JScrollPane(IndustrySkillsList);
                           scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);        
                           scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
                           IndustrySkillsLabel = new JLabel( "Industry Skills:");
                           jpEastBOT.add(IndustrySkillsLabel,"North"); 
                           jpEastBOT.add(scrollPane,"Center");
                           jpEAST.add(jpEastBOT,BorderLayout.SOUTH);
                            //BOTTOM
                            jpAddEditDelete= new JPanel();
                            jbtnAdd1=       new JButton("Add");
                            jbtnEdit=       new JButton("Edit");
                            jbtnDelete=     new JButton("Delete");
                            jbtnSave=       new JButton("Save");
                            jbtnCancel=     new JButton("Clear");
                            jpAddEditDelete.add(jbtnAdd1);
                            jpAddEditDelete.add(jbtnEdit);
                            jpAddEditDelete.add(jbtnDelete);
                            jpAddEditDelete.add(jbtnSave);
                            jpAddEditDelete.add(jbtnCancel);
                           jbtnEdit.addActionListener(new EditListener());
                           jbtnDelete.addActionListener(new DeleteListener());
                            jbtnEdit.addActionListener(new EditListener());
                            jbtnAdd1.addActionListener(new Add1Listener());
                            jbtnCancel.addActionListener(new CancelListener());
                            jpBottomArea.add(jpAddEditDelete,BorderLayout.SOUTH);
            public void createPage2()//PAGE 2
                    panel2 = new JPanel();
                    panel2.setLayout( new GridLayout(1,1) );
                    panel2.add( new JLabel( "Sorry,under construction" ) );
            public void createPage3()//PAGE 3
                    panel3 = new JPanel();
                    panel3.setLayout( new GridLayout( 1, 1 ) );
                    panel3.add( new JLabel( "Sorry,under construction" ) );
            public void createPage4()//PAGE 4
                    panel4 = new JPanel();
                    panel4.setLayout( new GridLayout( 1, 1 ) );
                    panel4.add( new JLabel( "Sorry,under construction" ) );
            public class Add1Listener implements ActionListener
            public void actionPerformed(ActionEvent e)
                   // int AppListSize;
                    int listSize;
                    ApplicantSkillsList.getModel();
           listSize =listModel.getSize();
            String[] skills= new String[5];
            for(int a=0; a<listSize;a++)
            skills[a] =(String)ApplicantSkillsList.getModel().getElementAt(a);
            System.out.println(skills[a]);
                    name = jtfName.getText();
                    password = jtfPassword.getText();
                    phone = jtfPhone.getText();
                    currentsalary = jtfCurrentSalary.getText();
                    int i= Integer.parseInt(currentsalary);
                    desiredsalary = jtfDesiredSalary.getText();
                    int j= Integer.parseInt(desiredsalary);
           allthetext = Noteslist.getText();
           StoringData person = new StoringData(name,password,phone,allthetext,skills,i,j);
                    details.add(person);
                 // details.add(AppSkillsList);
                       listModel2.addElement(name);
                    jtfName.setText("");
                    jtfPassword.setText("");
                    jtfPhone.setText("");
                    jtfCurrentSalary.setText("");
                    jtfDesiredSalary.setText("");
                    Noteslist.setText("");
                       listModel.clear();
            public class Add2Listener implements ActionListener
                    public void actionPerformed(ActionEvent e)
                           String temp1;
                           temp1 = (String)IndustrySkillsList.getSelectedValue();
                           listModel.addElement(temp1);
            public class RemoveListener implements ActionListener
                    public void actionPerformed(ActionEvent e)
                            int index = ApplicantSkillsList.getSelectedIndex();
                        listModel.remove(index);
            public class EditListener implements ActionListener
                    public void actionPerformed(ActionEvent e)
                jtfName.setEditable(true);
                jtfPassword.setEditable(true);
                jtfPhone.setEditable(true);
                jtfCurrentSalary.setEditable(true);
                jtfDesiredSalary.setEditable(true);
                Noteslist.setEditable(true);
                jbtnAdd2.setEnabled(true);  
                jbtnRemove.setEnabled(true);
                jbtnSave.setEnabled(true);
                jbtnCancel.setEnabled(true);                     
            public class DeleteListener implements ActionListener
             public void actionPerformed(ActionEvent e)
         int index = ApplicantList.getSelectedIndex();
                       listModel2.remove(index);
            public class SaveListener implements ActionListener
                    public void actionPerformed(ActionEvent e)
                         selectedname =ApplicantList.getSelectedValue().toString();
                            StoringData selectedPerson = null;     
                        name = jtfName.getText();
                         password = jtfPassword.getText();
                         phone = jtfPhone.getText();
                         currentsalary = jtfCurrentSalary.getText();
                         int i= Integer.parseInt(currentsalary);
                         desiredsalary = jtfDesiredSalary.getText();
                         int j= Integer.parseInt(desiredsalary);
                              allthetext = Noteslist.getText();
                        for (StoringData person : details)
                              if (person.getName1().equals(selectedname))
                                selectedPerson = person;
                             //     changedname = person.getName1()
                             //     changedphone =
                             //     changedallthetext =
                             //     //changedcurrentsalary                      
                               //     person.setName1(jtfName.getText());
                               //     person.setPassword1(jtfPassword.getText()) ;
                               ////     person.setPhone1(phone);
                               //     person.setAllTheText(allthetext) ;
                               //     person.setCurrentSalary1(i);
                               //     person.setDesiredSalary1(j);
                           jtfName.setEditable(false);
                       jtfPassword.setEditable(false);
                       jtfPhone.setEditable(false);
                       jtfCurrentSalary.setEditable(false);
                       jtfDesiredSalary.setEditable(false);                         
                       Noteslist.setEditable(false);
            public class CancelListener implements ActionListener
                    public void actionPerformed(ActionEvent e)
                    jtfName.setText("");
                    jtfPassword.setText("");
                    jtfPhone.setText("");
                    jtfCurrentSalary.setText("");
                    jtfDesiredSalary.setText("");
                    Noteslist.setText("");
                    listModel.clear();
                       jtfName.setEditable(true);
                       jtfPassword.setEditable(true);
                       jtfPhone.setEditable(true);
                       jtfCurrentSalary.setEditable(true);
                       jtfDesiredSalary.setEditable(true);                         
                       Noteslist.setEditable(true);
                        jbtnAdd2.setEnabled(true);  
                       jbtnRemove.setEnabled(true);
            public class SharedListSelectionHandler implements ListSelectionListener
            public void valueChanged(ListSelectionEvent e)
             if(e.getValueIsAdjusting() == false){
             selectedname =ApplicantList.getSelectedValue().toString();
             StoringData selectedPerson = null;
             jtfName.setEditable(false);
             jtfPassword.setEditable(false);
             jtfPhone.setEditable(false);
             jtfCurrentSalary.setEditable(false);
             jtfDesiredSalary.setEditable(false);                         
             Noteslist.setEditable(false);
             jbtnAdd2.setEnabled(false);  
             jbtnRemove.setEnabled(false);
             jbtnSave.setEnabled(false);
             jbtnCancel.setEnabled(true);
               jtfName.setText("");
               jtfPassword.setText("");
               jtfPhone.setText("");
               jtfCurrentSalary.setText("");
               jtfDesiredSalary.setText("");
       for (StoringData person : details)
          if (person.getName1().equals(selectedname))
                         selectedPerson = person;
                         jtfName.setText(person.getName1());
                         jtfPassword.setText(person.getPassword1());
                      jtfPhone.setText(person.getPhone1());
                      Noteslist.setText(person.getAllTheText1());
                     // String sal1 = Integer.parseString(currentsalary);
                    // String sal2 = Integer.parseString(desiredsalary);
                     jtfCurrentSalary.setText(person.getCurrentSalary1()+"");
                     jtfDesiredSalary.setText(person.getdesiredsalary1()+"");
             String[] theskills = person.getSkills1();
             for(int a=0; a<theskills.length;a++)
                    listModel.addElement(theskills[a]);
             break;
       // if (selectedPerson != null)
    }

    and :
    //StoringData class
    class StoringData{
    private String name;
    private String password;
    private String phone;
    private String allthetext;
    private String[] theskills;
    private int currentsalary;
    private int desiredsalary;
    public StoringData()
      name = null;
      password = null;
      phone = null;
      allthetext = null;
      theskills = null;
      currentsalary = 0;
      desiredsalary = 0;
    public StoringData(String n,String pw, String p,String a,String[] t, int c, int d)
      name = n;
      password = pw;
      phone = p;
      currentsalary = c;
      desiredsalary = d;
      allthetext = a;
      theskills = t;
    public String getName1()
      return name;
    public String getPassword1()
      return password;
    public String getPhone1()
      return phone;
    public String getAllTheText1()
         return allthetext;
    public int getCurrentSalary1()
      return currentsalary;
    public int getdesiredsalary1()
      return desiredsalary;
    public String[] getSkills1()
         return theskills;
    public void setName1(String n)
      name = n;
    public void setPassword1(String pw)
      password = pw;
    public void setPhone1(String p)
      phone = p;
    public void setCurrentSalary1(int c)
      currentsalary = c;
    public void setDesiredSalary1(int d)
      desiredsalary = d;
    public void setAllTheText(String a)
      allthetext = a;
    }

  • Error when I try to add an user using useradd

    Hello All,
    I am installing Oracle 11g R2 on Solaris 5.10 VWARE.
    as per the installation documents i created the oinstall and dba groups. and the oracle user using the below commands:
    # /usr/sbin/groupadd oinstall
    # /usr/sbin/groupadd dba
    # /usr/sbin/useradd -g oinstall -G dba oracle
    UX: /usr/sbin/useradd: ERROR: Inconsistent password files. See pwconv(1M)
    I've ran to re create from /etc/passwd:
    #pwconv
    I still get the same error
    What can be the error?
    Your help is much appreciated.
    Regards,

    Many thanks for your response. I am just trying to add the Oracle user.
    This is a brand new install on a new solaris vm and it puzzles me as to the reasons for this error.
    I did as suggested.
    The return code was:
    0
    I am not able to spot any issues with both my fiiles. Read the man pages carefully. I've pasted the contents below for your eyes in case im being thick here.! Sorry. Please advice:
    /etc/passwd
    root:x:0:0:Super-User:/:/sbin/sh
    daemOn:x:1:1::1/:
    bin:x:2:2::/usr/bin:
    sys:x:3:3::/:
    adm:x:4:4:Admin:/var/adm:
    lp:x:71:8:Line Printer Admin:usr/spool/lp:
    uucp:x:5:5:uucp Admin:/usr/lib/uucp:
    nuucp:x:9:9:uucp Admin:/var/spool/uucppublic:/usr/lib/uucp/uucico
    smmsp:x:25:25:SendMail Message Submission Program:/:
    listen:x:37:4:Network Admin:/usr/net/nls:
    gdm:x:50:50:GDM Reserved VID:/:
    webservd:x:80:80:WebServer Reserved UID:/:
    Postgres:x:90:90:PostgreSQL Reserved UID:/:/usr/bin/pfksh
    svctag:x:95:12:Service Tag UID:/:
    nobody:x:60001:60001:NFS Anonymous Access User:/:
    noaccess:x:60002:60002:No Access User:/:
    nobody4:x:65534:65534:SunOS 4.X NFS Anonymous Access User:/:
    /etc/shadow
    root:R1jyqdH8WZ3zc:6445::::::
    daemon:NP:6445::::::
    bin:NP:6445::::::
    sys:NP:6445::::::
    adm:NP:6445::::::
    lp:NP:6445::::::
    uucp:NP:6445::::::
    nuucp:NP:6445::::::
    smmsp:NP:6445::::::
    listen:*LK*::::::
    gdm:*LK*::::::
    webservd:*LK*::::::
    postgres:NP::::::
    svctag:*LK*:6445::::::
    nobody:*LK*:6445::::::
    noaccess:*LK*:6445::::::
    nobody4:*LK*:6445::::::
    Edited by: nickn on Apr 17, 2011 12:00 PM

  • I keep getting an error when I try to delete something (error code -1407)

    I've tried searching online for a solution but haven't found anything.
    Help, please.

    http://support.apple.com/kb/TS2942

  • System error when trying to open Ngage?

    It was working up until today. Now I just get "system error" when I try opening it. I have tried installing n gage again and even deleting n gage but still the same problem.
    Any ideas?

    04-Nov-2008 11:01 PM
    liam182 wrote:
    lucky just found answer in time was about to re install phone memory. All because of one little router character
    see here
    http://zomgitscj.blogspot.com/2008/11/n-gage-syste​m-error.html
    Good to know my blog was of help to you
    Mobile News, Reviews and More : http://UnleashThePhones.com/

  • Error when I try to open Firefox. Says Firefox is running in the background and cannot open. Suggests closing that window or restart system. This has happened several times recently. I reinstalled but am still getting the error. Any thoughts?

    I am getting an Error when I try to open Firefox that Says Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system. This has happened several times recently. I deinstalld and reinstalled but am still getting the error. Any thoughts?

    This happens to me as well. However, I have a shortcut on my desktop as well as my quick start bar. When this has happened to me, I can usually log back in without restarting, by using the shortcut on the desktop rather than the usual quick start bar.
    I know this sounds weird, but it has worked for me about 80% of the time.

  • 'System Error' when trying to save Form Manager Registry Settings

    Hi,
    trying to save changes made in the form manager registry settings [Home > Services > Adobe LiveCycle Form Manager > Registry Settings (http://localhost:8080/FormManagerAdmin/registry-cfg-load)], I get an error, which reads:
    > System Error
    >
    The request could not be processed. Please retry the operation. If the problem persists, please contact your system administrator.
    Has anyone had this error as well?
    The system runs fine apart from the jboss log files being crammed with the well-known and pretty annoying
    SpyJMSException.
    Does anyone have an idea how to apply changes to the form manager registry settings, if the web ui does not work? Where are the 'form manager registry settings' being stored? Maybe I succeed in changing the settings manually at least without having to re-install Livecycle...
    Regards,
    Steve

    We are using JBoss 3.2.5.
    Weirdly, last week a collegue of mine was able to save the registry changes. This week, both of us get the 'System error' when trying to save changes. Even using a default Administrator account, we were unable to save changes.
    Is there any other way apart from the LiveCycle web UI to change the registry settings without having to re-install the server? Where are these values stored?

  • I get an error when I try to move instances of public folders.

    We have exchange 2003 and exchange 2010 setup in a coexistence environment. I get an error when I try to move instances of public folders from Exchange 2003 to Exchange 2010. "Unable to create the required MAPI profile. Please verify that you have
    sufficient permissions to write to the MAPISVC.INF file. ID no: c103073a Exchange system Manager." I have checked the permissions on the exchange 2003 server. I am unable to locate the MAPISVC.inf file on the exchange 2010 server. This is the last set
    before we begin our move to exchange 2010 and then on to exchange 2013. Any help would be appreciated.

    Hi,
    Do you mean you get the error like the following one?
    An error occurred while trying to establish a connection to the Exchange Server. Be sure that port 443 (for ssl) or port 80 (for non-ssl) can be reached. If you are connecting to the public folders, be sure that the public store is mounted. If you are connecting
    to the mailboxes and the progress bar shows particular mailbox. Be sure that the user has at least one email address.
    Exception failed to connect using secure URL https://gsfcdp16es/esadmin/admin/nyu.email.gs.com/publicfolders with error. 
    The underlying connection was closed. Unable to connect to the remove server.
    Please check if you can expand PF tree in ESM.
    Please make sure SSL is disabled on /ExAdmin and  /Public virtual directory. If possible, you can recreate the ExAdmin virtual directory to check result.
    Best regards,
    Belinda Ma
    TechNet Community Support

  • Have uploaded and installed CC 2014. Several apps give this error when I try to start them:  "Unable to launch Adobe InDesign as you do not have sufficient permissions to access the preferences folders" -or- The icon in the dock bounces once, and nothing

    Have uploaded and installed CC 2014. Several apps give this error when I try to start them:  "Unable to launch Adobe InDesign as you do not have sufficient permissions to access the preferences folders"
    -or-
    The icon in the dock bounces once, and nothing happens.

    Windows or Mac, and exactly which operating system version?

  • Why am I getting an ORA-04052 error when I try to compile a Procedure?

    Hi,
    The following procedure I'm getting an ORA-04052 error when I try to compile the following procedure.
    CREATE OR REPLACE PROCEDURE APPS.Find_String (
    pin_referenced_name IN dba_dependencies.referenced_name%TYPE)
    IS
    cursor cur_get_dependancy
    is
    SELECT distinct owner, name, type
      FROM [email protected]        -- prod.world
    WHERE lower(referenced_name) = lower(pin_referenced_name) --'ftbv_salesrep_all_1d'
       AND referenced_type <> 'SYNONYM'
       AND owner <> 'SYS'
    order by name;
    v_owner  varchar2(40);
    v_name   varchar2(50);
    v_type   varchar2(40);
        BEGIN
           dbms_output.put_line(upper(pin_referenced_name)||' is found in the following objects.');
           dbms_output.put_line(' ');
           dbms_output.put_line(RPAD('OWNER', 30, ' ')||RPAD('NAME', 60, ' ')||RPAD('OBJECT TYPE', 30, ' '));
           dbms_output.put_line('-------------------------------------------------------------------------------------------------------------------');
            FOR i IN cur_get_dependancy
            LOOP
                v_owner := RPAD(i.owner, 30, ' ');
                v_name  := RPAD(i.name, 45, ' ');
                v_type  := RPAD(i.type, 30, ' ');
                dbms_output.put_line(v_owner ||v_name|| v_type);
            END LOOP;
    END find_string;I'm using the link [email protected]. The procedure compiles for other database links used in the cursor including the one commented to the right of the code 'prod.world'.
    What's even stranger is that I took the SELECT statement
    SELECT distinct owner, name, type
      FROM [email protected]        -- prod.world
    WHERE lower(referenced_name) = lower(pin_referenced_name) --'ftbv_salesrep_all_1d'
       AND referenced_type <> 'SYNONYM'
       AND owner <> 'SYS'
    order by name;out of the procedure and ran it on the command line using the @pinp.world link, the SQL statement ran just fine. But when I tried to compile the above procedure with that exact same SQL statement with the exact same link I get the following string of errors.
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02068: following severe error from PINP
    ORA-03113: end-of-file on communication channelHow can the link work just fine in a regular SQL statement but then cause an error when its compiled in code that otherwise compile just fine when using any other link or even just a plain database. Does anyone have any suggestions?

    OK Justin,
    Here's the query by itself run in another database using the @pinp.world link and querying the dba_dependencies table in the pinp.world database. As you can see the query using this link works just fine returning the requested rows. I can't figure out why the compiler is having an issue with essentially this same query when I try to compile it in a cursor in TOAD. Also this is the database (dev1.world) that I'm trying to compile this Procedure in.
    By the way I'm in an Oracle 9.2.0.6 database and TOAD v9.2.
    SQL> conn apps/apps1@dev1
    Connected.
    SQL> SELECT distinct owner, name, type
      2    FROM [email protected]
      3   WHERE lower(referenced_name) = lower('ALL_USERS')
      4     AND referenced_type <> 'SYNONYM'
      5     AND owner <> 'SYS'
      6   order by name;
    OWNER                          NAME                           TYPE
    PUBLIC                         ALL_USERS                      SYNONYM
    XDB                            DBMS_XDBUTIL_INT               PACKAGE BODY
    XDB                            DBMS_XDBZ0                     PACKAGE BODY
    SYSTEM                         MVIEW_EVALUATIONS              VIEW
    SYSTEM                         MVIEW_EXCEPTIONS               VIEW
    SYSTEM                         MVIEW_FILTER                   VIEW
    SYSTEM                         MVIEW_LOG                      VIEW
    SYSTEM                         MVIEW_RECOMMENDATIONS          VIEW
    SYSTEM                         MVIEW_WORKLOAD                 VIEW
    ORASSO                         WWCTX_API                      PACKAGE BODY
    PORTAL                         WWCTX_API                      PACKAGE BODY
    ORASSO                         WWEXP_UTL                      PACKAGE BODY
    PORTAL                         WWEXP_UTL                      PACKAGE BODY
    PORTAL                         WWPOB_API_PAGE                 PACKAGE BODY
    PORTAL                         WWPOF                          PACKAGE BODY
    ORASSO                         WWPRO_PROVIDER_VALIDATION      PACKAGE BODY
    PORTAL                         WWPRO_PROVIDER_VALIDATION      PACKAGE BODY
    PORTAL                         WWSBR_EDIT_ATTRIBUTE           PACKAGE BODY
    PORTAL                         WWSBR_FOLDER_PORTLET           PACKAGE BODY
    PORTAL                         WWSBR_USER_PAGES_PORTLET       PACKAGE BODY
    ORASSO                         WWUTL_API_PARSE                PACKAGE BODY
    OWNER                          NAME                           TYPE
    PORTAL                         WWUTL_API_PARSE                PACKAGE BODY
    PORTAL                         WWUTL_EXPORT_IMPORT_LOV        PACKAGE BODY
    ORASSO                         WWUTL_LOV                      PACKAGE BODY
    PORTAL                         WWUTL_LOV                      PACKAGE BODY
    PORTAL                         WWV_CONTEXT                    PACKAGE BODY
    PORTAL                         WWV_CONTEXT_UTIL               PACKAGE BODY
    PORTAL                         WWV_DDL                        PACKAGE BODY
    PORTAL                         WWV_GENERATE_UTL               PACKAGE BODY
    PORTAL                         WWV_GLOBAL                     PACKAGE
    PORTAL                         WWV_MONITOR_DATABASE           PACKAGE BODY
    PORTAL                         WWV_PARSE_AS_SPECIFIC_USER     PACKAGE BODY
    PORTAL                         WWV_PARSE_AS_USER              PACKAGE BODY
    PORTAL                         WWV_SYS_DML                    PACKAGE BODY
    PORTAL                         WWV_SYS_RENDER_HIERARCHY       PACKAGE BODY
    PORTAL                         WWV_THINGSAVE                  PACKAGE BODY
    PORTAL                         WWV_UTIL                       PACKAGE BODY
    PORTAL                         WWV_UTLVALID                   PACKAGE BODY
    38 rows selected.
    SQL>Let me know what you think.
    Thanks again.

  • Java error when I try to execute runInstaller

    Hi all,
    Someone can tell me why I get this error when I try to execute the runInstaller script ?
    echoes:/temp/Disk1$ ./runInstaller
    Starting Oracle Universal Installer...
    No pre-requisite checks found in oraparam.ini, no system pre-requisite checks will be executed.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2007-05-13_09-29-09PM. Please wait ...echoes:/temp/Disk1$ Oracle Universal Installer, Version 10.1.0.3.0 Production
    Copyright (C) 1999, 2004, Oracle. All rights reserved.
    Exception java.lang.UnsatisfiedLinkError: /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libawt.jnilib: occurred..
    java.lang.UnsatisfiedLinkError: /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libawt.jnilib:
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1668)
    at java.lang.Runtime.loadLibrary0(Runtime.java:822)
    at java.lang.System.loadLibrary(System.java:992)
    at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:38)
    at sun.awt.DebugHelper.<clinit>(DebugHelper.java:29)
    at java.awt.Component.<clinit>(Component.java:545)
    at oracle.sysman.oii.oiif.oiifm.OiifmGraphicInterfaceManager.<init>(OiifmGraphicInterfaceManager.java:189)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.createInterfaceManager(OiicSessionInterfaceManager.java:173)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.getInterfaceManager(OiicSessionInterfaceManager.java:182)
    at oracle.sysman.oii.oiic.OiicInstaller.<init>(OiicInstaller.java:278)
    at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:714)
    at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:628)
    Exception in thread "main" java.lang.NoClassDefFoundError
    at oracle.sysman.oii.oiif.oiifm.OiifmGraphicInterfaceManager.<init>(OiifmGraphicInterfaceManager.java:189)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.createInterfaceManager(OiicSessionInterfaceManager.java:173)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.getInterfaceManager(OiicSessionInterfaceManager.java:182)
    at oracle.sysman.oii.oiif.oiifm.OiifmAlert.<clinit>(OiifmAlert.java:112)
    at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:772)
    at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:628)
    I'm trying to install the 10g db on a PowerMac G5 with 4 gig ram, OSX 10.4.9 with all the latest patches.
    The oracle user shell config is the following :
    =====================================
    ORACLE_BASE=/opt/oracle
    ORACLE_HOME=$ORACLE_BASE/product/10.1.0/db_1
    ORACLE_SID=mydb
    export ORACLE_BASE ORACLE_SID ORACLE_HOME
    if [ $DYLD_LIBRARY_PATH ]
    then
    DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:$ORACLE_HOME/lib
    else
    DYLD_LIBRARY_PATH=$ORACLE_HOME/lib
    fi
    HTDOCS=/usr/local/htdocs
    export DYLD_LIBRARY_PATH HTDOCS
    PATH=/usr/local/bin:/usr/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin:$ORACLE_HOME/bin
    export PATH
    PS1='\h:\w\$ '
    export PS1
    alias l='ls -la'
    alias svrmgrl='sqlplus /nolog'
    ================================
    Thanks in advance,
    Max

    Is the Oracle runInstaller message telling me that it wants IBMJava2 -1.3.1, even though is says to install 1.3.1 or higher?Yeah, it has been known to act a bit funny on newer releases of JRE.
    ~Jer

  • "Unauthorized Host" error when you try to connect to the admin server

    "Unauthorized Host" error when you try to connect to the admin server
    <p>
    If you see this error message when you try to connect to a Netscape
    administration server:<P>
    Internal Error
    The administration server was unable to fulfill your request.
    Reason: Unauthorized host
    --------------------------<P>
    Here is how to solve the problem and gain access. First you should
    temporarily open access to all sites, and then once you make sure that
    this lets you get into your administration server, try again to set up
    the domain name or IP address access restrictions you want.<P>
    For all 2.x/3.x Netscape servers on Windows NT and Unix, or for Commerce and
    Communications servers (1.x) on Unix:<P>
    <OL>
    <LI>Open the "ns-admin.conf" file with a text editor. You can
    find this file in the "admserv" directory under your Netscape
    server root. The directory is named "admin-serv" in 3.x servers.<P>
    <LI>Delete the "Hosts" and "Addresses" lines you see there (either one
    of them might not be present). Don't confuse the "Addresses" line,
    which you should delete, with the "Address" line, which you should NOT
    delete.<P>
    <LI>Save the file, then restart your administration server (on Unix run
    "stop-admin" then "start-admin"; on Windows NT go into the Services
    control panel and stop/start the "Netscape Admin Server" service).<P>
    </OL><P>
    For Commerce Server or Communications Server (1.x) on Windows NT:<P>
    <OL>
    <LI>Go into the registry editor. On Windows NT 4.0, run the command
    "regedit". On Windows 3.51, run the command
    "regedt32".<P>
    <LI>Navigate down to the section
    "HKEY_LOCAL_MACHINE\SOFTWARE\Netscape\Administration".<P>
    <LI>Delete the "Hosts" and "Addresses" entries you see there (either one
    of them might not be present). Don't confuse the "Addresses" entry,
    which you should delete, with the "Address" entry, which you should NOT
    delete.<P>
    <LI>Close the registry editor, then restart your administration server
    by going into the Services control panel and stopping then starting the
    "Netscape Administration" service.<P>
    </OL>
    Now try again to access your administration server. Remember, the URL
    will be something like "http://servername:12345/", where
    "12345" is where the administration server's port number goes.<P>
    If you still get the same "Unauthorized host" error, then make sure that
    your "ns-admin.conf" file really doesn't contain any "Hosts" or
    "Addresses" lines any more, and try stopping your administration server
    again then starting it back up.<P>
    Once you have access to your administration server, you can try again to
    set up the access controls you want.<P>
    <UL>
    <LI>For the administration server on a 3.x server installation, select
    "Admin Preferences" from the General Administration page (the first page
    you see when you connect to the admin server), then click on "Superuser Access
    Control" and enter hostname and IP address restrictions. If you want
    allow access to multiple clients, you'll have to use wildcard patterns
    (separate the subsrings with a pipe character, like
    "(host1|host2|host3)"); the substrings must be enclosed in parentheses, as shown.
    If you're setting up hostname restrictions, you'll need to make sure that
    your DNS can resolve those hostnames -- it's generally safer to stick
    with IP address restrictions. When you're finished configuring this,
    click "OK" then restart your admin server.<P>
    <LI>For the administration server on a 2.x server installation, select
    "Configure Administration" from the Server Selector page (the first page
    you see when you connect to the admin server), then click on "Access
    Control" and enter hostname and IP address restrictions. If you want
    allow access to multiple clients, you'll have to use wildcard patterns
    (separate the subsrings with a pipe character, like
    "(host1|host2|host3)"); the substrings must be enclosed in parentheses, as shown.
    If you're setting up hostname restrictions, you'll need to make sure that
    your DNS can resolve those hostnames -- it's generally safer to stick
    with IP address restrictions. When you're finished configuring this,
    click "OK" then restart your admin server.<P>
    <LI>For the administration server on a 1.x server installation, select
    "Configure Administration Server" from the bottom of the Server Manager
    page, then enter hostname and IP address restrictions. If you want
    allow access to multiple clients, you'll have to use wildcard patterns
    (separate the substrings with a pipe character, like
    "(host1|host2|host3)"); the substrings must be enclosed in parentheses, as shown.
    If you're setting up hostname restrictions, you'll need to make sure that your
    DNS can resolve those hostnames -- it's generally safer to stick with IP address
    restrictions.
    When you're finished configuring this, click "Make These Changes" then
    restart your admin server.<P>
    </UL><P>
    If you still find yourself getting an "Unauthorized host" error message,
    you can use the above steps to open up access and try different
    settings.<P>

    "Unauthorized Host" error when you try to connect to the admin server
    <p>
    If you see this error message when you try to connect to a Netscape
    administration server:<P>
    Internal Error
    The administration server was unable to fulfill your request.
    Reason: Unauthorized host
    --------------------------<P>
    Here is how to solve the problem and gain access. First you should
    temporarily open access to all sites, and then once you make sure that
    this lets you get into your administration server, try again to set up
    the domain name or IP address access restrictions you want.<P>
    For all 2.x/3.x Netscape servers on Windows NT and Unix, or for Commerce and
    Communications servers (1.x) on Unix:<P>
    <OL>
    <LI>Open the "ns-admin.conf" file with a text editor. You can
    find this file in the "admserv" directory under your Netscape
    server root. The directory is named "admin-serv" in 3.x servers.<P>
    <LI>Delete the "Hosts" and "Addresses" lines you see there (either one
    of them might not be present). Don't confuse the "Addresses" line,
    which you should delete, with the "Address" line, which you should NOT
    delete.<P>
    <LI>Save the file, then restart your administration server (on Unix run
    "stop-admin" then "start-admin"; on Windows NT go into the Services
    control panel and stop/start the "Netscape Admin Server" service).<P>
    </OL><P>
    For Commerce Server or Communications Server (1.x) on Windows NT:<P>
    <OL>
    <LI>Go into the registry editor. On Windows NT 4.0, run the command
    "regedit". On Windows 3.51, run the command
    "regedt32".<P>
    <LI>Navigate down to the section
    "HKEY_LOCAL_MACHINE\SOFTWARE\Netscape\Administration".<P>
    <LI>Delete the "Hosts" and "Addresses" entries you see there (either one
    of them might not be present). Don't confuse the "Addresses" entry,
    which you should delete, with the "Address" entry, which you should NOT
    delete.<P>
    <LI>Close the registry editor, then restart your administration server
    by going into the Services control panel and stopping then starting the
    "Netscape Administration" service.<P>
    </OL>
    Now try again to access your administration server. Remember, the URL
    will be something like "http://servername:12345/", where
    "12345" is where the administration server's port number goes.<P>
    If you still get the same "Unauthorized host" error, then make sure that
    your "ns-admin.conf" file really doesn't contain any "Hosts" or
    "Addresses" lines any more, and try stopping your administration server
    again then starting it back up.<P>
    Once you have access to your administration server, you can try again to
    set up the access controls you want.<P>
    <UL>
    <LI>For the administration server on a 3.x server installation, select
    "Admin Preferences" from the General Administration page (the first page
    you see when you connect to the admin server), then click on "Superuser Access
    Control" and enter hostname and IP address restrictions. If you want
    allow access to multiple clients, you'll have to use wildcard patterns
    (separate the subsrings with a pipe character, like
    "(host1|host2|host3)"); the substrings must be enclosed in parentheses, as shown.
    If you're setting up hostname restrictions, you'll need to make sure that
    your DNS can resolve those hostnames -- it's generally safer to stick
    with IP address restrictions. When you're finished configuring this,
    click "OK" then restart your admin server.<P>
    <LI>For the administration server on a 2.x server installation, select
    "Configure Administration" from the Server Selector page (the first page
    you see when you connect to the admin server), then click on "Access
    Control" and enter hostname and IP address restrictions. If you want
    allow access to multiple clients, you'll have to use wildcard patterns
    (separate the subsrings with a pipe character, like
    "(host1|host2|host3)"); the substrings must be enclosed in parentheses, as shown.
    If you're setting up hostname restrictions, you'll need to make sure that
    your DNS can resolve those hostnames -- it's generally safer to stick
    with IP address restrictions. When you're finished configuring this,
    click "OK" then restart your admin server.<P>
    <LI>For the administration server on a 1.x server installation, select
    "Configure Administration Server" from the bottom of the Server Manager
    page, then enter hostname and IP address restrictions. If you want
    allow access to multiple clients, you'll have to use wildcard patterns
    (separate the substrings with a pipe character, like
    "(host1|host2|host3)"); the substrings must be enclosed in parentheses, as shown.
    If you're setting up hostname restrictions, you'll need to make sure that your
    DNS can resolve those hostnames -- it's generally safer to stick with IP address
    restrictions.
    When you're finished configuring this, click "Make These Changes" then
    restart your admin server.<P>
    </UL><P>
    If you still find yourself getting an "Unauthorized host" error message,
    you can use the above steps to open up access and try different
    settings.<P>

  • Windows XP crashes and system restarts when I try to open Itunes 6

    I tried to ask the people at Apple support what was going on. But they didn't seem to know. My system restarts when I try to open Itunes. It does it with the factory software I recieved with my 5g Ipod Video. It also does it with any updated version I install. If I reinstall Itunes the program works fine for about a day. Then it crashes my system again. Please help. I don't want to reinstall Itunes everyday in order to use it.
    compaq   Windows XP  

    Now I have the blue screen and this is the error message.
    * stop: 0x00000050 (0XBB9EA29E,0X00000000,0X8057DA81,0X00000002)
    hmmmm. okay ... do you have an early version of Roxio CD Creator 5 installed on that PC?
    i've seen this show up a few times. one of the early versions of Easy CD Creator 5 actually isn't compatible with XP:
    Easy CD Creator 5.0 Does Not Function In Windows XP
    ... but sometimes the first time people know about this is when the PC starts throwing a 0x50 at them them they try to launch itunes or (of all things) plug in an ipod ...
    if that doesn't seem to be a factor, another thing to try is vigorous spyware and virus scans (with fresh definitions). both haxdoor and sdbot can make PCs suddenly start throwing 0x50s after new software installs.
    but if those turn up blank, let's try getting a minidump on the crash to the Discussions Hosts so they can throw it over the fence to the Apple Engineers for a look. (thanks to toonz for teaching me this one.)
    To set up your machine to capture a minidump, right click on "My Computer", select "Properties", select the "Advanced" tab, select the "Startup and Recovery" Settings button, select "small memory dump" from the popup. When it crashes, look for the MiniDump file. It's usually in the folder "C:\WINDOWS\Minidump" and is called something like Mini<number>-<number>.dmp.
    And then send it to a Discussions Host. It doesn't hurt to put the URL to this discussion thread, so that whoever gets it has some context. Also give as much information about the context of the crash (in the email) as you can.
    love, b

Maybe you are looking for

  • Changing my apple ID and getting a new free apple email account

    I have an apple ID which was set up using a btinternet account containing my married name.  My marriage has broken down and for a number of reasons I wish to distance myself totally from my former partner, and this includes email addresses. This woul

  • UPA to PCI brige performance

    I'm writing a device driver for a custom PCI device and need 200+ MBytes/Sec through the PCI bus. I am using an Ultra450 with one of its 64 bit/66Mhz busses (528Mbytes/sec). Problem is that the bridge chip disconnects when each 64 byte boundary is cr

  • CSS Comments in DW CS3

    rally like the new preset css configurations that DW3 provides and the css comments are nice as well. However, they bloats the code and many of the comments are not necessary unless you are a beginner. Does anyone know if there is a setting somewhere

  • Script Logic: How to test the sign of data

    Hi Forum, I'm looking for a function to test if the amount of an account is positive or negative. This test is necessary to choose the target account where transfer the amount. In MS version there is the TEST_WHEN function, but doesn't work in NW (no

  • Exporting Specific Metadata

    Hi. I know how to export metadata, but I can't seem to limit which metadata I want exported. In many cases I'd just like to export the captions for a group of photos to send to a publisher without pulling just that info out of the messy text file. An