My skype doesn't work anymore - I think.

G'day Skype,
When I log into skype it comes up with the following message 'Skype home is unavailable at the moment - check back later to see your news and messages'.  This has been the situation for weeks.  I've uninstalled and reinstalled skype twice, I've opened a new account (now have three) and nothing seems to work.  What is the issue and how do I fix it please?  Also, how will I know someone has responded to this plea for help?  Jack

Make sure your connection status is set to online.
Regards,
Tamim
Location - Dhaka | Bangladesh - Standard Time Zone: GMT/UTC + 06:00 hour
If one of my replies has adequately addressed your issue, please click on the “Accept as Solution” button. If you found a post useful then please "Give Kudos" at the bottom of my post, so that this information can benefit others.

Similar Messages

  • Link to a file doesn't work anymore

    I repeteadly made this experience: I link some text to a file and upload it via .mac. However, when I change the file, the link doesn't work anymore. Even if I set up the whole thing again and upload it, it doesn't work.
    Seems like I get one chance per link and that's it.
    Does anyone know how to get the link working again?
    Message was edited by: Christian Stahl

    I just started using iWeb last night for the first time and ran into the same (or similar) problem. I did it kind of backwards but that shouldn't matter I wouldn't think. I also came across another problem with text which was not supposed to be a hyperlink but ended up being one and one I couldn't turn off.
    I created a text field, typed in some text, then made the text an active hyperlink and attached the link to a file. That first one worked OK. Then I copied and pasted that text field about ten times, changed the text slightly and set each text field to another different file link. I then published and tried the links using Safari. The first few links worked fine and the files were automatically downloaded to my downloads folder. However, clicking on the last few links downloaded files from the other previous text links instead of the ones they were supposed to even though the inspector shows the correct files. I even tried doing new text fields and new links but they still don't work correctly.
    The other problem is that I created some more text fields to be used as descriptions for the file downloads by copying a hyperlinked text field. I realized after the copies were made and I had spent some time changing the text that these text fields carried over the linked hypertext attribute. Since I didn't want to type everything out again from scratch, I just turned off the hypertext link attribute in the inspector. However, after I saved the web site and then published the site, I discovered that the text was still linked to a file download. I went back into iWeb and that hypertext checkbox was now checked. I turned it off several times but every time I publish, it turns it back on by itself.
    I am going to create the entire page over again from scratch and try the method of dragging files from the finder to initially create the link (got that from the help file).
    Also it would be nice to have better/more file download features in iWeb such as being able to access a file picker where the web user could select files s/he wanted to download instead of requiring one button per file. Also, some way to automatically compress into one download a selection of several files.
    -R

  • Merge 2 code and script doesn't work anymore

    I have 2 AS2 codes (I think). One is a carousel gallery script that lets pictures flying in a circle. And the second code is the one that let words fly, downloaden from http://www.levitated.net/daily/levTextSpace.html.
    The scripts work seperatly, but once i merge the codes together the levTextSpace doesn't work anymore. And I can't find where the problem is. Fla file is included.
    Carousel gallery:
    picData = new XML();
    picData.ignoreWhite = true;
    picData.onLoad = loadXML;
    picData.load("md_photos.xml");
    function loadXML() {
         _root.createEmptyMovieClip("thumbnails", 1);
         images = new Array();
         for (i=0; picData.firstChild.childNodes[i].firstChild.nodeValue != undefined; i++) {
              images.push(picData.firstChild.childNodes[i].firstChild.nodeValue);
         thumbnails._x = 750;
         thumbnails._y = 75;
         imageLoading = true;
         numObjects = images.length;
         objectsInScene = new Array();
         focalLength = 750;
         spin = 0;
         _root.thumbnailSize = 350/((numObjects)/9);
         displayPane = function () {
              var angle = this.angle+spin;
              var x = Math.cos(angle)*this.radius;
              var z = Math.sin(angle)*this.radius;
              var y = this.y;
              var scaleRatio = focalLength/(focalLength+z);
              this._x = x*scaleRatio;
              this._y = y*scaleRatio;
              this._xscale = -(this._yscale=100*scaleRatio);
              this._xscale *= Math.sin(angle);
              this.swapDepths(Math.round(-z));
         angleStep = 2*Math.PI/numObjects;
         for (i=0; i<numObjects; i++) {
              thumbnail = thumbnails.createEmptyMovieClip("thumbnail_"+i, i);
              myPic = thumbnail.createEmptyMovieClip("picHolder", 1);
              myPic.loadMovie(images[i]);
              thumbnail.angle = angleStep*i;
              thumbnail.radius = 650;
              thumbnail.x = Math.cos(thumbnail.angle)*thumbnail.radius;
              thumbnail.z = Math.sin(thumbnail.angle)*thumbnail.radius;
              thumbnail.y = 0;
              thumbnail.display = displayPane;
              thumbnail.drawBox(_root.thumbnailSize);
              thumbnail.buttonize(i);
              thumbnail.notLoaded = true;
              objectsInScene.push(thumbnail);
         panCamera = function () {
              spin -= 0.001;
              for (var i = 0; i<objectsInScene.length; i++) {
                   objectsInScene[i].display();
         thumbnails.onEnterFrame = panCamera;
         _root.onEnterFrame = function() {
              for (i=0; i<images.length; i++) {
                   if ((_root.thumbnails["thumbnail_"+i].picHolder.getBytesLoaded()/_root.thumbnails["thumbnail_"+i].picHolder.getBytesTotal() == 1) && _root.thumbnails["thumbnail_"+i].notLoaded) {
                        if (_root.thumbnails["thumbnail_"+i].picHolder._width>=_root.thumbnails["thumbnail_"+i].picHolder._height) {
                             _root.thumbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._width-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._width)));
                             _root.thumbnails["thumbnail_"+i].picHolder._y = (_root.thumbnailSize-_root.thumbnails["thumbnail_"+i].picHolder._height)/2;
                        if (_root.thumbnails["thumbnail_"+i].picHolder._width<=_root.thumbnails["thumbnail_"+i].picHolder._height) {
                             _root.thumbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._height-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._height)));
                             _root.thumbnails["thumbnail_"+i].picHolder._x = (_root.thumbnailSize-_root.thumbnails["thumbnail_"+i].picHolder._width)/2;
                        if (_root.thumbnails["thumbnail_"+i].picHolder._width == _root.thumbnails["thumbnail_"+i].picHolder._height) {
                             _root.thumbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._width-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._width)));
                             _root.thumbnails["thumbnail_"+i].picHolder._x = _root.thumbnails["thumbnail_"+i].picHolder._y=0;
                        _root.thumbnails["thumbnail_"+i].picHolder._alpha = 80;
                        _root.thumbnails["thumbnail_"+i].notLoaded = false;
                   if ((_root.thumbnails["thumbnail_"+i].picHolder.getBytesLoaded()/_root.thumbnails["thumbnail_"+i].picHolder.getBytesTotal()<1)) {
    levTextSpace:
    // register root as environment
    Object.environment = _root;
    // create camera object
    this.cam = {x:0, y:0, z:500, dx:0, dy:0, dz:-500};
    // set environmental constants
    this.fl = 1000;
    // create 'space' to which all words will be attached
    this.createEmptyMovieClip("space", 2);
    // center 'space' on the stage
    space._x = 800;
    space._y = 900;
    // a string of words related to the wind
    this.keywords = "no-nonsense  full-service partner  co-creation  innovation  keep it simple  technical expertise  integral design method  successful products  teamwork  designers engineers  design for (dis)assembly  sustainability  ecological  smart  ideation  feasability study  ergonomic analysis  imagineering  trade off matrix  prototyping  consultancy  technology  problemsolvers  open-minded  multi-disciplinary  imagination  creative minds  passionated  user centered  strategy  added value";
    // convert the string of words into an array of words
    this.wordList = new Array();
    this.wordList = this.keywords.split("  ");
    // create one instance for each word in the list
    for (n=0; n<this.wordList.length; n++) {
        // pick a word from the list
        var word = Object.environment.wordList[n];
        var x = random(600)-(300);
        var y = random(400)-(200);
        var z = random(Object.environment.fl*2)-Object.environment.fl;
        // create an instance of the keyWord object
        nombre = "word"+String(depth++);
        initialization = {txtword: word, x: x, y: y, z: z};
        space.attachMovie("keyWord", nombre, depth, initialization);
        trace(nombre);
    this.onEnterFrame = function() {
        this.cam.dz += 5;
        // move the camera to its destination
        this.cam.x += (this.cam.dx-this.cam.x)/10;
        this.cam.y += (this.cam.dy-this.cam.y)/10;
        this.cam.z += (this.cam.dz-this.cam.z)/30;

    change the highlighted text
    picData = new XML();
    picData.ignoreWhite = true;
    picData.onLoad = loadXML;
    picData.load("md_photos.xml");
    function loadXML() {
         _root.createEmptyMovieClip("thumbnails", 1);
         images = new Array();
         for (i=0; picData.firstChild.childNodes[i].firstChild.nodeValue != undefined; i++) {
              images.push(picData .firstChild.childNodes[i].firstChild.nodeValue);
         thumbnails._x = 750;
         thumbnails._y = 75;
         imageLoading = true;
         numObjects = images.length;
         objectsInScene = new Array();
         focalLength = 750;
         spin = 0;
         _root.thumbnailSize = 350/((numObjects)/9);
         displayPane = function () {
              var angle = this.angle+spin;
              var x = Math.cos(angle)*this.radius;
              var z = Math.sin(angle)*this.radius;
              var y = this.y;
              var scaleRatio = focalLength/(focalLength+z);
              this._x = x*scaleRatio;
              this._y = y*scaleRatio;
              this._xscale = -(this._yscale=100*scaleRatio);
              this._xscale *= Math.sin(angle);
              this.swapDepths(Mat h.round(-z));
         angleStep = 2*Math.PI/numObjects;
         for (i=0; i<numObjects; i++) {
              thumbnail = thumbnails.createEmptyMovieClip("thumbnail_"+i, i);
              myPic = thumbnail.createEmptyMovieClip("picHolder", 1);
              myPic.loadMovie(ima ges[i]);
              thumbnail.angle = angleStep*i;
              thumbnail.radius = 650;
              thumbnail.x = Math.cos(thumbnail.angle)*thumbnail.radius;
              thumbnail.z = Math.sin(thumbnail.angle)*thumbnail.radius;
              thumbnail.y = 0;
              thumbnail.display = displayPane;
              thumbnail.drawBox(_ root.thumbnailSize);
              thumbnail.buttonize (i);
              thumbnail.notLoaded = true;
              objectsInScene.push (thumbnail);
         panCamera = function () {
              spin -= 0.001;
              for (var i = 0; i<objectsInScene.length; i++) {
                 & nbsp; objectsInScene[i].display();
         thumbnails.onEnterFrame = panCamera;
         _root.onEnterFrame = function() {
              for (i=0; i<images.length; i++) {
                 & nbsp; if ((_root.thumbnails["thumbnail_"+i].picHolder.getBytesLoaded()/_root.thumbnails["thumbnail_"+i].picHolder.getBytesTotal() == 1) && _root.thumbnails["thumbnail_"+i].notLoaded) {
                 & nbsp;      if (_root.thumbnails["thumbnail_"+i].picHolder._width>=_root.thumbnails["thumbnail_"+i].picHolder._height) {
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._width-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._width)));
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._y = (_root.thumbnailSize-_root.thumbnails["thumbnail_"+i].picHolder._height)/2;
                 & nbsp;      }
                 & nbsp;      if (_root.thumbnails["thumbnail_"+i].picHolder._width<=_root.thumbnails["thumbnail_"+i].picHolder._height) {
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._height-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._height)));
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._x = (_root.thumbnailSize-_root.thumbnails["thumbnail_"+i].picHolder._width)/2;
                 & nbsp;      }
                 & nbsp;      if (_root.thumbnails["thumbnail_"+i].picHolder._width == _root.thumbnails["thumbnail_"+i].picHolder._height) {
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._yscale = _root.thumbnails["thumbnail_"+i].picHolder._xscale=(100*(1-(_root.thumbnails["thumbnail_"+i].picHolder._width-_root.thumbnailSize)/(_root.thumbnails["thumbnail_"+i].picHolder._width)));
                 & nbsp;           _root.thu mbnails["thumbnail_"+i].picHolder._x = _root.thumbnails["thumbnail_"+i].picHolder._y=0;
                 & nbsp;      }
                 & nbsp;      _root.thumbnails["thumbnail_"+i].picHolder._alpha = 80;
                 & nbsp;      _root.thumbnails["thumbnail_"+i].notLoaded = false;
                 & nbsp; }
                 & nbsp; if ((_root.thumbnails["thumbnail_"+i].picHolder.getBytesLoaded()/_root.thumbnails["thumbnail_"+i].picHolder.getBytesTotal()<1)) {
                 & nbsp; }
    levTextSpace:
    // register root as environment
    Object.environment = _root;
    // create camera object
    this.cam = {x:0, y:0, z:500, dx:0, dy:0, dz:-500};
    // set environmental constants
    this.fl = 1000;
    // create 'space' to which all words will be attached
    this.createEmptyMovieClip("space", 2);
    // center 'space' on the stage
    space._x = 800;
    space._y = 900;
    // a string of words related to the wind
    this.keywords = "no-nonsense  full-service partner  co-creation  innovation  keep it simple  technical expertise  integral design method  successful products  teamwork  designers engineers  design for (dis)assembly  sustainability  ecological  smart  ideation  feasability study  ergonomic analysis  imagineering  trade off matrix  prototyping  consultancy  technology  problemsolvers  open-minded  multi-disciplinary  imagination  creative minds  passionated  user centered  strategy  added value";
    // convert the string of words into an array of words
    this.wordList = new Array();
    this.wordList = this.keywords.split("  ");
    // create one instance for each word in the list
    for (n=0; n<this.wordList.length; n++) {
        // pick a word from the list
        var word = Object.environment.wordList[n];
    // changing the next 3 lines probably will change where the words appear
        var x = random(600)-(300);
        var y = random(400)-(200);
        var z = random(Object.environment.fl*2)-Object.environment.fl;
        // create an instance of the keyWord object
        nombre = "word"+String(depth++);
        initialization = {txtword: word, x: x, y: y, z: z};
        space.attachMovie("keyWord", nombre, depth, initialization);
        trace(nombre);
    this.createEmptyMovieClip("loopMC",this.getNextHighestDepth);
    loopMC.onEnterFrame = function() {
        this.cam.dz += 5;
        // move the camera to its destination
        this.cam.x += (this.cam.dx-this.cam.x)/10;
        this.cam.y += (this.cam.dy-this.cam.y)/10;
        this.cam.z += (this.cam.dz-this.cam.z)/30;

  • Internet links doesn't work anymore within my Outlook

    My internet links within my Outlook doesn't work anymore when I click on the link (I got a system problem). Anyone who knows what settings I need to do?
    Thanks

    That being the case, I think the default setting must be corrupted.  See here on how to reset: http://www.msoutlook.info/question/706
    Or open control panel, go to Default Programs, and then Default settings.  Change the file association for Interner Explorer.  See if that works
    {---------- Please click the "Thumbs Up" to say thanks for helping.
    Please click "Accept As Solution" if my help has solved your problem. ----------}
    This is a user supported forum. I am a volunteer and I do not work for HP.

  • Choosing start volume with [alt] doesn't work anymore

    Hi there,
    On my MBP (15" early 2011). Normally I can choose from what volume I want to boot by pressing the [alt] key right after switching on my MBP. I have OSX Snow Leo and Win7 (64bit) installed.
    However since I installed the latest software updates several days ago, including a firmware update for the thunderbolt connection, the choosing of the start volume by pressing [alt] on startup doesn't work anymore: I can move the mouse, but the two volumes don't appear on the screen. All I can do is to switch off. I can however boot under both, OSX and Win7 by choosing the "restart under Win7/OSX" option in the other system respectively.
    I now found out, that it works perfectly fine again when I have my 27" Apple Cinema display (mini display, not thunderbolt) connected to my MBP. When it's not connected I am having the issue.
    My guess is that the thunderbolt firmware update causes this.
    Anyone got an idea? It's quite a pain in the *** that I always have to start one system at first to get in the other one at the moment.
    Thx

    Hi Fortuny,
    thx for your answer! I just have reseted this NVRAM as described in the support page, and think I have done it right. It worked as said there, I just didn't have to set any time or resolution things afterwards, as it is written there that it might have to be.
    Sadly it didn't seem to help. Anyway, I do have news:
    When the two volumes didn't appear again on the startup screen, I sat back and thought about what the issue could be. After approximately one minute starin on the screen, suddenly the two volumes appeared! So in fact it DOES work, just it takes about a minute now when I don't have the cinema display attached.
    Does this additional info say anything to the experts out there? It's still not solved, as it is rather inconvenient to wait a minute untill I can choose the startup volume.
    Thx for any sugestions!

  • ISight doesn't work anymore

    Hello guys,
    my internal iSight stopped working some days ago It worked well for more than 1 year (I did lots of video chats with Skype and iChat and took even more snapshots with PhotoBooth) but now it suddenly stopped. I have no idea what the reason could be, the notebook just lay on the table as it did for weeks, it didn't fall down or anything like that.
    The whole system doesn't detect the camera anymore, the system profiler says under "Hardware->USB" that there is a "Vendor-Specific" thing instead of the camera. Even under Windows XP via Bootcamp the iSight doesn't work anymore, though I used it without problems some weeks ago.
    I've already had the very same problem on 16th august this year. That time I could fix it just by resetting the PRAM and VRAM, but this time this doesn't work. I also wondered whether a Firmware-Reset might solve the problem, but as I've installed the MacBook Firmware-Update 1.1 I can't use the Firmware Restoration CD (http://docs.info.apple.com/article.html?artnum=303469: "Note: This CD cannot be used to return an Intel-based Macintosh computer's firmware to a previous version if a successful update has already been performed.").
    I really hope you can help me and that it's not a hardware-defect, because my guaranty has expired some weeks ago.
    Thanks, Woelfle

    Ok, it actually seems to be an hardware-defect Well, at least an insulate contact. I've pressed the area around the iSight camera and the MacBook-display softly and now the camera works again as if there haven't been any problems. This explains why it worked again after the first time the defect occurred…
    So what would you say? Let it as it is? Don't change anything? Or opening the bezel around the display to check the contacts (how difficult is this for a layman?)? Or going to the next apple store and let them check the contacts (remember: I don't have guaranty anymore)?

  • Battery doesn't work anymore

    I bought a mac on 2011 and it was working wonderfully but since September there was an accident in my house (we're under makeover, so while the constructers were setting up the rooftop it started rain and the water got into our house and unfortunately my macbook was affected) and the battery of my mac doesn't work anymore. I can only use it when it's with the force power and I would like to know if there's a way to recover it on USA or find a way to rapair it.

    I think it's a dead battery and that you probably wouldn't be able to fix him so, or buy a new macbook or always keep the plug into it

  • Touchpad doesn't work anymore

    Hello there,
    I've a problem with my touchpad. It doesn't work anymore.
    A few months ago I had a few problems with the touchpad. The cursor was running over the screen, random clicking some things. Sometimes it happened for an hour, sometimes for a few days, but it always stopped. Later it didn't disapear anymore. The touchpad isn't working at all, so I'm not able to work with it anymore. I already cleaned the touchpad from the outside and the inside., but there's no change. It's not so good that something important like that gets broken in such a short time, I have my laptop for two years now. I'm curious if there is a special guarantee for this, because I think this is not my fault. Maybe there is something wrong from the beginning or something.
    Can anybody help me?
    Thanks a lot.
    Bye.

    You can check your service and support coverage here.
    I have my laptop for two years now.
    Unless you purchased Apple care, the one year limited warranty has expired.

  • After BIOS update my Equium L40 doesn't work anymore!

    Hi friends...
    Please, I need a help.
    I updated my laptop bios v1.60 to v2.00 and after that it doesn't work anymore.
    When I try to power it on nothing happens.
    Maybe I need original BIOS.
    Who has some solution? What can I do?
    Could someone help me?
    Thanks!
    My laptop is an Equium L40 series - PSL49E - 156

    Hi
    I can say what you have to do now
    You have to contact the ASP in your country for a help
    Yes, you need the ASP technician.
    I assume the ROM module where the BIOS is stored has not been flashed correctly.
    I think the ASP will try to flash it again using an special BIOS version
    Good luck

  • MPEG-2 component doesn't work anymore

    Hi,
    I now recognized, that the MPEG-2 component doesn't work anymore. I don't know since which moment, but maybe since the last QuickTime update. I reinstalled it, but it didn't solve the problem.

    I can open a m2v fil but there is no content and it displays like a sound file.
    If there is no display screen above the controller (i.e., looks like an audio file), check the Inspector (or Properties) window to see what the QT player thinks is contained in the file. Also, what is the source of the file? Files split by windows users and posted on the internet frequently open in this manner without a display screen. Basically, if the QT MPEG-2 Playback component is not working, the file will not open at all. Also, M2V files are normally paired with a separate AIFF file. If you have QT Pro, open the Properties window and check the "Resource" pointer for your M2V track.
    I can't find where it is installed either.
    Did you check the root "Library > QuickTime" folder on your start-up drive? Also, did you install the correct codec? Two versions should be contained in the image file. You want the one that says "For QuickTime 6.4 and later & Intel Macs."

  • Last week, I had no problems streaming my MacBook Pro to my sony Bravia with a logix hdmi cable. I came back from holidays and now it doesn't work anymore.  What settings should my computer be on and what settings should my tv be on?

    Last week, I had no problems streaming my MacBook Pro to my sony Bravia with a logix hdmi cable. I came back from holidays and now it doesn't work anymore.  What settings should my computer be on and what settings should my tv be on?

    TarahCurrie Sep 10, 2014 3:48 PM
    Restore From Time Machine Backup
    Reinstall OS X
    Get Help Online
    Disk Utility
    MacBook Pro, Mac OS X (10.5.8)
    You are running 10.5.8
    Did you try booting off your Install disk holding the c key down.  From here you can get to the drop down menu just a few clicks in (you are not going to install) and run  the Disk Utility>Repair Disk.  See if it will let you do this.

  • Efi Express doesn't work anymore so I can't print

    I Use Efi Express as RIP and colormanagement software to print to my Epson Pro 4900 printer. Now I need prints and this doesn't work anymore.
    I installed Maverick so that is most likely to be the problem, because just before I did this the pritner and software worked fine. I installed Efi Express again but I keep getting a message aboutr a system extension that isn't properly installed.
    I looked in the system folder for this .kext file, but it doesn't exist at all.
    Please help.

    We use the Fiery Express driver with our Canon copiers that use the optional EFI print controller and have no issue with this driver on 10.9. In fact, at this point in time, it is the only EFI driver we have for 10.9.
    The Express driver plugins should be located in /Library/Printers/efi and the PPD will be in /Library/Printers/PPDs/Contents/Resources/en.lproj and is called Fiery Express. So trash these files and check the EFI web site for the latest version of the driver.

  • I can't seem to get my iMac (late 2009 model) into automatic sleep mode.  If I manually put it into sleep I don't have any issues.  I used to solve the issue by running "PleaseSleep" application but that doesn't work anymore since Lion.

    I can't seem to get my iMac (late 2009 model) into automatic sleep mode.  If I manually put it into sleep I don't have any issues.
    I used to solve the issue by running "PleaseSleep" application but that doesn't work anymore since Lion. I now want to fix the underlying problem.
    I'm not running any weird background processes and in my energy saver settings I've tagged "put the hard disk to sleep when possible:, "allow power button to put computer to sleep" and "automatically reduce brigthness". All pretty standard.
    Is there anyone who can give me some pointers ?

    Today I solved the same problem for my iMac running Snow Leopard. See https://discussions.apple.com/thread/3008791#15947706. The method may help you, too.
    For me it was the DynDNS Updater preventing my iMac from automatically entering sleep mode.
    To my knowledge the cause of this sleep problem can only be a peripheral device or a process. So I suggest to first unplug all peripherals and test whether that's the cause. If not, I suggest to terminate one process after another and to test automatic entering of sleep mode after each. Start with user processes; continue with system process if necessary.
    At least that's the way I found the offending process. Fortunately, I was able to change the configuration of that process to allow again automatic entering of sleep mode.
    Good luck!

  • Su doesn't work anymore but sudo works

    Hi all,
    I normally use my standard user account but when I'm installing with macports I routinely "su" into root to do things.
    Today I went on my machine and noticed that "su" wouldn't work. Before anyone decides to tell me that I don't need to use "su", I realize that but I use it for my own purposes.
    From the system log I am seeing this each time "su" fails:
    su[1376]: pam_authenticate: Permission denied
    What is interesting is that doing a "sudo su" works, and I'm able to do all of my admin duties that way.
    I have a feeling something messed up my bash profile but not totally sure. Has anyone else run into this issue?

    Hi all,
    Thanks for the help on this issue.
    I'll clarify: I'm using this install as a server and this is why I have 2 admin accounts on it. The original account is my own; the one I created when I first installed OS X. I then enabled System Admin (root) so that is the other admin account. After installing MacPorts I have been running the system as a multi-user webserver. I occasionally log in as root to do maintenance and upgrades. I have found that it's easier to use the SysAdmin account in certain situations because of permissions issues and ease of installing upgrades.
    I'll often log in under my username and then su to root. Recently (yesterday) I noticed that "su" didn't work anymore when I used my normal username.
    There are sometimes that I will log onto the machine as System Admin and usually via the terminal (console) I can log in as any of the other accounts by doing
    su <username>
    this also doesn't work anymore. I get the error:
    shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
    I have two servers set up this way. One works the way it should, the other one has this problem. The only difference I can see is in roots bash profile but I'm not sure why they are different on each machine.
    Also when logged in as System Admin, I should be able to turn off "allow user to administer computer" on my regular account but it's grayed out. On the other similarly configured machine, under the same conditions, I can. I'm not sure why I can do it on one and not the other.
    I've tried turning off enable root via Directory Utility but that didn't fix the issue.

  • Time Machine Just Doesn't Work Anymore

    I was a happy Time Machine (with Time Capsule) user for months. But it just doesn't work anymore. It takes longer than an hour to do every hourly backup so it is backing up 24 hours a day. It finds hundreds of thousands of files changed every hour and tries to back them up. Finders says only tens of files have been modified all of today. I have tried rebuilding my spotlight indexes, repairing my Time Capsule with Disk Utility and starting over with a brand new backup. But it just backs up hundreds of thousands of files every hour. So I am turning off Time capsule since it is clearly broken. If anyone has any suggestions at all I would welcome them.

    Marcia,
    Consider the following, it might give you some ideas:
    Time Machine performs backups at the file level. If a single bit in a large file is changed, the WHOLE file is backed up again. This is a problem for programs that save data to monolithic virtual disk files that are modified frequently. These include Parallels, VMware Fusion, Aperture vaults, or the databases that Entourage and Thunderbird create. These should be excluded from backup using the Time Machine Preference Exclusion list. You will, however, need to backup these files manually to another external disk.
    One poster observed regarding Photoshop: “If you find yourself working with large files, you may discover that TM is suddenly backing up your scratch disk's temp files. This is useless, find out how to exclude these (I'm not actually sure here). Alternatively, turn off TM whilst you work in Photoshop.” (http://discussions.apple.com/thread.jspa?threadID=1209412)
    If you do a lot of movie editing, unless these files are excluded, expect Time Machine to treat revised versions of a single movie as entirely new files.
    If you frequently download software or video files that you only expect to keep for a short time, consider excluding the folder these are stored in from Time Machine backups.
    If you have recently created a new disk image or burned a DVD, Time Machine will target these files for backup unless they are deleted or excluded from backup.
    Installing new software, upgrading existing software, or updating Mac OS X system software can created major changes in the structure of your directories. Time Machine will backup every file that has changed since the installation.
    Files or folders that are simply moved or renamed are counted as NEW files or folders. If you rename any file or folder, Time Machine will back up the ENTIRE file or folder again no matter how big or small it is.
    George Schreyer describes this behavior: “If you should want to do some massive rearrangement of your disk, Time Machine will interpret the rearranged files as new files and back them up again in their new locations. Just renaming a folder will cause this to happen. This is OK if you've got lots of room on your backup disk. Eventually, Time Machine will thin those backups and the space consumed will be recovered. However, if you really want recover the space in the backup volume immediately, you can. To do this, bring a Finder window to the front and then click the Time Machine icon on the dock. This will activate the Time Machine user interface. Navigate back in time to where the old stuff exists and select it. Then pull down the "action" menu (the gear thing) and select "delete all backups" and the older stuff vanishes.” (http://www.girr.org/mac_stuff/backups.html)
    *TechTool Pro Directory Protection*
    This disk utility feature creates backup copies of your system directories. Obviously these directories are changing all the time. So, depending on how it is configured, these backup files will be changing as well which is interpreted by Time Machine as new data to backup. Excluding the folder these backups are stored in will eliminate this effect.
    *Backups WAY Too Large*
    If an initial full backup or subsequent incremental backup is tens or hundreds of Gigs larger than expected, check to see that all unwanted external hard disks are still excluded from Time Machine backups.
    This includes the Time Machine backup drive ITSELF. Normally, Time Machine is set to exclude itself by default. But on rare occasions it can forget. When your backup begins, Time Machine mounts the backup on your desktop. (For Time Capsule users it appears as a white drive icon labeled something like “Backup of (your computer)”.) If, while it is mounted, it does not show up in the Time Machine Prefs “Do not back up” list, then Time Machine will attempt to back ITSELF up. If it is not listed while the drive is mounted, then you need to add it to the list.
    *FileVault / Boot Camp / iDisk Syncing*
    Note: Leopard has changed the way it deals with FileVault disk images, so it is not necessary to exclude your Home folder if you have FileVault activated. Additionally, Time Machine ignores Boot Camp partitions as the manner in which they are formatted is incompatible. Finally, if you have your iDisk Synced to your desktop, it is not necessary to exclude the disk image file it creates as that has been changed to a sparsebundle as well in Leopard.
    Let us know if any of this helps.
    Cheers!

Maybe you are looking for

  • I just restored an iPhone 5 from an iPhone 4S. Missing Notes, Photos..

    This really *****. I had to buy a new iPhone 5 because my 4S went through the washing machine. Luckily, I thought, I had just backed it up a couple weeks ago through plugging into iTunes. But, none of my photos are on the phone now (nor do they appea

  • Help - itunes does not open when my ipod is hooked up to my computer

    i downloaded the newest version of itunes. everytime i plug my ipod into my computer itunes does not open but instead a program saying "new hardware detected" and it asks to search the system and when you do that it detects my ipod as a camera. also

  • Can't turn off echo/reverb in GarageBand

    I cannot seem to turn off the echo and reverb effects in GarageBand '08 on my iMac. The boxes for them are unchecked on the "Real Instrument" track, and I've also unchecked them on the Master track, but the effects are still on. What could be causing

  • Changing iCloud ID to match new Apple iD

    Hello, I recently changed my name and made a new email account, so I've been slowly trying to change my IDs to match. I changed my Apple ID to my new email, but when I attempted to switch my iCloud information to match the new Apple ID in "settings"

  • Mac Pro CPU Upgrade

    I am somewhat new to the Mac World. With a Mac Pro 2.66 dual core (OS-10.5), can one upgrade to 3.0 quad core CPU's ? Assuming one can find the CPU's. Thanks, Ellen