Getting error message "Unable to Share" when trying to send pictures either by text or emai!  Is there something in my security settings that I need to change?

I am unable to send pictures either by text or email. I will get an error message that states "Unable to Share".  Just purchased the iPhone 6 plus. Never had this issue with the 5.  Is there something that I need to change in my settings?

I am unable to send pictures either by text or email. I will get an error message that states "Unable to Share".  Just purchased the iPhone 6 plus. Never had this issue with the 5.  Is there something that I need to change in my settings?

Similar Messages

  • I'm keep getting the message "unable to authenticate" when trying to sign in to the YouTube app. The website allows me to sign in just fine. Anyone know how to fix this?

    I keep getting the message "unable to authenticate" when trying to sign in to the YouTube app. The website allows me to sign in just fine. Anyone know how to fix this?

    Try "resetting" the iPad...
    Hold the On/Off Sleep/Wake button and the Home button down at the same time for at least ten seconds, until the Apple logo appears.
    edited by:  cs

  • Getting error message Cannot Resolve Symbol when trying to compile a class

    Hello All -
    I am getting an error message cannot resolve symbol while trying to compile a java class that calls another java class in the same package. The called class compiles fine, but the calling class generates
    the following error message:
    D:\Apache Tomcat 4.0\webapps\examples\WEB-INF\classes\cal>javac
    ConnectionPool.java
    ConnectionPool.java:158: cannot resolve symbol
    symbol : class PooledConnection
    location: class cal.ConnectionPool
    private void addConnection(PooledConnection value) {
    ^
    ConnectionPool.java:144: cannot resolve symbol
    symbol : class PooledConnection
    location: class cal.ConnectionPool
    PooledConnection pcon = new PooledConnection(con);
    ^
    ConnectionPool.java:144: cannot resolve symbol
    symbol : class PooledConnection
    location: class cal.ConnectionPool
    PooledConnection pcon = new PooledConnection(con);
    The code is listed as follows for PooledConnection.java (it compiles fine)
    package cal;
    import java.sql.*;
    public class PooledConnection {
    // Real JDBC Connection
    private Connection connection = null;
    // boolean flag used to determine if connection is in use
    private boolean inuse = false;
    // Constructor that takes the passed in JDBC Connection
    // and stores it in the connection attribute.
    public PooledConnection(Connection value) {
    if ( value != null ) {
    connection = value;
    // Returns a reference to the JDBC Connection
    public Connection getConnection() {
    // get the JDBC Connection
    return connection;
    // Set the status of the PooledConnection.
    public void setInUse(boolean value) {
    inuse = value;
    // Returns the current status of the PooledConnection.
    public boolean inUse() {
    return inuse;
    // Close the real JDBC Connection
    public void close() {
    try {
    connection.close();
    catch (SQLException sqle) {
    System.err.println(sqle.getMessage());
    Now the code for ConnectionPool.java class that gives the cannot
    resolve symbol error
    package cal;
    import java.sql.*;
    import java.util.*;
    public class ConnectionPool {
    // JDBC Driver Name
    private String driver = null;
    // URL of database
    private String url = null;
    // Initial number of connections.
    private int size = 0;
    // Username
    private String username = new String("");
    // Password
    private String password = new String("");
    // Vector of JDBC Connections
    private Vector pool = null;
    public ConnectionPool() {
    // Set the value of the JDBC Driver
    public void setDriver(String value) {
    if ( value != null ) {
    driver = value;
    // Get the value of the JDBC Driver
    public String getDriver() {
    return driver;
    // Set the URL Pointing to the Datasource
    public void setURL(String value ) {
    if ( value != null ) {
    url = value;
    // Get the URL Pointing to the Datasource
    public String getURL() {
    return url;
    // Set the initial number of connections
    public void setSize(int value) {
    if ( value > 1 ) {
    size = value;
    // Get the initial number of connections
    public int getSize() {
    return size;
    // Set the username
    public void setUsername(String value) {
    if ( value != null ) {
    username = value;
    // Get the username
    public String getUserName() {
    return username;
    // Set the password
    public void setPassword(String value) {
    if ( value != null ) {
    password = value;
    // Get the password
    public String getPassword() {
    return password;
    // Creates and returns a connection
    private Connection createConnection() throws Exception {
    Connection con = null;
    // Create a Connection
    con = DriverManager.getConnection(url,
    username, password);
    return con;
    // Initialize the pool
    public synchronized void initializePool() throws Exception {
    // Check our initial values
    if ( driver == null ) {
    throw new Exception("No Driver Name Specified!");
    if ( url == null ) {
    throw new Exception("No URL Specified!");
    if ( size < 1 ) {
    throw new Exception("Pool size is less than 1!");
    // Create the Connections
    try {
    // Load the Driver class file
    Class.forName(driver);
    // Create Connections based on the size member
    for ( int x = 0; x < size; x++ ) {
    Connection con = createConnection();
    if ( con != null ) {
    // Create a PooledConnection to encapsulate the
    // real JDBC Connection
    PooledConnection pcon = new PooledConnection(con);
    // Add the Connection to the pool.
    addConnection(pcon);
    catch (Exception e) {
    System.err.println(e.getMessage());
    throw new Exception(e.getMessage());
    // Adds the PooledConnection to the pool
    private void addConnection(PooledConnection value) {
    // If the pool is null, create a new vector
    // with the initial size of "size"
    if ( pool == null ) {
    pool = new Vector(size);
    // Add the PooledConnection Object to the vector
    pool.addElement(value);
    public synchronized void releaseConnection(Connection con) {
    // find the PooledConnection Object
    for ( int x = 0; x < pool.size(); x++ ) {
    PooledConnection pcon =
    (PooledConnection)pool.elementAt(x);
    // Check for correct Connection
    if ( pcon.getConnection() == con ) {
    System.err.println("Releasing Connection " + x);
    // Set its inuse attribute to false, which
    // releases it for use
    pcon.setInUse(false);
    break;
    // Find an available connection
    public synchronized Connection getConnection()
    throws Exception {
    PooledConnection pcon = null;
    // find a connection not in use
    for ( int x = 0; x < pool.size(); x++ ) {
    pcon = (PooledConnection)pool.elementAt(x);
    // Check to see if the Connection is in use
    if ( pcon.inUse() == false ) {
    // Mark it as in use
    pcon.setInUse(true);
    // return the JDBC Connection stored in the
    // PooledConnection object
    return pcon.getConnection();
    // Could not find a free connection,
    // create and add a new one
    try {
    // Create a new JDBC Connection
    Connection con = createConnection();
    // Create a new PooledConnection, passing it the JDBC
    // Connection
    pcon = new PooledConnection(con);
    // Mark the connection as in use
    pcon.setInUse(true);
    // Add the new PooledConnection object to the pool
    pool.addElement(pcon);
    catch (Exception e) {
    System.err.println(e.getMessage());
    throw new Exception(e.getMessage());
    // return the new Connection
    return pcon.getConnection();
    // When shutting down the pool, you need to first empty it.
    public synchronized void emptyPool() {
    // Iterate over the entire pool closing the
    // JDBC Connections.
    for ( int x = 0; x < pool.size(); x++ ) {
    System.err.println("Closing JDBC Connection " + x);
    PooledConnection pcon =
    (PooledConnection)pool.elementAt(x);
    // If the PooledConnection is not in use, close it
    if ( pcon.inUse() == false ) {
    pcon.close();
    else {
    // If it is still in use, sleep for 30 seconds and
    // force close.
    try {
    java.lang.Thread.sleep(30000);
    pcon.close();
    catch (InterruptedException ie) {
    System.err.println(ie.getMessage());
    I am using Sun JDK Version 1.3.0_02" and Apache/Tomcat 4.0. Both the calling and the called class are in the same directory.
    Any help would be greatly appreciated.
    tnx..
    addi

    Is ConnectionPool in this "cal" package as well as PooledConnection? From the directory you are compiling from it appears that it is. If it is, then you are compiling it incorrectly. To compile ConnectionPool (and PooledConnection similarly), you must change the current directory to the one that contains cal and type
    javac cal/ConnectionPool.

  • I KEEP GETTING ERROR MESSAGES 403 AND 404 WHEN TRYING TO SEARCH FROM FIREFOX..HOW COME

    when I bring up firefox it is usually to get into my mail...if I try to search for something thru google /yahoo I get error messages 403 or 404 ...

    ''SusanR62 [[#answer-722913|said]]''
    <blockquote>
    The only system I can get the video to work is Chrome.
    </blockquote>
    This is because Chrome does not use Adobe Flash Player. Chrome uses something called Pepper Flash, maintained by Google (not Adobe). The issues you are experiencing are Adobe Flash Player issues. You should be able to get assistance with these issues [https://forums.adobe.com/community/flashplayer/using_flashplayer on the Adobe forums].

  • Why do I keep getting error message from Digital Editions when trying to open it. Keeps telling me that it has encountered a problem and needs to close. I need this apparently to download a text book fro Proquest - need the text book for Uni work what giv

    Why do I keep getting an error message from Digital Editions saying that it has encountered a problem and needs to close. I need this programme to download a text book from Proquest for University work what gives????

    You are using ADE on Windows or Mac ? and their versions ??
    Please restart your machine and try once again.
    Thanks

  • Error message 5.1.1 when trying to send an email

    I am wondering if this is a problem on my end or the recipient's end? I try replying and sending a new email and I get the message "Mail server responded: 5.1.1. Recipient address rejected. User unknown in relay recipient table."
    How can this be corrected?
    Thanks.

    Before I call in the troops and wake all server-personal I would take a second look at the address.
    If copy/paste-ing you can get an extra " or . )
    Even if most mailservers accept a mix of upper and lover case [email protected] some has to have it just their way, Often lover case.
    And no extra , or ; at the end
    Also if there is a list of addresses just one have to be corrupt to make the mail bounce.

  • I keep getting error message " server stopped responding" when trying to connect to internet via wifi

    My iphone works fine using cellar network, but will not connect to internet via wifi. Ive reset network setting with no diffrence.
    Any ideas?

    And you can turn the WiFi button on and off?
    If yes, then you next need to try to Restore your iPhone from your backup.

  • Keep getting error message appication not found when trying to use Firefox, recently had lightning strike neighborhood box.

    also will not load automatically anymore since lost power few days ago.

    Same issue to with Windows XP SP3 x86 with Java Runtime Enviornment 1.5.0_15
    J2SE Enviornment 5.0 Update 15
    Java 6 Update 17

  • HT1926 Trying to install iTunes for Windows Vista. Says "successfully installed," but when I try to open iTunes I get error messages, "unable to locate component, AVFoundationCF.dll not found," then "Error 7 (Windows error 126)

    Trying to install iTunes for Windows Vista. Says "successfully installed," but when I try to open iTunes, I get error messages, "unable to locate componant AVFoundationCF.dll not found," then "Error 7 Windows error 126." I have tryed to reinstall twice with the same result.

    Repair Apple Application Support.
    START/CONTROL PANEL/PROGRAMS N FEATURES/highlight APPLE APPLICATION SUPPORT, then click the REPAIR button

  • Getting error message 'unable to connect to server' when trying to access iCloud

    Trying to access my iCloud account but keep getting error message 'unable to connect to server'. Need help please.

    Welcome to the Apple Community.
    Try the following.
    Go to Settings > iCloud > Delete Account (This removes your data from your device, but not from your account, it will be added back later).
    Restart the device.
    Sign in again (Settings > iCloud, don't use the 'Create New Apple ID' button).

  • I'm trying to burn a dvd from idvd but I keep getting error message, broken assets, but when I check my drop zones and their content there's no error messages on any of them?

    I'm trying to burn a dvd from idvd but I keep getting error message, broken assets, but when I check my drop zones and their content there's no error messages on any of them?

    Hi
    And if You change view - in main "window/view field" so that You see the box-plot structure.
    No exclamation marks there either ?
    and non at the front page ?
    iDVD do not copy Your material - only points to where it is stored. So if on any external hard disks, USB-memories, CDs or DVDs are missing - assetts are broken.
    Or if You changed location of any material or directed iPhoto or iTunes or GarageBand to a new Library - Then iMovie/iDVD also get's lost.
    Yours Bengt W

  • I keep getting an error message saying, "cannot record" when trying to record over a slide in my presentation. No idea why. Any suggestions? Thanks

    I keep getting an error message saying, "cannot record" when trying to record over a slide in my presentation. No idea why. Any suggestions?
    Thanks

    email ituens at expresslane.apple.com and they will help you for nothing

  • HT201210 iam getting a error message code of 3194 when trying to restore iphone 4 on itunes

    iam getting a error message code of 3194 when trying to restore iphone 4 on itunes

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

  • TS1718 I tried to update, did not work, unintstalled did not work.  Now when I try to install i get error message "The feature you are trying to use is on a network resource tha is unabailable.  Looking for itunes64.msi path.

    I tried to update, did not work, unintstalled did not work.  Now when I try to install i get error message "The feature you are trying to use is on a network resource tha is unabailable.  Looking for itunes64.msi path.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • I cant sync my iphone 5s on windows itunes, keep getting error message unable to load dataclass information from sync services.

    i can not sync my iphone 5s on itunes on windows. keep getting error message "unable to load dataclass information from sync services" when plugging in my phone.
    I have tried uninstalling itunes and re-installing it.
    Turning off firewall and antivirus.
    Has anyone had this before and if so how did you over come this issue?
    Thanks in advance

    Hey troyboi12345,
    Thanks for using Apple Support Communities.
    To troubleshoot this issue, follow this article.
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert
    http://support.apple.com/kb/ts2690
    Have a nice day,
    Mario

Maybe you are looking for

  • Since Time Change, iCal and iPhone Calendar Time Are All Messed Up

    Ever since the most recent daylight-savings time change, I noticed all events I created in iCal, when synced with my iPhone, became an hour off. If I edit the event on the iPhone, it stays the correct time on my iPhone, but when it syncs with iCal ag

  • Bubble chart settings

    Hi , I am trying to build the bubble chart as silimar  in the  below link http://it.usaspending.gov/?q=content/analysis when I click on any of the bubble I can see the round circle  & a textt around the bubble how can this be done.Please let me known

  • E51 - Hidden powers revealed

    1) Nokia E51 can play 320X240 videos in MP4 format upto 450kbps. Half the fps may even push 640X480. 2) By installing FLV player, any video from YouTube/Metacafe could be played in the handset itself(after downloading via WLAN). So, you don't need a

  • Google Problem "computer or network may be sending automated queries", what to do?

    Hi, yesterday google told me this message "...computer or network may be sending automated queries...." now I Installed OSX Lion, deleted Firefox, reinstalled it, but now I get this message again. By now Google's Chrome and Safari work fine and no me

  • IPhone sync of playlists from MacBook Pro

    iPhone 5S was syncing with Computer just fine until last update. Now, don't know how to edit playlists to be synced with IPhone. Also some playlists do not work, a red circle with square to the right of song titles and unable to play. I think the las