Odd alternative access mappings warning appearing Event Application Log

Hello,
I see these odd alternative access mappings warnings in the application log.  These warning occur on a SharePoint 2013 site that is in internal. I don't want to add http://go.microsoft.com to the alternative access mappings.  How can I determine
where this warning is coming from?  What does it mean?  How can resolve this warning?  Could it be a problem with DNS? 
There are other warnings from other external URLs showing up in events.  I am wondering if this may causing credential pop-ups which users seem to experience at random times.  
Log Name:      Application
Source:        Microsoft-SharePoint Products-SharePoint Foundation
Date:          5/12/2014 9:25:21 AM
Event ID:      8059
Task Category: Configuration
Level:         Warning
Keywords:      
User:          PBTF\account
Computer:      server
Description:
Alternate access mappings have not been configured.  Users or services are accessing the site http://thoth.pbtf.com with the URL http://go.microsoft.com.  This may cause incorrect links to be stored or returned to users.  If this is expected,
add the URL http://go.microsoft.com as an AAM response URL.  For more information, see: http://go.microsoft.com/fwlink/?LinkId=114854"/>
Paul

this is really odd that you are getting the warning for the "http://go.microsoft.com". Typically this error is when you hitting the server with IP address or Server Name, or any other address which is not registered into the AAM. Usually its easy to
ignore in many cases.
may be somebody put the host header entries on his machine to map this address to the site.
check this one for more help:
http://social.technet.microsoft.com/Forums/sharepoint/en-US/0fcb4f4e-0eaf-42a0-ada7-6ff19da3fac3/event-id-8059-problem-is-sharepoint-foundation-is-referencing-an-alternate-access-mapping-that?forum=sharepointadminprevious
Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

Similar Messages

  • Strange Alternative access mappings have not been configured warning

    I have a SharePoint 2013 server.
    Created a Web Application https://root.domain.com
    Created a Root Site Sollection https://root.domain.com
    Created a Host Named Site Collection https://site1.domain.com
    This is all created with these PS commands:
    $dbname = "WSS_Content_Root"
    $pool = "Root"
    $name = "Root"
    $site = "https://site1.domain.com"
    $sitedb = "WSS_Content_Site"
    $poolacc = "domain\webappaccount"
    $owner = "domain\adminaccount"
    $root = "https://root.domain.com"
    #create web app.
    $ap = New-SPAuthenticationProvider –UseWindowsIntegratedAuthentication
    $wa = New-SPWebApplication -URL $root -DatabaseName $dbname –ApplicationPool $pool -Name $name -Port 443 -ApplicationPoolAccount (Get-SPManagedAccount $poolacc) -AuthenticationProvider $ap -SecureSocketsLayer
    #create empty root site coll.
    New-SPSite $root -Name 'Portal' -Description 'Portal on root' -OwnerAlias $owner -language 1033 -Template 'STS#0'
    #create database for host named site coll.
    New-SPContentDatabase $sitedb -WebApplication $root
    #create host named site coll.
    New-SPSite $site -OwnerAlias $owner -HostHeaderWebApplication $wa -Name "Home" –Template "STS#0" -Language 1033 -ContentDatabase $sitedb
    Now the problem:
    In the eventvwr i get a warning 8059
    Alternate access mappings have not been configured.  Users or services are accessing the site https://root.domain.com with the URL https://10.1.71.41.  This may cause incorrect links to be stored or returned to users.  If this is expected, add
    the URL https://10.1.71.41 as an AAM response URL.  For more information, see: http://go.microsoft.com/fwlink/?LinkId=114854"/>
    How can i resolve this warning, adding the IP as an AAM doesn't seem right.?
    Strange thing is that the warning talks about the ROOT and an IP as AAM.
    Please any guidance to fix this rather strange issue

    Hi,
    Using a Web App with no Header specified is good for Host Named Sitecollections(you will not need to add the url of every HNSC to every WFE IIS Binding manually). The IIS site of your web app will serve anything that comes on the IP interface, on same protocol
    and port. As shown in my screenshot it will accept http://<rootsiteUrl>:80, http://<ServerIP>:80,http://<HNSCurl>:80
    The cert. has nothing to do with this but maybe the LB /TMG is reaching the WFEs via https://<ServerIP> and it is generating this warning. However if there is no Host Header(in the web app) and no Host will be specified in the IIS so the requested
    https://<ServerIP> will be valid and will serve the root SC but it will generated the warning. You have to be sure that nothing is reaching the WFE by https://<ServerIP> and you will not generate the warning. 
    Here is simulation on my Dev env.

  • Warning message into Application log of Service request

    Hi Experts,
    I have a requirement where I am using Event handlers(CRMV_EVENT) to redetermine partners of a service request whenever certain values are changed in the transaction CRMD_ORDER.
    Partners will be retrieved from a custom table.
    In any circumstances, if the partners cannot be determined then we need to push a WARNING message stating that "Partners can not be determined, pls maintain the values in the custom table'.
    For this purpose I am using the function module CRM_MESSAGE_COLLECT with the following parameters, but still I am not able to see the same into the Application log of the Service request that is going to be created.
    CALL FUNCTION 'CRM_MESSAGE_COLLECT'
      EXPORTING
        iv_caller_name         = 'ORDERADM_H'
        IV_REF_OBJECT          = iv_header_guid
        IV_REF_KIND            = 'A'
       IV_LOGICAL_KEY         = '0001'
        IV_MSGNO               = '001'
        IV_MSGID               = 'ZSP'
        IV_MSGTY               = 'W'
      IV_MSGV1               = SY-MSGV1
      IV_MSGV2               = SY-MSGV2
      IV_MSGV3               = SY-MSGV3
      IV_MSGV4               = SY-MSGV4
        IV_MSGLEVEL            = '1'
      IV_FIELDNAME           =
      IV_ACTION              =
        IV_LOG_HANDLE          = lv_log_handle
        IV_CUMULATE            = 'X'
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Do I missed in passing of any additional parameters?
    Can any one of you have encountered the same problem and solved this, pls through some light on me too(if possible with block of code).
    Thanks in advance.

    Hi,
    Here is the block of code that I used to push a message in to Application log.
    Push your message into a variable called dummy and then call the below mentioned function module.
    DATA:        lv_dummy(254)    TYPE  c,            "#EC NEEDED
              MESSAGE w052(sppf_media) WITH text-001
                                            text-002
                                        INTO lv_dummy.
              CALL FUNCTION 'CRM_MESSAGE_COLLECT'
                EXPORTING
                  iv_caller_name = 'ORDERADM_H'
                  iv_ref_object  = iv_header_guid
                  iv_ref_kind    = lc_ref_kind_a
                  iv_msgno       = sy-msgno
                  iv_msgid       = sy-msgid
                  iv_msgty       = sy-msgty
                  iv_cumulate    = lc_x
                IMPORTING
                  ev_msgty       = lv_msgtyp
                  es_msg_handle  = gv_msghandle
                EXCEPTIONS
                  not_found      = 1
                  appl_log_error = 2
                  OTHERS         = 3.
              IF sy-subrc <> 0.
                MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                       WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
              ENDIF.
            ENDIF.
    Hope this helps to resolve your issue.
    Regards,
    Usha.

  • Urgent help needed on writing errors in to windows events application logs

    Hi all,
    we have web based application. Whenever there is critical errors encounters in our application we need to write that errors in to windows
    event viewer, application logs. Please help me on how to do this.
    do we have any specific API for this ?
    thanks in advance
    Shivakumar

    You should use WinAPI to do so. Asking in JNI forum (or specialized WinAPI forum) for more details is good idea I think.

  • PrintStackTrace not appearing in application.log?

    We are having a difficult time locating the Stack Traces that we expected to see in the application.log of our J2EE Web Applications. Within our servlets the typical try/catch sequence is something like:
    try {
    // do some stuff that can throw an exception
    } catch(Exception ex) {
    ex.printStackTrace();
    ErrorBean errorBean = new ErrorBean(
    (ex.getMessage()!=null) ? ex.getMessage() : ex.getClass().getName(),
    request.getRequestURI(),ex);
    // Push ErrorBean into request scope for forward to Error Handler
    request.setAttribute(Constants.ERROR_KEY,errorBean);
    return (mapping.findForward("unexpectedError"));
    However, we can't find the output from the ex.printStackTrace() anywhere. It doesn't appear to be laying in the application.log. Any ideas? Is there something we should configure somewhere to send the stacktraces to application.log?
    Arghh....any help would be greatly appreciated.
    Bob
    Bob

    Ah...yes...they were right where you said they would be. However, is there some configuration that I could do to put the console messages (System.out.println() and, more importantly for us, ex.printStackTrace()) in the global-application.log so we would at least get some concept of the time of the exceptions? As it stands now we can see the actual exceptions in a file named after our OC4J instances (./ora9ias/opmn/logs/camsu.default_island.1) and some logging stuff with Timestamps from the Struts framework in the file the application.xml sends it to(<file path="../log/global-application.log"/>) but it is difficult to match the exceptions up with the servlet requests that caused them due, mainly, to lack of timestamps. Is there a way to get the stuff that presently goes to the opmn/logs file into the global-application.log?
    Regardless, I will definitely follow up the the Log4J stuff. Maybe that's where the magic bullet is. Thanks so much for your reply. This was giving me fits.
    Bob

  • Alternative Access Mappings (AAM) issue accessing from internal and external URL's

    Hi,
    We have SharePoint 2010 with couple site collections. Our farm has following URLs (AAM):
    For internal access:
    intranet.company.local - all sites,
    mysite.company.local   - my sites.
    For external access:
    extranet.company.com - all sites,
    mysite.company.com   - my sites.
    Then we access extranet.company.com using domain credentials on some sites we get authentication request for mysite.company.local. This is because we use some web parts that reference to My Sites.
    But why we are asked credentials for mysite.company.local and not for mysite.company.com
    if we access extranet.company.com, how this can be changed?
    Thanks

    Hi jori5,
    Please set the intranet.company.com and mysite.company.com for the Default zone, then check results again.
    Default Web Application
    Default  https://extranet.company.com
    Internet http://intranet.company.local
    My Site Web Application
    Default https://mysite.company.com
    Internet http://mysite.company.local
    Thanks
    Daniel Yang
    TechNet Community Support

  • HT5030 whem installing itunes i get this message "this installation package could not be opened. Verifiy that the package exists and that you can access it, or contact the application vendor to verify that this is a valid windows installer package"

    whem installing itunes on my mums new computer which is windows 7 i get this message everytime "this installation package could not be opened. Verifiy that the package exists and that you can access it, or contact the application vendor to verify that this is a valid windows installer package"

    Let's check your Windows system.
    1.  Have you done all the important windows updates and service Packs on your system.  If not do it now.  START button, type in Windows Update and ENTER.  Select 'CHECK FOR UPDATES'
    2.  Let's check your Windows system files for possible file corruption
    SCAN and repair possible Windows system file corruption:
    Go to command prompt (START/ALL PROGRAMS/ACCESSORIES right mouse click "command prompt" and choose "Run as Administrator"
    type in
    sfc /scannow
    let Windows fix any system files that need to be repaired.
    Restart the computer if it did actually repair any files.
    3.  Check your system for possible Malware.  But you have to do it in WIndows Safe Mode.
    Start your computer in "Safe mode with networking", go to this link download a free version of Malwarebyte.
    http://www.malwarebytes.org/products/malwarebytes_free
    Install and perform update immediately, then do a full SCAN. Remove malware if it indeed finds any. Restart computer to regular windows to let Malwarebyte complete the removal.
    To start your computer in safe mode
    Press and hold the F8 key as your computer starts. You need to press F8 before the Windows logo appears. If the Windows logo appears, you'll need to try again by waiting until the Windows logon prompt appears, and then shutting down and restarting your computer.
    On the Advanced Boot Options screen, use the arrow keys to highlight the "safe mode with networking" option, and then press Enter. Log on to your computer with a user account that has administrator rights.
    When your computer is in safe mode, you'll see the words Safe Mode in the corners of your screen. To exit safe mode, restart your computer and let Windows start normally.

  • When i try to install iTunes onto my new computer, it says ""installation pkg could not be opened.  Verify that this pkg exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer pkg."

    When I try to install iTunes onto my new computer, it says "This installation package could not be opened.  Verify that this package exists and that you can access it or contact the application vendor to verify to verify that this is a valid Windows Installer package."  I can save iTunes onto my computer, but when I click run, this is the message that appears.  How do I get this thing installed?

    Hello annesmith1954,
    Thank you for using Apple Support Communities. 
    You can use the information in the following article to troubleshoot your installation issues with installing iTunes on your PC. 
    "Could not open key" message when installing iTunes or Apple components for Windows
    Regards,
    Jeff D. 

  • Access Scope Warning When Adjusting Mandatory Override Settings?

    Hi all,
    In my opinion, the access scope warning dialog should not appear when the user modifies mandatory override settings.
    Under "Class Properties" for a .lvclass
    Under "Item Settings"
    When modifying the settings of a dynamic dispatch VI
    If the user modifies one of the two checkboxes pertaining to mandatory override...
    Regardless of whether the access scope actually changes, a warning dialog appears, and selecting "Yes" seems to cause the IDE to mark unsaved changes for other classes in the class hierarchy chain.  The warning dialog should not appear when all the user does is set the state of the two checkboxes, and to me it doesn't make sense that all of the other classes now have to be saved.  (I claim some ignorance on the saving part, though -  it's just my intuition.)
    Does this make sense?
    Thanks,
    Mr. Jim

    This was consciously discussed when the dialog was added. We decided that it should appear. You may choose "no", but the option should be there. By setting the must override setting all the way down the tree, we felt we and our users would be less likely to introduce mistakes when refactoring to add or remove parent classes. There were times when this seemed like a good idea and so worth offering the option to automatically do it.

  • What action do I take when this error warning appears? Whilst executing onClick in Media Query Manag

    What action do I take when this error warning appears? Whilst executing onClick in Media Query Manager.htm, the following JavaScript error ocurred: At line 157 of the file "Macintosh HD: Application: Adobe Dreamweaver CS5>5: Configuration Commands: Media Query Manager.js": getDocumentDOM: Argument nember 1 is invalid
    Thank you

    You'll get better answers in teh DW forum...
    Mylenium

  • Notification : mds: (Warning) FMW: event:1 had an arg mismatch.  ac:2 am:51

    Hi,
    I have a notification in console log.
    18/07/12 08:30:22,589 mds: (Warning) FMW: event:1 had an arg mismatch.  ac:2 am:51
    What is origin of this notification ?
    Thanks

    After getting this mds warning message every time I save my document, the file showed a some point a very strange behavior in the finder.
    The file appears in it's container folder normally but then disappears by itself after a second or so.
    Clicking in another folder and then back to the first folder brings back the file for a few seconds then it disappears again. I have never seen anything like this.
    I looked into the folder with "ls -la" in the terminal, and the file was renamed "--" instead of it's original name.
    Here it is in path finder :
    fsck -fy shows no problem
    onyx cache cleaning, etc.. no problem
    virus check : no problem
    spotlight index rebuilted.
    This appends with this file even after save as, etc..
    I am a bit worried now. I have backups of this current work file, but the mds warning keeps coming out at every save.
    Yan

  • Access 2010 warn "System Resources Exceeded" when change machine

    My Access file has 1.2GB and need to run a lot of simple Update SQLs. The program run well on my old PC.
    I recently change the PC from Core 2 Due to I5-4570S. The Access
    warn "System Resources Exceeded" when running. I use the old PC to run and it is ok. 
    My old PC is E7500 2 GB ram, Win 7 (64bit) + Office 2010 (64bit). New PC is I5-4570S with 8GB ram, with same OS and Office. Why the system resources would exceeded on my new machine?
    I searched many websites for this and cannot find a well solution. Does anyone know how to solve it?
    I have posted this question on Access 2010 help forum before, please refer to:
    http://social.msdn.microsoft.com/Forums/office/en-US/60810447-2f18-452e-b752-c23bda4a67aa/access-2010-warn-system-resources-exceeded-when-change-machine?forum=accessdev

    I don't use ODBC. I use ADO with ACE connection string to connect database.
    The Access version of new pc is newer than my old pc already.
    I tried in different PCs with different setting and found that in 2GB ram, the program is stable. If 4GB or above, the error appeared. 
    The error does not appear at the same command all the time. It may not appear sometimes. If I try to compact the database and re-run the command, it may pass, but not always. 

  • I was clsoing Word and suddenly everything on my desktop opened - I had to close each one and then a page requesting guest access to Cisco appeared. I cannot access any of my websites or bookmarks now. What do I do - or what did I do?

    I was closing Word, was on my desktop page when suddenly all my windows on the desktop opened at once. I had to close each one and then a page requesting guest access to Cisco appeared. It required a password ( ? ) which I do not have. Now I cannot access any of my webpages or bookmarks, including mail etc. I have no idea what I might have done to cause this problem. I am not particularly savvy and don't know where to begin.

    daveynielsen wrote:
    So my question is... if you took the time to read this.. why in the world did everything stop working with wi fi and out of nowhere asked me to use a blackberry data service plan?
    Because, without THE BlackBerry Data Plan, you will only have use of your WiFi HotSpot browser, and that is that. No email, none of the RIM data application features like AppWorld or the BlackBerry Facebook application.
    It worked at first, because you probably had leftover provisioning Service Books from the previous owner, I am guessing (you mentioned "checked with my seller).
    To me, seems be working as suspected.
    daveynielsen wrote:
    Well, naturally i figured everything else would work on a wif connection.. like the iphone. Even though you dont have the 3G data plan one can still access email, web, and aps.
    Not quite, you must still have a data plan for the iPhone.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Biztalk 2009 Warning on application log

    I have a send port that has the WCF custom adapter that is storing data to SQL server and once I dropped the file in the receive location, the application log displayed a warning which is the following:
    The adapter failed to transmit message going to send port "LA_send_port_5010" with URL "mssql://TPA*****/OP*****/HiCo******?".
    It will be retransmitted after the retry interval specified for this Send Port. Details:"Microsoft.ServiceModel.Channels.Common.ConnectionException: A connection was successfully established with the server, but then an error occurred during the login
    process. (provider: TCP Provider, error: 0 - The specified network name is no longer available.) ---> System.Data.SqlClient.SqlException: A connection was successfully established with the server, but then an error occurred during the login process. (provider:
    TCP Provider, error: 0 - The specified network name is no longer available.)
       at System.Data.ProviderBase.DbConnectionPool.GetConnection(DbConnection owningObject)
       at System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection)
       at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection,
    DbConnectionFactory connectionFactory)
       at System.Data.SqlClient.SqlConnection.Open()
       at Microsoft.Adapters.Sql.SqlAdapterConnection.OpenConnection()
       --- End of inner exception stack trace ---
    Server stack trace: 
       at Microsoft.Adapters.Sql.SqlAdapterConnection.OpenConnection()
       at Microsoft.Adapters.Sql.ASDKConnection.Open(TimeSpan timeout)
       at Microsoft.ServiceModel.Channels.Common.Design.ConnectionPool.GetConnection(Guid clientId,
    TimeSpan timeout)
       at Microsoft.ServiceModel.Channels.Common.Design.ConnectionPool.GetConnectionHandler[TConnectionHandler](Guid
    clientId, TimeSpan timeout, MetadataLookup metadataLookup, String& connectionId)
       at Microsoft.ServiceModel.Channels.Common.Channels.AdapterRequestChannel.OnOpen(TimeSpan timeout)
       at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.OnOpen(TimeSpan timeout)
       at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
       at System.ServiceModel.Channels.CommunicationObject.Open()
    Exception rethrown at [0]: 
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage
    retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32
    type)
       at System.ServiceModel.ICommunicationObject.Open()
       at Microsoft.BizTalk.Adapter.Wcf.Runtime.WcfClient`2.GetChannel[TChannel](IBaseMessage bizTalkMessage,
    ChannelFactory`1& cachedFactory)
       at Microsoft.BizTalk.Adapter.Wcf.Runtime.WcfClient`2.SendMessage(IBaseMessage bizTalkMessage)".
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Christiane

    Hi Christiane,
    You can do two things:
    Check your SQL connection string:
    Your stack trace mentions that the error has occurred at:
    Microsoft.Adapters.Sql.SqlAdapterConnection.OpenConnection()
    So the SQL connectionstring and its format:
    Format:
     mssql://[Server_Name:Portno//DBName?InboundId=xyz
    Some examples:
    mssql://SQL-SERVER-1:50105//DbName?InboundId=xyz
    mssql://SQL-SERVER-1//DbName?InboundId=xyz
    Check the
    TCP
    is enabled:
    Since the error contains “A connection was successfully established with the server, but then an error occurred
    during the login process. (provider: TCP Provider, error: 0 - The specified network name is no longer available.)”
    Try the following:
    In your SQL Server you’re trying to connect,
    Go to All Programs >> Microsoft SQL Server 2008 >> Configuration Tools >> SQL Server Configuration Manager >> Select
    TCP/IP, Right Click on
    TCP/IP >> Click on Enable
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful.

  • Two error - certificate validation operation took X milliseconds & Alternate access mappings have not been configured

    Dear all,
    I have two questions on my SP2013 standard (on premise). They are very usual and I can find lots of work around and resolutino on web. But I cannot fix my environment and I am looking for more detail explaination if possible.
    At the beginning, I found there are lots of Critical error log in my SP App server every 1-2 minutes:
    A certificate validation operation took X milliseconds and has exceeded the execution time threshold. If this continues to occur, it may represent a configuration issue.
    My system doesn't have Internet access. After some research it happened to be SharePoint certificate CRL checking issue:
    http://support.microsoft.com/kb/2625048/en-us
    I applied BOTH resolustion but the error still throw.
    After more research, it seems Sharepoint will keep looking for
    http://crl.microsoft.com. Some discussion suggested to add a HOSTS line "127.0.0.1     crl.microsoft.com". I have added the line and now I see a new warning log:
    Alternate access mappings have not been configured.  Users or services are accessing the site
    http://domain.com with the URL
    http://127.0.0.1.  This may cause incorrect links to be stored or returned to users.  If this is expected, add the URL http://127.0.0.1 as an AAM response URL.
    I guess Sharepoint is trying to contact http://crl.microsoft.com to retrieve the crl. How can I resolve both error? Why Microsoft have this design knowing that many Sharepoint site are sit within Intranet?
    Thanks a lot.
    Mark

    Anything in the CAPI log?  It shouldn't be going to the internet anymore.
    Do you have loopback disabled?
    http://blogs.technet.com/b/sharepoint_foxhole/archive/2010/06/21/disableloopbackcheck-lets-do-it-the-right-way.aspx

Maybe you are looking for

  • IR COMPUTE OR QUERY?

    IM AM TRYING TO MAKE AN IR REPORT WITH AGING ON OPEN INVOICES. IN ONE COLUMN I HAVE NUMBER OF DAYS PAST DUE. NOW I NEED TO CASE THAT COLUMN IN AN IR AS FOLLOWS: CASE WHEN J > 119 THEN 120 WHEN J < 119 AND > 90 THEN 90 WHEN J < 89 AND > 60 THEN 60 WHE

  • My external hard drive stays on even after I turn off my iMac. Why?

    New 24" iMac (see below) I have connected my 800 Firewire LaCie 500 Gigabyte external hard drive and it works fine. However, it doesn't turn off after I have turned off my iMac! I used Tiger before this and the very same LaCie external drive always t

  • Margins print too big in pages

    I'm using an imac running 10.8.4 and the latest version of Word and the latest version of Pages. It's a long story.  I've got a document I created in Word.  It prints beautifully in word.  But when I convert it to a pdf, the links in the TOC cease to

  • Managing Multiple Acrobat Forms

    Acrobat Professional has worked well for creating simple fill-in forms. Now I have an application that would benefit from a more sophisticated application of Acrobat, but I don't know what the structure of that application would be. As I understand i

  • How to stop iPhoto from automatically launching?

    I'm not sure if this is specific to any version of iPhoto or not. But anyway, when I insert a compact flash card into a USB card reader attached to an iMac, iPhoto automatically launches. How do I turn this functionality off? Thanks