Help Please On My New WordPress Site

Please Help with my Wordpress Site? I have a big problem with slider pics not showing correctly and blogs missing on menu. Can anyone please help?
Site is www.azbodybuilding.com

There are tutorial websites available on the web, you can search out for the solution, as of now, have read a post recently.. http://blog.pixelcrayons.com/wordpress/beginners-guide-to-launch-a-wordpress-plugin/
Hope this helps you.. Or you can hire wordpress developers for the same.

Similar Messages

  • We have a new Wordpress site, how do I add a description and artwork to the RSS feed of the podcast?

    Hello:
    I am surprised I could not find this on a search of Google or Apple Support. 
    Our church has a new website created with Wordpress.  We have all of the functionality ready to go in order to have the RSS feed work with the itunes store.
    However, when we submit the feed to iTunes, it says that we need to add a graphic, as well as a short and a long description.  I believe this used to be a part of the iTunes website submission process, however it apparently now needs to be a part of the feed itself, if I am understanding correctly.
    So my question is where can I find instructions on how to add this in Wordpress?
    Just so you understand, I am not in charge of the site itself... I am basically doing some research on my own to help out our programmer.  I am just in charge of uploading the weekly audio.
    If anyone could guide me in the right direction, it would be very much appreciated.
    Randy

    Wordpress can construct a proper podcast feed, including the 'itunes:image, 'itunes:summary' and 'itunes:subtitle' tags; there will be places to enter this data but I'm afraid I can'd advise on WordPress. It does seem to have a steep learning curve as we see more problems with Wordpress podcasts than any other creation method.
    Unless someone who happens to have got a WordPress podcast working happens to see your question and offer information I can only suggest that you look for a Wordpress forum or some Help on it.
    Although it won't help you with Wordpress you might like to look at this page about podcasting basics: it includes a sample basic feed so that you can at least see what one should look like:
    http://rfwilmut.net/pc

  • Help please with my new ipad 4 Retna.

    Please help find a solution to my problem with my new ipad 4 Retna. The keyboard seems to have a mind of its own and keeps jumping up and down on the screen without any assistance from me.
    I did have the screen replaced and I am not sure whether that is the reason or whether it is a known software problem as I had only had it for one day before the screen got broken.
    It seems to settle down for a while. The longest it has been normal without a problem is 3 weeks and now it is doing the same thing again.
    Please anyone can you help.???

    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414
    If you try all these steps and you still have issues... Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first...

  • Help Please I am new to programming Java1.3.1

    I am having the following problem with the appletviewer for the following code and screen print of error message. I would greatly aperciate any help i can get.Thanks Adera...
    my e-mail address is [email protected]
    Sorry the screen print will not copy into here so i will type it out.
    java.lang.ClassCastException:Calculator
    at sun.applet.AppletPanel.createApplet(AppletPanel.java:579)
    at sun.applet.AppletPanel.runLoader(AppletPanel.java:515)
    at sun.applet.AppletPanel.run(AppletPanel.java:293)
    at java.lang.Thread.run(Thread.java:484)
    Here is my code..
    //Adera Currie Student Id# 31248
    //Course Title: Internet Programming
    //Due Date: August 13th, 2002
    //calculator.Java
    //Hilltop Library Calculator Java Project
    //import javax.swing.*;
    //import javax.swing.JOptionPane;
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    //import java.awt.Container;
    public class Calculator extends JFrame implements ActionListener
    int chioce, i;
    //integer variable to hold stringnums in
    double calcone, calctwo;
    //variables for mouse clicks
    double numone, numtwo, total, holdnum, decimalCount;
    String calctot, calctot1, calctot2, negnum, holdnumonetwo;
    //declare text area
    TextField text1;
    //declare button array
    Button calcbutton[], clear;
    //string array to convert textfield values, string manipulation
    String textfield;
    String bpressedEvaluated;
    //declare panel object
    Panel bpanel,text2,Cpanel;
    //declare variable arrays to hold the name and numbers of the buttons that
    //will be created on the applet
    String bnames[] = {"7","8","9","/","Sin","4","5","6",
    "*","Cos","1","2","3","-","Tan",
    "0",".","=","+","Neg"};
    //arrays for holding the items to check for when the action click event is called
    String holdOperatorVisual[] = {"/","*","-","=","+"};
    String holdNumNames[] = {"0","1","2","3","4","5","6","7","8","9",".","Neg"};
    String holdSciFiVisuals[] = {"Sin","Cos","Tan"};
    //declare boolean values to keep track of numbers and operators either
    //in use or what should be terminated
    boolean operators,operators2;
    boolean firstnum;
    boolean secondnum;
    boolean numberpressed,decimalPressed,negPressed;
    public void init()
    //create the panels to hold applet objects
    bpanel = new Panel();
    text2 = new Panel();
    Cpanel = new Panel();
    //set up the applet layout for the buttons and such
    //BorderLayout layout = new BorderLayout(5,5);
    setLayout(new BorderLayout(5,5));
    //create a container object
    //Container c = this.getContentPane();
    //c.setLayout(new FlowLayout());
    //this.setLayout( new FlowLayout() );
    //set up the panels with layout manager
    bpanel.setLayout( new GridLayout (4,5));
    text2.setLayout(new GridLayout(1,1));
    Cpanel.setLayout(new GridLayout(1,1));
    //create my text field to hold the display for the user
    text1 = new TextField(20);
    //make it so the user cannot enter text from the keyboard
    text1.setEditable(false);
    text1.setBackground(Color.cyan);
    text2.add(text1);
    //add teh panel to the container
    add(text2, BorderLayout.NORTH);
    //instantiate button object
    calcbutton = new Button[bnames.length];
         for ( int i = 0; i < bnames.length; i++ )
    calcbutton[i] = new Button(bnames);
    calcbutton[i].addActionListener(this);
    //(new ActionListener()
         calcbutton[i].setBackground(Color.cyan);
    //add the new button from teh array into the panel for buttons
    bpanel.add(calcbutton[i]);
    //add the button panel to the container object
    add(bpanel, BorderLayout.CENTER);
    //create the clear button to be displayed at the bottom of the screen
    clear = new Button("Clear");
    //add the action listener for this object
    clear.addActionListener(this);
    clear.setBackground(Color.cyan);
    //add the clear button to the panel for the clear button
    Cpanel.add(clear);
    //add the clear button panel to the container
    add(Cpanel, BorderLayout.SOUTH);
         public void actionPerformed(ActionEvent e)
         String bpressed = (e.getActionCommand());
         checkButtonPressed(bpressed);
         if(bpressedEvaluated=="notFound")
    //JOptionPane.showMessageDialog(null, "Invalid button selection!",
    // "System Message", JOptionPane.INFORMATION_MESSAGE);
    public void checkButtonPressed(String valueIn)
              String me;
              String takeValueIn = valueIn;
              double tot=0;
              String tat;
              for (i=0;i<holdNumNames.length;i++)
         if(takeValueIn == holdNumNames[i])
         //if there is a second operator in memory, then clear the contents of the
         //text box and start over adding in new numbers from the user
         if (takeValueIn == ".")
         if (decimalPressed == true)
    //JOptionPane.showMessageDialog(null, "This function cannot be used with any other operatorsdecimalPressed== " + decimalPressed,"System Message.", JOptionPane.INFORMATION_MESSAGE);
    break;
    else
    decimalPressed = true;
    if(takeValueIn == "Neg")
         if(numberpressed == false && negPressed == false)
    negPressed = true;
    takeValueIn = "-";
    else
    break;
    if (operators2 == true)
         String nothing;
         nothing = "";
         text1.setText(nothing);
         operators2 = false;
    //if there is no data in the text box, then set this number as the new text
         if (text1.getText().length() == 0)
    text1.setText(takeValueIn);
    //if there is text contained in the text field, then append this number to
    //to the text field and set the new text view for the user
    else if (text1.getText().length() != 0)
    holdnumonetwo = text1.getText();
    holdnumonetwo += takeValueIn;
    text1.setText(holdnumonetwo);
    numberpressed = true;
    bpressedEvaluated = "Found";
    break;
    for (i=0;i<holdOperatorVisual.length;i++)
    if(takeValueIn == holdOperatorVisual[i])
    if (takeValueIn == "=")
    if (operators == true)
    //convert text to number two for calculation
    numtwo = Double.parseDouble(text1.getText());
    //do the math
    if(calctot1=="-")
    tot = numone-numtwo;
    else if(calctot1=="+")
    tot = numone+numtwo;
    else if(calctot1=="/")
    tot = numone/numtwo;
    else if(calctot1=="*")
    tot = numone*numtwo;
    //convert total to string
    tat = String.valueOf(tot);
    //set the visual value to the screen for the user
    text1.setText(tat);
    //update the new number one to be used in the next calculation
    numone = tot;
    decimalPressed = false;
    negPressed = false;
    numberpressed = false;
    break;
    else
    if (operators != true && text1.getText().length()!= 0)
    calctot1 = takeValueIn;
    numone = Double.parseDouble(text1.getText());
    String t;
    t = "";
    text1.setText(t);
    firstnum = true;
    operators = true;                                    decimalPressed = false;
    negPressed = false;                               numberpressed = false;                                    break;
    else if (operators == true && text1.getText().length()!= 0)
    {                                                                                                                                                     calctot2 = takeValueIn;                                                                                                                                                     numtwo = Double.parseDouble(text1.getText());                                                                                                                                                     //do the math                                                                                                                                                if(calctot1=="-")                                                                                                                                                       {                                                                                                                                                     tot = numone-numtwo;                                                                                                                                                    }                                    else if(calctot1=="+")                                    {                                                                                                                                                        tot = numone+numtwo;                                                                                                                                                        }                                    else if(calctot1=="/")                                    {                                                                                                                                                            tot = numone/numtwo;                                                                                                                                                            }                                    else if(calctot1=="*")                                    {                                                                                                                                                                tot = numone*numtwo;                                                                                                                                                               }                                    //convert total to string                                    tat = String.valueOf(tot);                                    //set the visual value to the screen for the user                                    text1.setText(tat);                               //update the new number one to be used in the next calculation                               numone = tot;                               operators2 = true;                               decimalPressed = false;                               negPressed = false;                               }                               calctot1 = calctot2;                               //set the flags                               firstnum = true;                               decimalPressed = false;                               negPressed = false;                               numberpressed = false;                               bpressedEvaluated = "found";                               break;                               }                          }                     }                          for(i=0;i<holdSciFiVisuals.length;i++)                     {                                                                                                                                                         if(takeValueIn == holdSciFiVisuals[i])                     {                                                                                                                                                        if (text1.getText().length()!= 0 && operators != true)                                                                                                                                                            {                                                                                                                                                               double s=0;                                                                                                                                                                numone = Double.parseDouble(text1.getText());                                                                                                                                                            if(takeValueIn == "Sin")                                                                                                                                                                 s = Math.sin(numone);                                                                                                                                                            if(takeValueIn == "Cos")                                                                                                                                                                  s = Math.cos(numone);                                                                                                                                                            if(takeValueIn == "Tan")                                                                                                                                                                  s = Math.tan(numone);                                                                                                                                                                  firstnum = true;                                                                                                                                                                  String ch;                                                                                                                                                                  ch = String.valueOf(s);                                                                                                                                                                  text1.setText(ch);                                                                                                                                                                  operators2 = true;                                                                                                                                                            }                     else if (operators == true)                     {                                                                                                                                                                 //JOptionPane.showMessageDialog(null, "This function cannot be used with any other operators",                                                                                                                                                          //"System Message", JOptionPane.INFORMATION_MESSAGE);                                                                                                                                                                     break;                                                                                                                                                               }                          bpressedEvaluated = "found";                          decimalPressed = false;                          negPressed = false;                          numberpressed = false;                     }                }                          bpressedEvaluated = "notFound";                     if(takeValueIn == "Clear")
    //reset all the values that are either presently in use, or that will be the
    //first values to be used after the text field is cleared, to start from square one
    numone = 0;
    numtwo = 0;
    //set the flags
    firstnum = false;
    secondnum = false;
    operators = false;
    operators2 = false;
    decimalPressed = false;
    negPressed = false;
    numberpressed = false;
    //declare string to help clear the text field
    String cn;
    cn = "";
    //set the text field to nothing, an empty string
    text1.setText(cn);
         //execute application
         public static void main (String args[])
         Calculator application = new Calculator();
    //     addMouseListener(this);
         application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    //Adera Currie Student Id# 31248
    //Course Title: Internet Programming
    //Due Date: August 13th, 2002
    //calculator.Java
    //Hilltop Library Calculator Java Project
    //import javax.swing.*;
    //import javax.swing.JOptionPane;
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    //import java.awt.Container;
    public class Calculator extends JFrame implements ActionListener
         int chioce, i;
         //integer variable to hold stringnums in
         double calcone, calctwo;
         //variables for mouse clicks
         double numone, numtwo, total, holdnum, decimalCount;
         String calctot, calctot1, calctot2, negnum, holdnumonetwo;
         //declare text area
         TextField text1;
         //declare button array
         Button calcbutton[], clear;
         //string array to convert textfield values, string manipulation
         String textfield;
         String bpressedEvaluated;
         //declare panel object
         Panel bpanel,text2,Cpanel;
         //declare variable arrays to hold the name and numbers of the buttons that
         //will be created on the applet
         String bnames[] = {"7","8","9","/","Sin","4","5","6",
    "*","Cos","1","2","3","-","Tan",
    "0",".","=","+","Neg"};
         //arrays for holding the items to check for when the action click event is called
         String holdOperatorVisual[] = {"/","*","-","=","+"};
         String holdNumNames[] = {"0","1","2","3","4","5","6","7","8","9",".","Neg"};
         String holdSciFiVisuals[] = {"Sin","Cos","Tan"};
         //declare boolean values to keep track of numbers and operators either
         //in use or what should be terminated
         boolean operators,operators2;
         boolean firstnum;
         boolean secondnum;
         boolean numberpressed,decimalPressed,negPressed;
         public Calculator()
              //create the panels to hold applet objects
              bpanel = new Panel();
              text2 = new Panel();
              Cpanel = new Panel();
              //set up the applet layout for the buttons and such
              //BorderLayout layout = new BorderLayout(5,5);
              getContentPane().setLayout(new BorderLayout(5,5));
              //create a container object
              //Container c = this.getContentPane();
              //c.setLayout(new FlowLayout());
              //this.setLayout( new FlowLayout() );
              //set up the panels with layout manager
              bpanel.setLayout( new GridLayout (4,5));
              text2.setLayout(new GridLayout(1,1));
              Cpanel.setLayout(new GridLayout(1,1));
              //create my text field to hold the display for the user
              text1 = new TextField(20);
              //make it so the user cannot enter text from the keyboard
              text1.setEditable(false);
              text1.setBackground(Color.cyan);
              text2.add(text1);
              //add teh panel to the container
              getContentPane().add(text2, BorderLayout.NORTH);
              //instantiate button object
              calcbutton = new Button[bnames.length];
              for ( int i = 0; i < bnames.length; i++ )
                   calcbutton[0] = new Button(bnames[0]);
                   calcbutton[0].addActionListener(this);
                   //(new ActionListener()
                   calcbutton[0].setBackground(Color.cyan);
                   //add the new button from teh array into the panel for buttons
                   bpanel.add(calcbutton[0]);
              //add the button panel to the container object
              getContentPane().add(bpanel, BorderLayout.CENTER);
              //create the clear button to be displayed at the bottom of the screen
              clear = new Button("Clear");
              //add the action listener for this object
              clear.addActionListener(this);
              clear.setBackground(Color.cyan);
              //add the clear button to the panel for the clear button
              Cpanel.add(clear);
              //add the clear button panel to the container
              getContentPane().add(Cpanel, BorderLayout.SOUTH);
              pack();
              show();
         public void actionPerformed(ActionEvent e)
              String bpressed = (e.getActionCommand());
              checkButtonPressed(bpressed);
              if(bpressedEvaluated=="notFound")
                   //JOptionPane.showMessageDialog(null, "Invalid button selection!",
                   // "System Message", JOptionPane.INFORMATION_MESSAGE);
         public void checkButtonPressed(String valueIn)
              String me;
              String takeValueIn = valueIn;
              double tot=0;
              String tat;
              for (i=0;i<holdNumNames.length;i++)
                   if(holdNumNames.equals(takeValueIn + ""))
                        //if there is a second operator in memory, then clear the contents of the
                        //text box and start over adding in new numbers from the user
                        if(takeValueIn == ".")
                             if (decimalPressed == true)
                                  //JOptionPane.showMessageDialog(null, "This function cannot be used with any other operatorsdecimalPressed== " + decimalPressed,"System Message.", JOptionPane.INFORMATION_MESSAGE);
                                  break;
                             else
                                  decimalPressed = true;
                        if(takeValueIn == "Neg")
                             if(numberpressed == false && negPressed == false)
                                  negPressed = true;
                                  takeValueIn = "-";
                             else
                                  break;
                        if (operators2 == true)
                             String nothing;
                             nothing = "";
                             text1.setText(nothing);
                             operators2 = false;
                        //if there is no data in the text box, then set this number as the new text
                        if(text1.getText().length() == 0)
                             text1.setText(takeValueIn);
                        //if there is text contained in the text field, then append this number to
                        //to the text field and set the new text view for the user
                        else if (text1.getText().length() != 0)
                             holdnumonetwo = text1.getText();
                             holdnumonetwo += takeValueIn;
                             text1.setText(holdnumonetwo);
                        numberpressed = true;
                        bpressedEvaluated = "Found";
                        break;
              for (i=0;i<holdOperatorVisual.length;i++)
                   if(holdOperatorVisual.equals(takeValueIn+""))
                        if (takeValueIn == "=")
                             if (operators == true)
                                  //convert text to number two for calculation
                                  numtwo = Double.parseDouble(text1.getText());
                                  //do the math
                                  if(calctot1=="-")
                                       tot = numone-numtwo;
                                  else if(calctot1=="+")
                                       tot = numone+numtwo;
                                  else if(calctot1=="/")
                                       tot = numone/numtwo;
                                  else if(calctot1=="*")
                                       tot = numone*numtwo;
                                  //convert total to string
                                  tat = String.valueOf(tot);
                                  //set the visual value to the screen for the user
                                  text1.setText(tat);
                                  //update the new number one to be used in the next calculation
                                  numone = tot;
                                  decimalPressed = false;
                                  negPressed = false;
                                  numberpressed = false;
                             break;
                        else
                             if (operators != true && text1.getText().length()!= 0)
                                  calctot1 = takeValueIn;
                                  numone = Double.parseDouble(text1.getText());
                                  String t;
                                  t = "";
                                  text1.setText(t);
                                  firstnum = true;
                                  operators = true; decimalPressed = false;
                                  negPressed = false; numberpressed = false; break;
                             else if (operators == true && text1.getText().length()!= 0)
                             { calctot2 = takeValueIn; numtwo = Double.parseDouble(text1.getText()); //do the math if(calctot1=="-") { tot = numone-numtwo; } else if(calctot1=="+") { tot = numone+numtwo; } else if(calctot1=="/") { tot = numone/numtwo; } else if(calctot1=="*") { tot = numone*numtwo; } //convert total to string tat = String.valueOf(tot); //set the visual value to the screen for the user text1.setText(tat); //update the new number one to be used in the next calculation numone = tot; operators2 = true; decimalPressed = false; negPressed = false; } calctot1 = calctot2; //set the flags firstnum = true; decimalPressed = false; negPressed = false; numberpressed = false; bpressedEvaluated = "found"; break; } } } for(i=0;i<holdSciFiVisuals.length;i++) { if(takeValueIn == holdSciFiVisuals) { if (text1.getText().length()!= 0 && operators != true) { double s=0; numone = Double.parseDouble(text1.getText()); if(takeValueIn == "Sin") s = Math.sin(numone); if(takeValueIn == "Cos") s = Math.cos(numone); if(takeValueIn == "Tan") s = Math.tan(numone); firstnum = true; String ch; ch = String.valueOf(s); text1.setText(ch); operators2 = true; } else if (operators == true) { //JOptionPane.showMessageDialog(null, "This function cannot be used with any other operators", //"System Message", JOptionPane.INFORMATION_MESSAGE); break; } bpressedEvaluated = "found"; decimalPressed = false; negPressed = false; numberpressed = false; } } bpressedEvaluated = "notFound"; if(takeValueIn == "Clear")
                                       //reset all the values that are either presently in use, or that will be the
                                       //first values to be used after the text field is cleared, to start from square one
                                       numone = 0;
                                       numtwo = 0;
                                       //set the flags
                                       firstnum = false;
                                       secondnum = false;
                                       operators = false;
                                       operators2 = false;
                                       decimalPressed = false;
                                       negPressed = false;
                                       numberpressed = false;
                                       //declare string to help clear the text field
                                       String cn;
                                       cn = "";
                                       //set the text field to nothing, an empty string
                                       text1.setText(cn);
         //execute application
         public static void main (String args[])
              Calculator application = new Calculator();
              // addMouseListener(this);
              application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

  • Help Please, forgot my new   admin password..  so im stuck at password prompts.. any ideas to retireve it or make a new one?

    I went to turn off file vault andafter much prompting i had to change my password to login. After trying to use the new password i made it turns out it isnt correct...
    i know i did something wrong in the process..any ideas?

    Hi R%%^Y,
    Since you changed your admin password via the Install disc, your keychain passwod is stil set to the old one. You need to make the keychain password the same as your login password.
    First, try opening Keychain First Aid by opening Keychain Access and going to Keychain Access (right next to the Apple menu) and coming down to Keychain First Aid.
    Click Verify and see what happends. If it comes up with issues, hit the repair button.
    if for some reason, you can't repair it, take a look at keychain Access asks for keychain "login" after changing login password.
    Hope this helps and let me know how it goes.

  • Need help please - or this new Zx flys out of the window..

    Got the Soundblaster Zx now, my good old X-FI went out of order..
    The new Control-tool is horrible.. I cant find Settings for my Creative Cambridge Soundworks 2.1 Speakers.. I always hear cracking sounds and besides it sounds rather dull.. where are my surround Settings, I mean.. hall/reverb..
    with set to stero direct I got less cracking.. with 5.1 removing rear Speakers I do not got I got least cracking.. but I cant really turn up the volume.. bass Settings are not available.. I connected the Speakers with a 3,5mm/3,5mm on the front Speaker jack at the soundcard.. as you should do, if you only got 2.0 or 2.1.. it seems the soundcard gives too much bass on the Speakers.. with my x-fi everything was fine.. nothing to Change at Settings.. connect.. fine.. my active subwoofer takes the bass, and sends what necessary to the Desk Speaker.. it doesnt work if you Change any Settings like "fullrange" Speakers in the Settings.. often they are not available like in "Stereo direct" .. it doesnt Change anything when u disable fullrange, and surround Speaker Option not available, and bass crossover also not available.. in Stereo it is even worse.. much to much bass cracking even below 20-volume..

    See Kappy's great User Tips.
    See my User Tip for some help: Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities https://discussions.apple.com/docs/DOC-4551
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312
    Send Apple an email request for help at: Apple - Support - iTunes Store - Contact Us http://www.apple.com/emea/support/itunes/contact.html
    Call Apple Support in your country: Customer Service: Contacting Apple for support and service http://support.apple.com/kb/HE57
     Cheers, Tom

  • I want to update my Mac from 10.6.8 to Mavericks, but every time it says update unavailable for this computer. How do I check for space available or how much space I  have used? Help please, I am new to using Mac computers.

    I am a new Mac user and I bought a refrubished Mac that has Mac OS X VERSION 10.6.8. I have been wanting to upgrade to Mavericks, but every time I go to do that a message comes up saying OS X Mavericks cannot be installed on this computer. Is there anyway I can instal it? Better yet how can I look up how much GB of memory I have and the available storage?

    1. No, but you might be able to upgrade to Lion. Choose About this Mac from the Apple menu, check that the computer has at least a Core 2 Duo(not Core Duo) CPU, and if so, click here.
    2. Check the RAM from the About this Mac window, choose Computer from the Finder's Go menu, control-click the internal drive, and choose Get Info. If the computer has a 32-bit EFI, it can't be upgraded to Mountain Lion or above regardless of the RAM and free drive space.
    (111990)

  • 8530 HELP PLEASE! Installed new driver

    I installed the new driver last night (2/17/2012).  There was no warning that the new driver no longer uses Intellisync and only syncs with MS Outlook.  All of my contacts and calendar are in a 3rd party software which uses Intellisync.   I have been compiling contacts in this software since 2004.  So I am screwed now in regard to synchronization .  I do not want to migrate to MS Outlook because my current 3rd party database software links contact records and calendar events.
    I had to abandon my perfectly good Palm when I upgraded to Windows 7 and bought the BB because it did synch with my database software.  How do I revert back to the previous driver which will use Intellisync?
    It would have been customer-friendly if there had been a warning prior to my installing the new driver upgrade (as in "what changes").  This is unforgivable!!!!!!! 

    Cameron,
    You guessed correctly - before you can restore from backup, you must format the drive. Select the drive in Disk Utility, click on the "Erase" tab and format the drive as "Mac OS Extended (Journaled)" and give it a name ("Macintosh HD" is Apple's default name for internal drives) and then click erase. Your drive will be formatted in a minute or so and you can proceed with Time Machine restoration.
    Good luck,
    Clinton

  • Help please... new at this

    I just started in a Java class and installed jdk1.2.1 from a disc in the textbook. My problem is that when I tried to run the following application:
    import javax.swing.JOptionPane;
    public class Circle
         public static void main(String args[])
              String getRadius;
              double radius, circ, diam, area;
              getRadius = JOptionPane.showInputDialog("Enter the Radius");
              radius = Double.parseDouble(getRadius);
              diam = 2 * radius;
              circ = 2 * Math.PI * radius;
              area = Math.PI * ( 2 * radius);
              JOptionPane.showMessageDialog(null, "The diameter is: " + diam +
                                                   "\nThe circumference is: " + circ +
                                                   "\nThe area is: " + area, "Results",
                                                   JOptionPane.PLAIN_MESSAGE );
              System.exit(0);
    } It compiled, but when I tried to run it, I got the following:
    Exception in thread "main" java.lang.NoClassDefFoundError: Circle
    I tried a sample application that was included on the disc and got the same message. When I ran a similar program that was as an applet it worked fine.
    Hope this is something simple... any ideas.
    Thanks

    don't forget the separator, ie:
    in windows
    set CLASSPATH=.;%CLASSPATH%
    Exception in thread "main"java.lang.NoClassDefFoundError: Circle
    Sounds like an improper classpath... type "set
    classpath=.%classpath%" in dos prompt, then try
    running again.

  • How can I edit my website from another computer? and how can I create a new website next to the one, I have already? Can anyone help, please?

    How can I edit my website from another computer? and how can I create a new website next to the one, I already have? Can anyone help, please?

    Move the domain.sites file from one computer to the other.
    The file is located under User/Library/Application Support/iWeb/domain.sites.  Move this file to the same location on the other computer and double click and iWeb will open it.  Remember, it is your User Library that you want and not your System Library, as you will not find iWeb there.
    Just create a new site on the same domain file and it will appear below the other site.  If you want them side by side then duplicate your domain file and have one site per a domain file and they can then be side by side.

  • My new partner site has none of the pre-built content discussed in the documentation

    I am a new premium partner and I am very confused.  I have found many great support docs and tutorials that want to help me get my new partner site up and running, but none of the pre-built content that is discussed in these articles exists in my partner site.  There is one page and one page only (home/index) in my new partner site.  I have a support ticket that I submitted 47 hours ago and was escalated 36 hours ago and I still have no resolution.  Can anyone help?  If this discussion falls into the hands of a BC support person, can you PLEASE access ticket #OBNW4395487?  I have a client waiting for me to take his site live but I cannot do so without first setting up a payment gateway in my partner site that allows for recurring billing.  Thank you!  - Jack

    Hi Jack,
    Go to your partner portal > tools and you'll find http://syd.worldsecuresystems.com/CatalystHelp/PartnerContent/Unbranded-Partner-Site-Conte nt.zip link there. You can use that content for your partner site. There are also instructions there on how to implement it. That's if you want a templated partner site. Otherwise you can always transfer your existing portfolio site to your BC site or whip up something nice and unique.
    Cheers,
    mario

  • Iam not able to use all the options in my ichat and neither is my sister can anyone help us were both new to macbooks??

    both me and my sister do not have all the options available to us on ichat and we both want to use the video chat help please were both new to the mac worlds. thanks!

    Hi,
    iChat 6 ?
    I have seen one post that suggests the the Connection Doctor (VIdeo Menu) says in the capabilities tab that the AIR will not do Multiway Video or Audio chats.
    I am not sure how true this is as iChat 4 and 5 can.
    Much earlier Mac computers such as G4 signle Processors do have this issue.  I would not have expected it with an Intel Processor.
    File Transfers can be dependent on the Port used being open in your router (As can Video and Audio chats)
    Screen Sharing requires that you use UPnP to open ports in the router (As well as turning it On in the vidoe Menu).
    If you could be more precise I could match my answers to your questions.
    It is late where I am and it will be about 20 hours before I read any reply.
    10:28 PM      Thursday; August 25, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Every time I log off, the imac cannot find the internet and i have to reinput all from preferences. i even locked the changes. no luck. help please

    Everytime I log off,  the computer cannot find the internet.
    i go to preferences and have to reenter everything including network and web id number. i even locked the network after it finds it only to have the same thing happen again. help please.

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    Profile Backup and Restore
    *http://kb.mozillazine.org/Profile_backup
    *https://support.mozilla.org/en-US/kb/back-and-restore-information-firefox-profiles
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Have 60 gig ipod classic will power up will go to songs but will not play any songs just sits there on 0 I can fast foreword but it still will not do a thing just sits at new spot in song help please.

    Have 60 gig ipod classic will power up will go to songs but will not play any songs just sits there on 0 I can fast foreword but it still will not do a thing just sits at new spot in song and will not play , help please.

    Update!
    This is what I did to fix both the skipping songs problem and the iPod verifying forever & not able to restore problem (because of iTunes 9):
    a) I used Disk Utility to reformat my iPod while in Disk Mode using the instructions here:
    http://support.apple.com/kb/HT1363?viewlocale=en_US
    and here:
    http://www.methodshop.com/gadgets/ipodsupport/erase/index.shtml#backup
    b) Do not unplug your iPod after reformatting (mine showed up as a firewire disk) - simply launch iTunes ( I went back to 8.2) and follow the Restore instructions here:
    http://support.apple.com/kb/HT1339
    iPod is recognized, syncs and doesn't skip songs anymore after that miserable experience with iTunes 9!!!

  • Hi, problem occurs when I'm clicking a button or a new url on the current site. For instance, when i clicked that "Ask This" button on this web site, It redirects me to the default homepage. I cant go back and I'm losing the previous web site HELP PLEASE!

    Hi, problem occurs when I'm clicking a button or a new url on the current site. For instance, when i clicked that "Ask This" button on this web site, It redirects me to the default homepage. I cant go back and I'm losing the previous web site HELP PLEASE!

    Try the Firefox SafeMode. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    # You can open the Firefox 4.0 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    # Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    If it is good in the Firefox SafeMode, your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

Maybe you are looking for

  • Digital Signature validation with expired TSA certificate

    Hi, I used Adobe Acrobat 8.2 to sign a PDF document with "certifying signature" (note: not approval signature) using a self-signed certificate and a remote TSA.  I did NOT embed long term validation information as described here http://help.adobe.com

  • Display input variables in BEx workbook header

    Hi forum, I created a global BEx workbook template and would like to display the input variables (user entries) in the header section. On refresh of the workbook, this section should be updated with the new input variables. I am on BEx 7.0 and alread

  • Want to show  A/R Invoice No   like gipl/00001/08?

    My question is that in    A/R in voice NOis showing like..1,2,3....10             first of all  if i want to show like  GIPL/00001/08  ... increment middle digit by1 in INVOICE NUMBER  Is it Possible? if i want to show like  GIPL/00001/08  ... increm

  • Info required on Report Report Interface

    Hi Experts , Can anyone please provide inputs regarding the Report Report Interface . Any document will be highly appreciated. Regards Garima

  • Required CRM Tables & Relationship Diagram

    Hi All, I need CRM Tables & Relationship Diagram. Anybody there to help me to get this. Its urgent. Thanks in advance. my mail ID: [email protected] Thanx & Regards, Santosh