Sophos disappears from menu

sophos disappears from menu, only stays up alittle while ,also disappears after updating, even changing thru user groups for startup

Unless you're required to install Sophos by an organization, I suggest you remove it according to the developer's instructions. It serves no real purpose and is likely to cause instability and poor performance.

Similar Messages

  • View disappeared from menu bar in word and i don't know how to get back

    I clicked the wrong button and view disappeared from menu bar in word and I can't get it back.  I've tried to reinstate it from system preferences and I've tried everything in the help menu. Please help

    Hi Karen,
    Work through this and you should be able to get it back: http://support.microsoft.com/kb/2026220

  • Just installed OSX Mavericks.Bluetooth disappeared from menu bar and system preferences. I have a magic mouse and my IMac no long recognizes it as such, nor can I scroll with it. What's wrong?

    Just installed OSX Mavericks. Bluetooth disappeared from menu bar and system preferences panel. I use a Magic Mouse but my iMac no longer recognizes it as such, and I can no longer use it to scroll screen. What happened?

    Since Mavricks installed: My Spotlight icon disappears from the menu bar, but the space stays there. If I click on the blank space where the
    spotlight icon is supposed to be - the spotlight menu opens. So, for me, the icon is there, it works except that it is invisible at times. IF I do a re-start it is there. If I let the computer set, sleep or other wise stay on for days, the icon will hide and re-appear at random.

  • Icon airport disappeared from menu bar,only see grey space

    icon airport disappeared from menu bar,only see grey space

    Open your System Preferences and go to the "Network" pane. Enable "Show Wi-Fi status in Menu Bar".

  • Recordsets disappear from menu when adding mysql_query ("SET NAMES 'utf8'"); below the connection in php

    I hope someone can help with this. I'm trying to create a
    dynamic site using dreamweaver CS3, with php5 and mysql5 in the
    background but I'm having difficulty with recordsets disappearing
    from the server behaviour menu when tweaking the code to allow set
    characters or set names for utf8.
    For a while, I've been having a problem getting my
    dynamically generated master list pages (eg lists of jobs) to
    display international characters like an accented french e (and
    other languages) and for these to display correctly when viewed in
    phpmyadmin also. So, I've placed headers at the top of the page for
    utf8 and created the content metatag for utf8 in the page code.
    Where needed I've added ENT_QUOTES utf etc for htmlentities and
    added accept-charset utf-8 in the <form> action area.
    (one thing I haven't done in the form action area is add
    <enctype="multipart/form-data">, but I'm not sure if this
    will make any difference)
    In the backend, the innoDB database is collated and built
    using utf8_unicode_ci. I'm on a shared host -so can't directly
    access php.ini or adjust the connection settings through
    phpmyadmin. But I can write .htaccess files (currently with the
    defaultcharset set to utf8 also).
    At this point - all list pages display the correct characters
    when retrieved from the database - indicating that the headers are
    working. But - in phpmyadmin the letters are garbled, and garbled
    on return on update forms (content management). I solved this by
    adding the &#xxxx; equivalents in insert and update forms to
    display the text correctly on the list pages - but again it's not
    convenient to see all of this in phpmyadmin, as I'd like to be able
    to read it there as it should be, and to dispense with the need to
    add &#xxxx references on the insert and update forms.
    So...a bit of searching, and I read that in order for the
    international characters to display in phpmyadmin correctly, I
    needed to amend my php page code so that for all instances where I
    see the connection to the database, before the SELECT, INSERT and
    DELETE queries, I need to add either mysql_set_charset('utf8',
    $connection) or use three lines of code referencing mysql_query SET
    NAMES, SET CHARACTER SET and SET COLLATION_CONNECTION for utf8.
    I did that, and it removed all of my recordsets in the
    sidebar menu! Not too good. I'm left with a task of rebuilding
    pages now.
    So I placed the mysql_set_charset line in the connection.php
    file in the DW Connections folder below the connection there
    instead. [I didn't precede the mysql etc line with a $ sign - I
    wonder if that's the issue?]
    With this change I could use the Insert forms to add the
    international characters directly into the database and see through
    phpmyadmin that all was hunky dory. But then the problems came with
    first loads of the master list page.
    So, I can get international characters into the database now
    (which is a step in the right direction for me), using an insert
    form on the website, but I still can't get the international
    characters to display on the returned page on first loading eg on a
    list of jobs. Note that the detail pages display fine when clicking
    the master links, and when I return from the detail page back to
    the master list - the characters are ok. They just don't seem to
    display when the master page loads for the first time which is
    really perplexing me.
    I suspect that I need to add the mysql_set_charset line below
    the $connection and before the selects, inserts etc at all
    instances on the webpage, but this just removes the recordset from
    the menu, so this doesn't seem to be a good option.
    Can anyone point me in the right direction as I'm been stuck
    on this for ages. It may be something simple like adding $ in front
    of the mysql_query, but then again maybe not.
    I've tried other forums - but people seem to be content with
    viewing but not offering assistance. I don't believe that what I'm
    doing here hasn't been done before....all I want is for my pages to
    display international characters and for these to display correctly
    in phpmyadmin so that when I insert, update and delete records
    using webforms I don't have to resort to using &#xxx inserts.
    Help please!

    .oO(08Green)
    > So...a bit of searching, and I read that in order for
    the international
    >characters to display in phpmyadmin correctly, I needed
    to amend my php page
    >code so that for all instances where I see the connection
    to the database,
    >before the SELECT, INSERT and DELETE queries, I need to
    add either
    >mysql_set_charset('utf8', $connection) or use three lines
    of code referencing
    >mysql_query SET NAMES, SET CHARACTER SET and SET
    COLLATION_CONNECTION for utf8.
    Usually you only need to send a SET NAMES 'utf8' right after
    the
    connection to the DB has been established. That way all data
    that is
    transferred between the DB and your script will be handled as
    UTF-8.
    > I did that, and it removed all of my recordsets in the
    sidebar menu! Not too
    >good. I'm left with a task of rebuilding pages now.
    >
    > So I placed the mysql_set_charset line in the
    connection.php file in the DW
    >Connections folder below the connection there instead. [I
    didn't precede the
    >mysql etc line with a $ sign - I wonder if that's the
    issue?]
    I've never used mysql_set_charset().
    Here in my applications it always works like this:
    * the default charset in my InnoDB tables is ISO-8859-1, I
    only use
    UTF-8 in the columns that really need it (text data, but not
    INT or
    DATE columns)
    * SET NAMES 'utf8' at the beginning
    * all files (HTML and PHP) are encoded as UTF-8 without BOM
    * all pages delivered as UTF-8 (my pages are
    script-generated, so I use
    an appropriate header() call to define the content-type and
    encoding)
    That's it. Oh, and I don't use phpMyAdmin ...
    > With this change I could use the Insert forms to add the
    international
    >characters directly into the database and see through
    phpmyadmin that all was
    >hunky dory. But then the problems came with first loads
    of the master list
    >page.
    In the first part of your posting it sounded as if it worked
    almost
    correctly, before you tried to fix the broken phpMyAdmin
    appearance.
    Is that correct?
    > So, I can get international characters into the database
    now (which is a step
    >in the right direction for me), using an insert form on
    the website, but I
    >still can't get the international characters to display
    on the returned page on
    >first loading eg on a list of jobs.
    They did display correctly first, didn't they? So it seems
    that you
    broke your script just in order to fix some PMA problem.
    Revert that.
    Make your script work for normal input/output from/to a
    website first
    and don't worry about PMA for now.
    What do you need PMA for BTW? It may have many other issues
    as well and
    should only be used if really necessary or if you're not
    familiar with
    the command line interface. The only thing that we are using
    it is to
    get a dump from a remote DB, where I don't have shell access
    to call
    mysqldump directly (yes, I could also write a little PHP
    script for
    that, it's already somewhere on my TODO). But here on my
    local system I
    always use the MySQL command prompt if I have to directly
    work on some
    tables or to import the dump from remote.
    Anyway, if you need PMA, your might try their group or forum.
    I'm sure
    there's an FAQ as well. Maybe it's just a configuration
    issue.
    > I've tried other forums - but people seem to be content
    with viewing but not
    >offering assistance. I don't believe that what I'm doing
    here hasn't been done
    >before....all I want is for my pages to display
    international characters and
    >for these to display correctly in phpmyadmin so that when
    I insert, update and
    >delete records using webforms I don't have to resort to
    using &#xxx inserts.
    The bug here is PMA itself. ;-)
    Micha

  • Search Disappears from Menu (after expanding Mini Player)

    Hi there I'm on Android 4.3 mobile using Spotify version 3.1.0.1113.  The Search option disappears from the main top left menu every time I use the app. I have narrowed it down to happening right after expanding the mini-player from the bottom of the screen.  I can open the app and use it normally, but once I click the new mini-player (the new version that allows swiping to change songs) to bring up the main player screen, Search will disappear from the top left menu, leaving just Browse/Activity/Radio/etc.  I can bring back Search by closing the app and reopening it.  I have tried other 3.1 versions, including Betas, and this always happens. Any ideas? Thanks  

    After you search for the artist, *Ctrl click* the arrow after the artist name to see all items by that artist in yoru library, then play and open the mini player.
    Better yet, instead of search, simply turn on the browser (iTunes menu View -> Column browser) then select the Artist to see everything by that artist.

  • "Share" word has disappeared from menu bar - can't burn DVD

    I know I burned a DVD in the distant past by clicking on "Share - burn DVD" in the menu bar but the word "Share" seems to have disappeared from my menu bar. I upgraded from iPhoto 5 to 6 (I think). What happened to the "Share" word and how do I get it back? If I reinstall from my original discs, won't I get the iPhoto 5 version?? Will my recent photos disappear?? Thanks for any help.

    When you're in iPhoto go to the iPhoto menu in the upper left hand corner of the menu bar and select About iPhoto. That will give you the version of iPhoto you have.
    If you tried to run an iPhoto 6 updater on iPHoto 5 that may be the reason you're having trouble with iPhoto. Check the version and post back.
    If you have iPhoto 6 then go to the View->Show in Tool Bar menu option and see if what you want is checked or unchecked. Those items will show up in the bottom tool bar.
    Do you Twango?

  • Airport icon disappeared from menu bar

    For one of my two Users, the Airport icon disappeared from the menu bar. Now I cannot turn Airport on or off. Internet Connect only shows the internal modem. Restarting the computer did not solve the problem.
    It has worked well until yesterday, all of a sudden the icon was gone. Airport Admin does work, and it restarts the base station when I change something (I changed the password just to test this). So the hardware is working.
    If I log on as a different user, the icon is there, and everything works as normal. It therefore seems to be a set-up problem at one of the users.
    I would appreciate any help on this one.
    Thanks in advance,
    Maarten

    Maarten,
    Welcome to Apple Discussions!
    Go to Apple -> System Preferences -> Network. Select the AirPort Entry from the list of Network Devices, and click the "Configure..." button.
    If not already there, navigate to the "AirPort" tab, and check the "Show AirPort status in menu bar" checkbox at the bottom of the window.
    This should put it back up there.
    Let me know if you need more help.
    Brian

  • How Do I Make My Name Disappear From Menu Bar?

    I use Mavericks OS X 10.9.3.  How do I make my name disappear from the Menu Bar?

    Or select to show the icon instead of your name in case you want to keep the ability to use FUS while gaining precious menu bar space.

  • Spotlight - disappeared from menu bar and constantly crashing

    I think I need some urgent help here.
    I have lost spotlight from the menu bar. Sometimes I have a blank space where the Icon should be but
    then that disappears.
    I try to launch an application but each time I get the spinning beach ball and the desktop goes off
    the screen only to return a few seconds later and back to square one.
    I am unable to access the logs because of the constant crashing
    In the console a crash report is being written every 2-3 seconds which says EXC-BAD-ACCESS- (SIGBUS)
    KERN-PROTECTION-FAILURE at 0x000000000 etc.
    I have tried repairing permissions, repairing the disk, rebuilt the disk using DiskWarrior, restarting
    and trying to replace spotlight with Time Machine all to no affect.
    Can anyone offer some layman's advice or suggestions as how I can get out of this ?loop?
    All help will be appreciated
    Alan
    31-1-09

    Hello r:
    You have already accomplished hat I would have suggested as possible fixes.
    I think you have two choices:
    1. Do a complete restore of your system from an older TM backup (when things were working).
    2. Do an archive and install (That would be my first choice, with TM as a backup).
    Barry

  • Help, my Clock has disappeared from menu bar, how can I get it back ?

    Can someone please tell me how to return my clock to the menu bar directly above the Mac HD icon?
    I went to system preferences, clicked clock, clicked the date and Time tab and found it set on Show date and time, View in menu bar, view as analog. Under that it said show AM / PM and Show day of the week. These last two selections were printed in pale gray, not in black. On the lower left corner of this date and time tab, was an open lock. I clicked it closed in hopes this action would return my clock to the menu bar. It did not. So I clicked the lock open again. I would very much appreciate someone telling me how to return my clock to the menu bar. Thank you in advance

    You should consider updating to 10.4.11,
    But perhaps your Mac needs a bit of TLC:
    Repairing permissions is an important part of regular maintenance, and should always be carried out both before and after any software installation or update.
    Go to Disk Utility (this is in your Utilities Folder in your Application folder) and click on the icon of your hard disk (not the one with all the numbers).
    In First Aid, click on Repair Permissions.
    This only takes a minute or two.
    Background information here:
    http://docs.info.apple.com/article.html?artnum=25751
    and here:
    http://docs.info.apple.com/article.html?artnum=302672
    An article on troubleshooting Permissions can be found here:
    http://support.apple.com/kb/HT2963
    If you were having any serious problems with your Mac you might as well complete the exercise by repairing your hard disk as well. You cannot do this from the same start-up disk. Reboot from your install disk (holding down the C key). Once it opens, select your language, and then go to Disk Utility from the Utilities menu. Select your hard disk as before and click Repair.
    Once that is complete reboot again from your usual start-up disk.
    More useful reading here:
    Resolve startup issues and perform disk maintenance with Disk Utility and fsck
    http://support.apple.com/kb/TS1417

  • All fonts disappearing from menu?

    Has anyone else observed this irritating behaviour? 
    After a variable amount of running time all the fonts in my font menu become "white-on-white" and thus effectively disappear.  The same applies to the variants (bold, regular, italic, etc.).
    The fonts are still there -- if you click on one the menu disappears and the font shows up in the proper place and the text is the correct font.  Of course that doesn't help much if you can't remember which font is represented by the blank space you are clicking on.
    The only way I've found to remedy this problem is to quit and restart InDesign.
    Does anyone have an explanation or a solution?
    InDesign CS5 v. 7.0.4

    see Replace Your Preferences

  • Day of the week keeps disappearing from menu bar

    This obviously isn't a life and death problem, but when I select "Show day of the week in the menu bar" in System Settings--(approximate translation, my system's in Russian), the day of the week will show up for a few moments and then vanish. I like having the day of the week there. Any idea how to get it to stick?

    hey, I've found a way to fix it at last
    here's what I just did step by step:
    1)downloaded a com.apple.menuextra.clock.plist file from a Snow Leopard machine to see the difference and replaced my file on Lion with this one. to display the day of the week the file should look like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
              <key>DateFormat</key>
              <string>E d MMM  H:mm</string>
              <key>FlashDateSeparators</key>
              <false/>
              <key>IsAnalog</key>
              <false/>
    </dict>
    </plist>
    where "E" I guess is responsible for the day.
    2) went to the preferences of com.apple.menuextra.clock.plist and made it protected (just marked a checkbox in the file's properties window)
    3) deleted the com.apple.menuextra.clock.plist.lockfile (located in the same folder, as the plist we edit)
    4) locked the changes in time/date system settings and tried to unlock it a few times entering a wrong password (kinda strange, dunno why I did that, just felt like it )
    so now after I reboot, log out with or without opened windows restoration I still see the day of the week

  • Videos disappeared from menu...!

    My iPod (60 GB) was working fine playing back the videos I bought at the I-tunes music store (4 tv episodes and 3 music videos). While visiting my parents at Christmas I hooked my iPod up to their Powermac to recharge it and also downloaded some photos I'd imported from my camera (using the iPod photo adapter) to their computer.
    After unmounting the iPod and disconnecting it from the computer, the VIDEO menu is all screwed up. Instead of showing my limited video selection, it shows my entire music library (but none of my videos). The music library actually works from within this submenu, so it seems that there's a software bug that is redirecting the iPod operating system to the MUSIC menu when I choose the VIDEO menu.
    Is this a known problem? Is it related to hooking up my iPod to a computer other than its home base? (Obviously I answered "No" to the query on my folks' Mac as to whether I wanted to erase my iPod's contents and replace it with their library...)
    I've seen people with similar problems being advised to erase the entire contents of their iPod and do a reload: that's not an option, I'm not at home with my computer. More importantly, I'm not looking just for a temporary fix, but to figure out if this is an intractable problem with the iPod, because it largely defeats its purpose if I can't use it anywhere away from home.

    Tim, that's a good thought.
    The Mac I hooked the iPod up to is running iTunes 4. However, I did not sync the iPod to it, I answered "No" to all queries to sync to the computer.
    This of course doesn't mean that the presence of iTunes 4 on the Mac didn't screw up the iPod, but I think that would have to be considered a bug that should be fixed since you ought to be able to recharge your iPod on any computer's USB port without screwing up your library regardless of what version of iTunes it is running as long as you don't attempt to sync the two machines. Hopefully someone from Apple will look into whether this is indeed the problem and if so, fix it.
    Interestingly, I discovered my music videos and tv shows under the /Music/Playlists/Purchased (but NOT my purchased music!), and I can play the music videos back that way, but it only plays the audio and the first frame of the video as if it were album art. The tv shows won't play back at all, apparently.
    I suspect you are correct that iTunes 4 accessed the iPod without permission and screwed things up. Hopefully Apple can fix that since I regularly visit people who don't keep all their software updated to the latest versions due to having dial-up internet or other reasons (which, after all, aren't really my business).
    Thanks for the help.

  • Blackberry Messenger disappeared from menu but appears in App world HELP!

    Hi everyone
    Unfortunately i tried to get help from Blackberry Help on Twitter. but they didnt get back to me.
    BBM can not be found on my device, I cant use it, I cant get messages, I cant find it at all (I've looked everywhere!)
    I opened Blackberry App World, it wouldnt let me download as it says its installed. I tried to delete it but the delete option doesnt appear when I click on menu.
    I looked in settings to see if I could delete it from there, but I couldnt find it for some reason. What can I do? its so annoying!

    Let's see if we can get it back for you so you don't have to be annoyed anymore.
    If you've looked everywhere and you still can't find it, let's get it deleted the easy way....without having to look for it at all.  Plug your phone in to your PC and open BlackBerry Desktop Software.  Once your phone has been recognized, click Applications on the left side.  If BBM is on your phone, it should appear in this list with a " - " minus sign beside it.  Click that minus sign then click Apply at the bottom of the BDS.  That should get rid of the app.
    In order to reload it to your phone, you can either follow the path I just described but click the " + " plus sign or you can go to App World on your phone, proceed to My World, click the Installed header and change it to Uninstalled and reload it from there.
    Please let us know if that solves your dilemma. 
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

Maybe you are looking for