Manage out clients are not accessible from intranet

Hi!
DA 2012 R2 works in NLB cluster in DMZ zone. I can access internet clients from DA servers (ping, RDP), but not from intranet management workstations (W7). Those workstations have ISATAP IPv6 addresses (from DA server(s)).
What can be wrong here, how to troubleshoot?
Thanks,
UV

Hi!
Again, briefly:
DA clients are out and configured for remote (manage out) management;
DA clients out there are registering their IPv6 addresses in DNS;
HTTPSTunnel is the only way to connect, DA server is in DMZ zone, no straight connection to internet from DA server.
Intranet management workstations have ISATAP address from DA server;
Intranet management workstations can resolove DA clients IPv6 updated addresses;
In clients outside users are logged on and need help over remote assistance;
Remote assistance is enabled on DA clients (and it can be offered from DA server);
Intranet management workstations no not belong to management servers group.
Intranet management workstations cannot connect to DA clients out there to offer remote assistance!
Why can it happen?
UV

Similar Messages

  • My bookmarks used to appear in dropdown menu from the address bar on my iMac G5. I switched to Mac Notebook & from Leopard to Lion. Now my bookmarks are not accessible from the address bar anymore (the line where you type in the website address)

    '''My bookmarks used to appear in dropdown menu from the address bar on my iMac G5. I switched to Mac Notebook & from Leopard to Lion. Now my bookmarks are not accessible from the address bar anymore (the line where you type in the website address)'''

    There appears to be a problem with Firefox 20 with UNC paths when using roaming profiles on a server.
    *[[/questions/955140]] why is the 20.0 address bar unresponsive?
    This is currently investigated and tracked via this bug report.
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=857672 bug 857672] - Address Bar not working (roaming profiles;UNC path support OS.File)
    <i>(please do not comment in bug reports: [https://bugzilla.mozilla.org/page.cgi?id=etiquette.html])</i>

  • Supporting details are not accessible from SmartView client

    Hi All,
    For one of our users Supporting detail functionality is not available using SmartView client. While clicking on Supporting detail option in excel, the bar is showing hour glass but never displaying the supporting detail window. We reinstalled the client but with no success. We are not sure what is causing this issue. Kindly share your thoughts around the possible causes.
    P.S - We asked the user to go to planning web for the time being.
    Thanks,
    Praveen

    What versions of software are you on? Smartview / Excel etc
    If other users are fine and share common software versions, then this would point to something on the client machine....have a try of disabling all add-ins except Smart View to see if anything is conflicting?
    I assume the behaviour is the same whether trying to interact with already existing supporting details or creating own?
    JB

  • Why are protected fields not-accessible from sub-classed inner class?

    I ran across a situation at work where we have to sub-class an inner class from a third-party package. So, it looks something like this...
    package SomePackage;
    public class Outer {
       protected int x;
       public class Inner {
    package OtherPackage;
    public class NewOuter extends Outer {
       public class NewInner extends Outer.Inner {
    }Now the NewInner class needs to access protected variables in the Outer class, just like the Inner class does. But because NewOut/NewInner are in a different package I get the following error message.
    Variable x in class SomePackage.Outer not accessible from inner class NewOuter. NewInner.You can still access those protected variables from the NewOuter class though. So, I can write accessor methods in NewOuter for NewInner to use, but I am wondering why this is. I know that if NewOuter/NewInner are in the same package as Outer/Inner then everything works fine, but does not when they are in different packages.
    I have to use JDK1.1.8 for the project so I don't know if there would be a difference in JDK1.2+, but I would think that nothing has changed. Anyway, if you know why Java disallows access as I have detailed please let me know.

    Although I don't have the 1.1.8 JDK installed on my system, I was able to compile the following code with the 1.3.1_01 JDK and run it within a Java 1.1.4 environment (the JVM in the MSIE 5.5 browser). As long as you don't access any of the APIs that were introduced with 1.2+ or later, the classes generated by the JDK 1.2+ javac are compatible with the 1.1.4+ JVM.
    //// D:\testing\SomePackage\Outer.java ////package SomePackage ;
    public class Outer {
        protected int x ;
        public Outer(int xx) {
            x = xx ;
        public class Inner {
    }//// D:\testing\OtherPackage\NewOuter.java ////package OtherPackage;
    import SomePackage.* ;
    public class NewOuter extends Outer {
        public NewOuter(int xx) {
            super(xx) ;
        public class NewInner extends Outer.Inner {
            public int getIt() {
                return x ;
    }//// D:\testings\Test.java ////import OtherPackage.* ;
    import java.awt.* ;
    import java.applet.* ;
    public class Test extends Applet {
        public void init () {
            initComponents ();
        private void initComponents() {
            add(new Label("x = ")) ;
            int myx = new NewOuter(3288).new NewInner().getIt() ;
            TextField xfld = new TextField() ;
            xfld.setEditable(false) ;
            xfld.setText(Integer.toString(myx)) ;
            add(xfld) ;
    }//// d:\testing\build.cmd ////set classpath=.;D:\testing
    cd \testing\SomePackage
    javac Outer.java
    cd ..\OtherPackage
    javac NewOuter.java
    cd ..
    javac Test.java//// d:\testing\Test.html ////<HTML><HEAD></HEAD><BODY>
    <APPLET CODE="Test.class" CODEBASE="." WIDTH=200 HEIGHT=100></APPLET>
    </BODY></HTML>

  • Some Out-Variables are not filled when one is missing (Oracle-Client 10)

    Hello everybody,
    we have a problem in our applications, written in C++ using OCI.
    All works fine with Oracle Client 8 and 9, the problem occurs when using Client 10.
    A simple example:
    select 1, 2, 3, 4, 5 from dual;
    I have 4 out-variables, the 3rd one is missing:
    OCIDefineByPos(..., 1, &out1, ...);
    OCIDefineByPos(..., 2, &out2, ...);
    OCIDefineByPos(..., 4, &out4, ...);
    OCIDefineByPos(..., 5, &out5, ...);
    When executing with Oracle Client 8 and 9, the result is:
    out1 = 1
    out2 = 2
    out4 = 4
    out5 = 5
    Executing the same with Oracle Client 10, the result is:
    out1 = 1
    out2 = 2
    out4 = 0
    out5 = 0
    When there is a selected column without a variable for it, all following out-variables are not filled. Can someone repeat and / or explain this? I read the Oracle Docs for the OCI 10, but nowhere is a hint about differences or changes in this behaviour. I know that when selecting a column I should spend an out-variable for it, but nobody is perfect.
    Here are some details:
    Oracle Client 10.2.0.1.0
    Client OS Windows XP SP1
    Oracle Database 10g Release 10.2.0.1.0
    Application developed with Visual Studio C++ 7.1
    Thanks for any help.
    Torsten
    Here's the code, I changed the simple OCI-example from the Oracle homepage:
    void ocitest()
    static text username = (text ) "xxx";
    static text password = (text ) "yyy";
    static OCIEnv *envhp;
    static OCIError *errhp;
    static sword status;
    sword out1, out2, out3, out4, out5;
    sb2 ind1, ind2, ind3, ind4, ind5; /* indicator */
    static text maxemp = (text ) "SELECT 1, 2, 3, 4, 5 FROM dual ";
    OCISession authp = (OCISession ) 0;
    OCIServer *srvhp;
    OCISvcCtx *svchp;
    OCIStmt stmthp, stmthp1;
    OCIDefine defnp1 = (OCIDefine ) 0;
    OCIDefine defnp2 = (OCIDefine ) 0;
    OCIDefine defnp3 = (OCIDefine ) 0;
    OCIDefine defnp4 = (OCIDefine ) 0;
    OCIDefine defnp5 = (OCIDefine ) 0;
    (void) OCIInitialize((ub4) OCI_DEFAULT, (dvoid *)0,
    (dvoid * (*)(dvoid *, size_t)) 0,
    (dvoid * (*)(dvoid *, dvoid *, size_t))0,
    (void (*)(dvoid *, dvoid *)) 0 );
    (void) OCIEnvInit( (OCIEnv **) &envhp, OCI_DEFAULT, (size_t) 0,
    (dvoid **) 0 );
    (void) OCIHandleAlloc( (dvoid *) envhp, (dvoid **) &errhp, OCI_HTYPE_ERROR,
    (size_t) 0, (dvoid **) 0);
    /* server contexts */
    (void) OCIHandleAlloc( (dvoid *) envhp, (dvoid **) &srvhp, OCI_HTYPE_SERVER,
    (size_t) 0, (dvoid **) 0);
    (void) OCIHandleAlloc( (dvoid *) envhp, (dvoid **) &svchp, OCI_HTYPE_SVCCTX,
    (size_t) 0, (dvoid **) 0);
    (void) OCIServerAttach( srvhp, errhp, (text *)"", strlen(""), 0);
    /* set attribute server context in the service context */
    (void) OCIAttrSet( (dvoid *) svchp, OCI_HTYPE_SVCCTX, (dvoid *)srvhp,
    (ub4) 0, OCI_ATTR_SERVER, (OCIError *) errhp);
    (void) OCIHandleAlloc((dvoid *) envhp, (dvoid **)&authp,
    (ub4) OCI_HTYPE_SESSION, (size_t) 0, (dvoid **) 0);
    (void) OCIAttrSet((dvoid *) authp, (ub4) OCI_HTYPE_SESSION,
    (dvoid *) username, (ub4) strlen((char *)username),
    (ub4) OCI_ATTR_USERNAME, errhp);
    (void) OCIAttrSet((dvoid *) authp, (ub4) OCI_HTYPE_SESSION,
    (dvoid *) password, (ub4) strlen((char *)password),
    (ub4) OCI_ATTR_PASSWORD, errhp);
    checkerr(errhp, OCISessionBegin ( svchp, errhp, authp, OCI_CRED_RDBMS,
    (ub4) OCI_DEFAULT));
    (void) OCIAttrSet((dvoid *) svchp, (ub4) OCI_HTYPE_SVCCTX,
    (dvoid *) authp, (ub4) 0,
    (ub4) OCI_ATTR_SESSION, errhp);
    checkerr(errhp, OCIHandleAlloc( (dvoid *) envhp, (dvoid **) &stmthp,
    OCI_HTYPE_STMT, (size_t) 0, (dvoid **) 0));
    checkerr(errhp, OCIHandleAlloc( (dvoid *) envhp, (dvoid **) &stmthp1,
    OCI_HTYPE_STMT, (size_t) 0, (dvoid **) 0));
    checkerr(errhp, OCIStmtPrepare(stmthp, errhp, maxemp,
    (ub4) strlen((char *) maxemp),
    (ub4) OCI_NTV_SYNTAX, (ub4) OCI_DEFAULT));
    checkerr(errhp, OCIDefineByPos(stmthp, &defnp1, errhp, 1, (dvoid *) &out1,
    (sword) sizeof(sword), SQLT_INT, (dvoid *) &ind1, (ub2 *)0,
    (ub2 *)0, OCI_DEFAULT));
    checkerr(errhp, OCIDefineByPos(stmthp, &defnp2, errhp, 2, (dvoid *) &out2,
    (sword) sizeof(sword), SQLT_INT, (dvoid *) &ind2, (ub2 *)0,
    (ub2 *)0, OCI_DEFAULT));
    /* checkerr(errhp, OCIDefineByPos(stmthp, &defnp3, errhp, 3, (dvoid *) &out3,
    (sword) sizeof(sword), SQLT_INT, (dvoid *) &ind3, (ub2 *)0,
    (ub2 *)0, OCI_DEFAULT));*/
    checkerr(errhp, OCIDefineByPos(stmthp, &defnp4, errhp, 4, (dvoid *) &out4,
    (sword) sizeof(sword), SQLT_INT, (dvoid *) &ind4, (ub2 *)0,
    (ub2 *)0, OCI_DEFAULT));
    checkerr(errhp, OCIDefineByPos(stmthp, &defnp5, errhp, 5, (dvoid *) &out5,
    (sword) sizeof(sword), SQLT_INT, (dvoid *) &ind5, (ub2 *)0,
    (ub2 *)0, OCI_DEFAULT));
    /* execute and fetch */
    if (status = OCIStmtExecute(svchp, stmthp, errhp, (ub4) 1, (ub4) 0,
    (CONST OCISnapshot *) NULL, (OCISnapshot *) NULL, OCI_DEFAULT))
    if (status == OCI_NO_DATA)
    else
    checkerr(errhp, status);
    void checkerr(OCIError *errhp, sword status)
    text errbuf[512];
    sb4 errcode = 0;
    switch (status)
    case OCI_SUCCESS:
    break;
    case OCI_SUCCESS_WITH_INFO:
    (void) printf("Error - OCI_SUCCESS_WITH_INFO\n");
    break;
    case OCI_NEED_DATA:
    (void) printf("Error - OCI_NEED_DATA\n");
    break;
    case OCI_NO_DATA:
    (void) printf("Error - OCI_NODATA\n");
    break;
    case OCI_ERROR:
    (void) OCIErrorGet((dvoid *)errhp, (ub4) 1, (text *) NULL, &errcode,
    errbuf, (ub4) sizeof(errbuf), OCI_HTYPE_ERROR);
    (void) printf("Error - %.*s\n", 512, errbuf);
    break;
    case OCI_INVALID_HANDLE:
    (void) printf("Error - OCI_INVALID_HANDLE\n");
    break;
    case OCI_STILL_EXECUTING:
    (void) printf("Error - OCI_STILL_EXECUTE\n");
    break;
    case OCI_CONTINUE:
    (void) printf("Error - OCI_CONTINUE\n");
    break;
    default:
    break;
    }

    Use int/long instead sword .

  • SCCM 2012 R2 Clients are not retrieving policy

    Hi - I know this question has been asked many times before - but I have tried almost everything and a no closer to solving the problem.
    Background: Recently a SCCM 2012 SP1 single stand-alone site was upgraded to SCCM 2012 R2. The site is a single stand-alone primary site with a single DP, single MP, using mixed mode
    (HTTP). The R2 upgrade ran without any problem and all SCCM components are showing as healthy.
    A few test SCCM 2012 SP1 clients were upgraded to the R2 client using client-push.
    However the upgraded clients are not retrieving policy from the Management Point. In the Actions Tab of the SCCM client, only Machine Policy Retrieval and User Policy Retrieval are available. But kicking of those actions does not
    result in any of the advertised applications, Task Sequences becoming available. Infact Custom Client Settings are not being set either (e.g. Organisation Name in software Center).
    I have checked and rechecked the following:
    The upgrade of the client completed successfully (checked ccmsetup.log) and the version number went from 5.00.7804.1000 (SP1) to 5.00.7958.1000 (R2).
    The MP health in the SCCM console is showing healthy.
    The MP access URL's load correctly when run from SCCm client computers
    “http://<ServerName>/sms_mp/.sms_aut?mplist” is ok
    “http://<ServerName>/sms_mp/.sms_aut?mpcert” is ok
    The SCCM clients are assigned to the site correctly – verified via the SCCM client and
    ClientLocation.Log
    ClientIDManager.Log is not showing any errors
    CCMExec.log and ExecMgr.log don't show any advertisements being executed (Execmgr.log is almost empty and only has "Software ditrbution site settings policy does not yet exist on the client). If the client is not yest
    registered this is expected behaviour")
    The SCCM clients are Approved and NOT Blocked in SCCM
    I have attempted to upgrade the SCCM client and also completely removed and reinstalled - and both have the same result (no client policy dpwnloaded)
    I have also deleted the above clients completely from SCCM, Run divoery again and pushed the client to the machines again ...with the same result (SCCM client installs, assigns to correct site and then no policy downloaded)
    SCCM 2012 Boundaries are configured correctly and assigned to Boundary Groups correctly
    The SCCM client’s do not have the firewall enabled
    Changed boundary from AD Site to Subnet to IP Address Range: Same issue exists
    Uninstalled MP role and reinstalled it: same Issue exists
    Tried to connect to SCCm client using 3rd party SCCM Client center tool but cannot connect
    ??? Not sure what else to try ???

    Hi all - sorry for the late response.
    We managed to resolve the issue after logging a job with Microsoft Support.
    The issue was that the SCCM 2012 R2 upgrade corrupted 2 tables in the SCCM Database - leading to corrupt SCCM client policies.
    I am pasting the resolution email from Microsoft below:
    (NOTE: This may not be the exact sypmtoms you are experiencing so do not implement this fix assuming it will fix your problem!)
    ISSUE: 
    - All clients are unable to download policies from the server
    CAUSE:
    - Bad policies in the Database
    RESOLUTION: 
    -Issue with PADbID - Run below query against SCCM DB to verify corrupt entries:
    SELECT * FROM
    ResPolicyMap WHERE machineid = 0 and PADBID IN (SELECT PADBID FROM PolicyAssignment WHERE BodyHash IS NULL)
    Confirmed Bad policies entries in the SCCM database
    Run below query to delete the bad policy after which we resolved the issue:
    Delete FROM ResPolicyMap
    WHERE machineid = 0 and PADBID IN (SELECT PADBID FROM PolicyAssignment WHERE BodyHash IS NULL)"

  • Subversion error -- server and project are not accessible

    I just updated to CS4 for the only reason to be able to use
    SVN within the program. I used to use versions, but thought that
    not having to switch would be nice.
    Whatever I tried, I'm getting the error "server and project
    are not accessible." Remember, log in with Versions works smooth as
    pie.
    I created a new folder to download a new copy from the
    repository, uninstalled all previous subversion clients and
    reinstalled CS4, only to still get this error!
    What to do? Why is Adobe making this so hard without proper
    support?

    rosiewrose wrote:
    > Why is there no live chat or other support that would
    help me resolve this??
    This is a user-to-user forum. Adobe provides two free
    technical support
    incidents for standalone products. Details here:
    http://www.adobe.com/support/programs/customer/gss.html
    > Where can I get my money back, I really don't have time
    for things like this.
    Contact Adobe customer support.
    David Powers
    Adobe Community Expert, Dreamweaver
    http://foundationphp.com

  • Method not accessible from other classes

    Hi,
    I ve defined a class and would like to create an instance of it from another class. That works fine, I am also able to access class variables. However the class method "calcul" which is defined as following, is not accessible from other classes:
    class Server {
    static String name;
    public static void calcul (String inputS) {
    int length = inputS.length();
    for (int i = 0 ; i < length; i++) {
    System.out.println(newServer.name.charAt(i)); }
    If I create an instant of the class in the same class, the method is then available for the object.
    I am using JBuilder, so I can see, which methods and variables are available for an object. Thanks for your help

    calcul is a static method, that means you do not need an instance of server to run this method. This method is also public, but your class Server is not, your Server class is package protected. So only classes within the same package has Server can use its method. How to use the calcul method?// somewhere in the same package as the Server class
    Server.calcul( "toto" );

  • The selected remote nodes 'node3' are not accessible

    Hello,
    I removed node3 from 2 node RAC Cluster.
    After this I have re-add this node to my RAC. I added without any problem to CRS but I have a problem with script addNode.sh (/u01/app/oracle/product/crs/oui/bin).
    I have to separate homes for ORACLE_HOME and ASM_HOME, so I need to run this script twice for each ORACLE_HOME.
    I run addNode.sh from one of the cluster nodes (node1), if I run:
    export ORACLE_HOME=/u01/app/oracle/product/11.1.0/asm
    cd $ORACLE_HOME/oui/bin
    ./addNode.sh -silent CLUSTER_NEW_NODES={node3} CLUSTER_NEW_PRIVATE_NODE_NAMES={node3-priv} CLUSTER_NEW_VIRTUAL_HOSTNAMES={node3-vip}
    I got the following error:
    Performing tests to see whether nodes node2,node3 are available
    ............................................................SEVERE:The selected remote nodes 'node3' are not accessible.
    ... 100% Done.
    I reviewed logs located in /u01/app/oraInventory/logs I found
    Status of node 'node3':
    null
    The virtual host name 'node3-vip' for node 'node3' is already in use.
    I checked crs_stat from $ORA_CRS_HOME, but all applications (ons, gsd, vip) and targets are ONLINE. I tried to run vipca -nodelist node1,node2,node3 and updated a configuration. I checked /etc/hosts, connection via SSH between all hosts belonging to RAC: node1, node1-vip, node1-priv etc. Everything looks like fine, so I have no idea what caused this problem.
    Software which I used:
    Linux: UNL 5.4 x86_64
    11g Release 11.1.0.7.0 - 64bit, Oracle Clusterware
    Thank you for your answer,
    Best Regards,
    Edited by: user4924714 on 2010-02-15 07:50

    Hi,
    Thanks for your reply.
    I am running addNode.sh from node which already exist in the Rac Cluster. I tried on node1, node2 but the resulat are the same.
    Best regards,

  • My Macbook Air does not show up on my network to any of my other computers, Other computers on my network appear and disappear, some shared folders are not accessible

    My Macbook Air with Lion does not show up on my network to any of my other computers (PC's) , even though it is connected to my wifi and does access the Internet. In addition, my other computers sometimes show up in Finder and sometimes they're not there. Sometimes they do show in Finder and when I click on them, I get "Connection Failed", other times, they connect. Also some shared folders on those other computers, which are PC's are not accessible, even though fully shared. My network is Apple Airport Extreme and works perfectly otherwise, including all PC's being able to see each other. Help would be much appreciated

    I got the same problem. I want to access my shared folder on my home windows7 from my MBA. Tried many suggestions on the web but all to no avail. I thought that should be very trivial. Maybe a Lion bug?

  • WRT160NL DHCP reserved clients are not showing up in the DHCP Reservation window.... Why?

    I have 5 computers linked to my router. 4 are hardwired and I set it up so that each of the 5 has it's own static address. One of those computers is my DVR security camera system so can monitor my cameras remotely. It was working fine for years and now I can't access the DVR remotely anymore. I notice in the router Setup that the DHCP clients are not showing up as active even though two of the computers are on. I am running XP Pro on these machines and I can PING between them so I know some communication is going on. Also I can access the DVR cameras from my main computer using the internal IP address I assigned to the DVR, but not if I try to use my current WAN IP address.
    Would appreciate any advice on troubleshooting this problem.
    Thanks
    Solved!
    Go to Solution.

    It may have something to do with the firmware of the router. I suggest you should do that. The firmware that you can download from the Linksys website is version 1.0.0.3 Build 2. (http://support.linksys.com/en-us/support/routers/WRT160NL). After the upgrade, reset the router to factory settings (pressing and holding down the reset button). It is best to re-configure the router from scratch also. Try to power cycle your whole network as well.

  • My contacts are not updating from the iCloud. How can I actively go and retrieve them?

    My contacts are not updating from the iCloud even with "push" on. How can i actively go and retrieve them?

    Hello there, Lk354.
    The following Knowledge Base article offers up some great recommendations for troubleshooting issues with using iCloud Contacts:
    Get help using iCloud Contacts
    http://support.apple.com/kb/TS3998
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Some clients are not receiving my mail attachments.

    Some clients are not receiving my mail attachments. Other recipients of the same email DO receive these attachments. It doesn't matter whether it is a jpg, pdf, doc, or other. Sending from gmail or entourage works, only sending from apple mail is a problem.  This has been an ongoing problem for me in Lion and Snow Leopard. I'm new to this forum, so not sure I'm posting in the right area, but I've searched for an answer and can't find anything. Do I need a plug-in or something?  I like my apple mail and don't want to switch, but this is a real problem for me.  Help, please!

    We have the same problem in Snow Leopard, so the problem isn't new. I've been researching this for a while now. Based on what I've read in a whole load of discussions it seems it's an issue in the way Outlook reads the e-mails send by Apple Mail. I've no idea of the technicalities of this but one obvious difference is that Mail's default formatting is Rich Text and Outlook's is HTML, but what do I know.
    We've done variuos test with our PC based clients but with no success: Send as Icon; Window's friendly attachement; Mail Attachement Iconiser, etc. Nothing gets rid of the problem entirely. We're a Mac based Public Relations agency and we send image to the media all of the time...and we have no guarantees that they are getting through.
    It's frustrating that Mail doesn't have an option, as it does for plain text, to send in an outlook friendly way. To me it's a huge problem and if Apple isn't going to sort it, given that Outlook is the choice of Enterprise and 95% of our clients, then we're going to have to spend thousands and switch to Outlook. Apple have gone to great pains to promote cross-compatibility with PC's and perhaps this is one little example of where they could try harder.
    Mail has not had much obvious love and attention for a while and if there's an Apple employee looking in on this thread, perhaps it's time to love it up, give it a few more bells and whistles (without over-complicating of course) and make it sing with Outlook.
    My last attenpt is to try Thunderbird as a default mail client; I'm told it doesn't suffer from the same PC compatibility issues.

  • Old photos are not accessible in Messages in iOS 8

    I upgraded my iPhone 5 to iOS 8 and the problem that I have is that the old photos received via iMessage are not accessible anymore. It just shows them as "?" in the Messages. Also in the "Details" view of the Messages they just appear as blank icons. I should clarify that the issue that I am facing is different from the one explained in:Messages Photos Not Showing: iOS 8 on iPhone 6. I do not have any problems with new messages/photos. The problem is with most (not all) of old Photos received in Messages.
    Also, I recently purchased an iPhone 6 which I used iCloud backup to transfer data from my old iPhone 5, and I have the same problem with the new iPhone as well.
    I'd appreciate if anyone could help me with this problem.

    There is nothing wrong, at least the way that I understand it. When the camera roll reappeared in iOS 8.1, the photos that were in the camera roll were returned to your device again. Those were the photos that were there before you uodated to iOS 8. Users that have opted to particiapet in the iCloud Photo Library Beta do not have the camera roll.
    IF you delete a photo from the camera roll and the photo exists in another album that you created on the iPad, then the photos will be deleted in those albums as well since the photos never existed in those albums to begin with. Those albums only contained pointers to the original photos which made them appear in the albums that you created in the photos app.

  • In system settings 15 item are not accessible, get the message: cannot open it, is not possible on intel based MAC. Items like security, i cloud user and groups network and more

    in system settings 15 item are not accessible, get the message: cannot open it, is not possible on intel based MAC. Items like security, iCloud user and groups network and more.
    Genius bar told me to erase the harddisk and install OSX Maverick again. This has not changed the problems with the system settings

    You need to Repartition the drive as One partition which will erase all data from it and then reinstall OS X. then with the initial setup system you chose the language on the first screen that comes up. That sets the language for the whole system.
    There is no other way of completely removing certain information created by a previous owner. this hold strue whether you are selling or give a Mac to someone.
    To do the repartitioning you need to use the Online Internet Recovery system, if the Mac came with Lion 10.7 or above, or from the original system reinstall discs that came with it when it was new.

Maybe you are looking for

  • S2disk stops working after laptop has been on for a day or two

    Hey, Running s2disk usually works flawlessly. However, I've discovered that after maybe a day or two, or three of the laptop being on (being put into a hibernate whenever I travel) hibernate stops working. There will be no error message on the screen

  • Levels no longer work in Photoshop CS5.1

    Levels don't work in my installation of CS 5.1. The dialog comes up but adjustment don't change the image. I reinstalled CS 5.1 but that didn't fix things. Any ideas on what I can do? thanks

  • Hiding characteristics in the BEx reporting

    My query is Hiding characteristics in the BEx reporting. I want to see only query title, variable and result. I want Hide or delete characteristics ( which are free characteristics and rows in Design mode of query) at query level. can I do this ?

  • HT204370 Problem viewing movie on computer

    I purchased 2 movies on the iPad and they play great.  When I downloaded to the Mac, I can view chapters, extras, more, but when I click on Play, the movie will not play, but I can hear the music.  Any suggestions?

  • IMovie 5.0.2 importing to iDVD 08

    I'm trying to import my iMovie project into iDVD 08. I upgraded to Leopard last year and found out this year that my iDVD 05 wouldn't work with Leopard. So following advice I found on this forum I bought iLife 08 and installed it. I then tried sendin