NFS4 and dual symbolic link fails

Very elegant autohome/NIS scripting system to jumpstart and link up homes and user/privs/pkgs etc exists. Upgrade to Solaris 10.
As long as I force users to use NFS3, they can autohome and get all the items they need, no problem. The moment NFS4 is used, and two symbolic links are traversed--the NFS mount fails.
E.g. the autohome is mounting:
/globalhome/tools/$solaris_ver/$CPU/
which is really /globalhome/tools/solaris8/sparc9
If the mount is only /globalhome/tools/$solaris_ver and they use NFS4 = success. The moment two symbolic links AND NFS4 are used together for the NFS mount ( autohome ) everything falls apart.
Thoughts?

NFS4 does not use mountd to effectuate the mount and is
therefore unable to resolve symbolic links.
I wonder if this was an oversight or were links deemed
insecure and incompatible with the new ACL mechanisms.
P.A.

Similar Messages

  • Symbolic links on samba network drives broken?

    Note: I first posted this in Apple.com > Support > Discussions > Mac OS X v10.5 Leopard > Using Mac OS X Leopard where it was suggested I post here. In my readings it looks like 10.6 may solve some of this but I'm not sure.
    I'm seeing the following sort of behaviour on all of the macs I have tested in the following configuration:
    Network file server:
    Solaris 10
    samba 3.4.2
    Macs:
    Leopard 10.5.6
    Connect to exported folders via smb in finder "connect to server". In the examples below abc123 is a remote folder.
    Open terminal and try the following tests:
    1. Attempting to remove a symbolic link fails.
    * cd /Volumes/abc123/tmp
    * touch foo
    * ln -s foo .bar # this works
    * rm .bar # fails with no message
    * rm foo # succeeds
    * rm .bar # fails with no message
    If the symbolic link is to a socket then you at least get a message when rm fails ("rm: .parentlock: No such file or directory" as an example for a link created on the remote drive by Thunderbird or Firefox).
    2. Removing linked file removes unlinked file??
    * touch foo
    * ln -s foo bart
    * touch ._bart
    * ls -la # observe that ._bart exists
    * rm bart
    * ls -la # observe that bart still exists, but that ._bart is gone!!!
    3. Removing linked file does not work.
    * ln -s bart ._bart
    * rm bart # fails
    4. Hard links do not delete either.
    * touch foo
    * ln foo ._bart
    * rm foo
    * ln -s bar ._bart # ln: ._bart: File exists
    * rm ._bart # rm: ._bart: No such file or directory
    5. Symbolic links are copied instead of the file contents.
    * touch foo
    * ln -s foo ._blaht
    * cp ._blaht /tmp
    and observe that, in /tmp, you have "._blaht -> foo" instead of the actual file.
    So can anyone else reproduce any of the above problems? In my limited searching for samba related problems I did not see any posting about this type of situation. Also, everything works just fine on local drives.

    Depending on the filesystem, Mac OS X creates ._foo files when you create a foo file, so you'll probably have to live with that. For example, for each file on my FAT32-formatted USB flash drive there is a ._xxx file. Others may be able to explain what these things are. I'm pretty sure they contain file metadata, perhaps like .DS_Store files created for other file systems.

  • SMB Symbolic Links disabled after update to 10.6.4

    I just found out how to fix Access Denied messages for any WIndows share that includes a symbolic link directory. Due to a security issue the default was changed to:
    \[global\]
    wide links = no
    This disables access to symbolic links.
    See http://www.samba.org/samba/news/symlink_attack.html
    I changed it back to yes for now to get it working. Will look into this more when the network is not in use. This should have been noted in the smb.conf file.

    For the non-geeks in the audience. 10.6.4 broke access to smb folders being shared by a 10.6.4 machine. My popcorn hour media stremer would no longer use symbolic links as a means to find all my movies spread out on 2 disks. It could see the links as files and clicking on them gave an error message. In my case these links a symbolic links of the folders on my 2 movie drives, labeled sci-fi, westerns, etc. All the links are in my Movies folder in my main user folder. This is setup to be a shared folder and is accessed as an SMB share with my media streamers.
    Apple was apparently fixing a security issue related to symbolic links but killed the ability to set up and use symbolic links like I need them for my home network media streamers.
    To fix do the following:
    Fixing the symbolic link issue with Samba/SMB access problem in 10.6.4
    
* Open smb.conf on the samba server in your favorite text editor
    put the following in a terminal window:
    sudo nano /etc/smb.conf
    
* Find the global samba settings section under [global] and edit the following line:
    wide links = no
    change to:
    wide links = yes
    This enables access to symbolic links.
    nano is a text editor for the terminal. Use the arrow keys to get to the word no in the above string delete no and type yes.
    The control-x to exit and you will be asked to save the file.
    Hit return to save the modified file, do not choose any of the save options.
    For the terminal editor nano, control is the modifier key in dialogs that looks like a upside-down-superscript v.

  • The dangers of robocopy and symbolic links

    I was backing up a laptop to a USB drive overnight, using robocopy to copy the directory structure of C:\Users on a Win 7 Pro build. The process ran all night. By the next morning, the copy had failed due to insufficient space on the drive. The data being
    backed up was only 120 GB and the drive was an empty 500 GB. According to the log, the process only made it about 20% of the way before it got caught in an endless loop of copying the C:\Users\<username>\Application Data link. I had forgot to include
    the /xjd switch in the job file it seems.
    Unfortunately, now I am unable to delete the "Application Data" folder as I get a "...filenames are too long for the destination folder..." error. Upon inspection, the folder appears to point to itself, creating a seemingly endless subdirectory
    tree. I've tried manually deleting parts of the directory structure through cut, paste and delete operations but I gave up after 2 hrs. I then tried writing a batch script using robocopy to mirror an empty folder, hoping that would remove the "Application
    Data" folder, but that too fails after a few minutes once the directory path gets too long.
    I've checked online but haven't been able to find any tool which would allow me to delete the circular link that was created by robocopy. Does anyone have suggestions on how to remove this file structure besides formatting the drive?

    From all the other threads I've read, I'm beginning to realize this just isn't an option with this O/S.
    Thanks for the help and suggestions.
    I got intrigued by this problem, then spent a couple of hours on finding a solution. You can use the batch file below to deal with your circular folder. It will deal with any folder, no matter how deep.
    @echo off
    goto Start
    This batch file will delete circular directories that are 
    created by robocopy.exe when used without the /XJ switch.
    The batch file will warn you before it deletes any folder.
    Pressing Ctrl+C will terminate it.
    Usage: rdd "Folder Name"
    22.3.2013 FNL
    :Start
    set msg=
    if [%1] EQU [] goto Error
    if [%2] NEQ [] goto Error
    goto Initial
    Initial checks:
    - Is this an elevated command prompt?
    - Does the user want to proceed?
    - Does the folder exist
    :Initial
    set r=%random%
    for /F "delims=" %%a in ('echo %1') do set Stripped='%%~a'
    set msg=You must execute this batch file under elevated privileges.
    dir \ 1> %SystemDrive%\%r%.txt 2>nul || goto Error
    del %SystemDrive%\%r%.txt
    set msg=Folder %Stripped% not found
    pushd %1 2>nul || goto Error
    set msg=Exiting
    set /p reply=About to delete the folder %1. Go ahead? (Y/N) 
    if /i not "%reply%"=="Y" goto Error
    set Level=0
    for /F %%a in ('dir /b \RDD_Folder* 2^>nul') do rd \%%a
    set Args=WScript.Arguments
    echo WScript.Echo Left(%Args%(0), InStrRev(%Args%(0), "\")-1) >"%temp%\rdd.vbs"
    goto Loop1
    Create a number of junctions to various points
    inside the circular directory tree.
    Prerequisite: mklink (exists under Windows 7)
    :Loop1
    for /F "delims=" %%a in ('dir /b /s 2^>nul') do set FullPath=%%a
    if "%FullPath:~200,4%" EQU "" (echo. & goto Loop2)
    for /F "delims=" %%a in ('cscript.exe //nologo "%temp%\rdd.vbs" "%FullPath%"') do cd "%%a"
    set msg=Unable to create junction.
    set /a Level=%Level%+1
    echo Creating junction \RDD_Folder%Level%
    mklink /d \RDD_Folder%Level% "%CD%" > nul|| (popd & goto Error)
    cd "\RDD_Folder%Level%"
    goto Loop1
    Delete the circular folders, working from
    the inside to the outside, then delete the
    symbolic links.
    :Loop2
    for /f "delims=" %%a in ('dir /b "\RDD_Folder%Level%"') do set ToDelete="\RDD_Folder%Level%\%%a"
    echo Deleting %ToDelete%
    pause
    rd /s /q %ToDelete%
    rd \RDD_Folder%Level%
    set /a Level=%Level%-1
    if %Level% NEQ 0 (
      cd \RDD_Folder%Level%
      goto Loop2
    popd
    echo Deleting %1
    pause
    rd /s /q %1
    goto :eof
    Error exit
    :Error
    echo.
    if "%msg%"=="" set msg=Usage:  rdd  "FolderName"
    echo %msg%

  • How can I stop from getting the "Firefox is already running" error message when trying to open links and FF has already been opened through a symbolic link?

    I use symbolic links and program shortcuts as a way to easily open different Firefox profiles ie. one for casual/personal use and another for work. This works well, but I get the "Firefox is already running, but is not responding" error message if I try to open external links with FF as my default browser. FF is actually open and running fine, but I guess it doesn't acknowledge this fact because of how I'm originally starting the process.
    I wasn't able to add the symbolically linked executables to the default program pane. Is there a way to bypass this error or other way to fix this?
    The solution to the question linked below is what I'm using to open the different FF profiles.
    http://superuser.com/questions/255312/pin-same-app-multiple-times-in-windows-7

    hello, this is probably happening when you run the default profile with the -no-remote switch.
    http://kb.mozillazine.org/Profile_in_use

  • Does Java/JVm have a way to ditinguish between real files and Symbolic link

    Hello guys,
    I am using java.io.File.listFiles to list files in a directory. I have a symbolic link in the directory. the "listFiles" listing symbolic file contents too. As the real directory Symbolic link pointing is huge, the application taking too much time to load. is it a normal behaviour? are there any work arounds?

    Short version: If getCannonicalPath() and getAbsolutePath() return different values, then the file you look at is a symlink.
    [longer version|http://www.idiom.com/~zilla/Xfiles/javasymlinks.html]

  • Symbolic linker ssd and hdd

    I have a macbook pro 15 inch mid 2012 (not retina) with Mountain Lion and Bootcamp Windows 7 Ultimate both stored on main bay SSD. I replaced my superdrive with the HDD and have an external superdrive. Was wondering how to Symbolic Link both OS from SSD to HDD. SSD Intel 520 180 GB is filling up fast but HDD has plenty of room 750 GB. Also i have norton on Winows 7 patition do i now need norton for osx as well? Dont want to lose the speed of SSD but am about to give up and put HDD back into main bay. Any ideas would be great Thank you -)

    Hello GNUTup,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand you are trying to install a new SSD or HDD in your HP Touchsmart 300-1025 Desktop PC.
    First, I am going to do is provide you with the HP Support document: HP Touchsmart 300-1025 Desktop PC, which will walk you through the process of replacing the Hard Drive you currently have. If you require the Hard disk drive mounting cage assembly the part number is 575664-001 and can be obtained from The HP Parts Store. I have not seen anything that limits the type of drive you can install, but I have only seen documentation on HDDs. I am also going to provide you with the HP Support document: Partitioning and Naming Hard Drives (Windows 7) as it is relevant to your computer and since you are replacing the Hard Drive is a great opportunity for you to review a document of this type.
    Second, as for your CD-ROM I am providing you with the HP Support document: Replacing the CD/DVD Drive in HP TouchSmart 300-1000 Series Desktop PCs, which again will walk you through the process of changing out your CD-ROM. If you require the Optical disk drive mounting cage assembly the part number is 575663-001 and again can be obtained from The HP Parts Store.
    I hope I have answered your questions to your satisfaction. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • It appears from my limited research and attempts that symbolic link command in Terminal is broken in 10.8.2

    It appears from my limited research and attempts that symbolic link command in Terminal is broken in 10.8.2
    Can anyone confirm or deny my observation ?

    It appears from my limited research and attempts that symbolic link command in Terminal is broken in 10.8.2
    Can anyone confirm or deny my observation ?

  • Can I use Unix symbolic links between Mountain Lion and Snow Leopard Mail folders?

    After upgrading to Mountain Lion, I partitioned my iMac HD to have two partitions: Macintosh HD has Mountain Lion; I reinstalled Snow Leopard on Macintosh HD 2. Best part: you can access your user-created files from EITHER disk partition. But not so OS X Mail. I wanted to revert to Snow Leopard, since I don't like the iOS-like Mountain Lion (swipe THIS!), but Mail is a problem since all my Snow Leopard Mail was successfully migrated over to Mountain Lion during upgrade.
    Is there a way to use Unix symbolic links between actual OS X Mail folders in Mountain Lion and OS X Mail in Snow Leopard?
    It seems the (trial) symbolic link created pointed to a blank file.

    It's not a matter of "letting" each maintain its own database, William. By default, I believe, I have no control over what gets written. In fact, if there were a way to set a preference that says, use this index named "spotlightindexSL' only [while in SL], that might solve my problem. Then when booting up in ML, it would just go after the index it last made.
    My guess is that while I am in ML or SL and not the other, there are all sorts of changes to files and the system freaks and says "Oh, now look at what a mess I've made — there are all sorts of files unaccounted for. Now I have to rebuild the whole thing."
    I have 2 had drives in my Mac, both 500GB. One (Working Disk) has no operating system and all my files, and the other drive is partitioned 470/30gb with SL on the 470 and ML in the 30. When I restart in either OS, the auto-start Indexing as if for the very first time, and do both hard drives (in total: 3 partitions of files, not counting the ML Restore partition).
    I know it all uncoventionally — just wanted to see what my $20 new OS will cost me in software upgrades, in particular my $1800 Adobe Design Suite CS4 and a few others.

  • "/usr/lib is not a symbolic link" and testify+libjpeg7 problem

    everytime I update pacman or do a "ldconfig" I get this:
    /sbin/ldconfig: /usr/lib/ is not a symbolic link
    this appeared by the time i installed libjpeg7 from aur (though I'm not 100% sure libjpeg7 is responsible). I've looked through google trying to find out what it means and if it is a problem, but nada! but, while at libjpeg, even though I installed libjpeg7 I can't compile testify (spotify linux-client). I get this error:
    In file included from image.c:31:
    jmemsrc.h:26: error: conflicting types for 'jpeg_mem_src'
    /usr/include/jpeglib.h:959: note: previous declaration of 'jpeg_mem_src' was here
    make: *** [image.o] Error 1
    make: *** Waiting for unfinished jobs....
    when i make /usr/include/jpeglib.h link to /usr/include/libjpeg7/jpeglib.h the compile and install is successful, BUT, testify crashes telling me:
    Wrong JPEG library version: library is 80, caller expects 70
    if more info's required, I'll provide andif I'm raising a problem already raised (I know there's been a lot of hassle since the upgrade), I'll gladly follow a link to solution.
    edit: the "not a symbolic link" appeared after installing libspotify0.0.3. installed it on another computer, and same thing appeared. though, would still like to know why it appears...
    Last edited by serein (2010-03-27 17:09:58)

    Mr.Elendig wrote:Whatever you are trying to build has to be patched for libjpeg8
    to much to do to get libjpeg7 working the way i want it to?
    i've looked through the source, but i don't know enough to get it working... crap.
    and its xtestify i'm trying to build: http://xtestify.sourceforge.net/

  • Issue with stat() and symbolic links

    Has anyone experienced the following issue with stat() ?
    #include <stdio.h>
    #include <string.h>
    #include <sys/types.h>
    #include <sys/stat.h>
    #include <unistd.h>
    int main( int argc, char **argv )
    struct stat buf;
    if( argc < 2 )
    return 0;
    char *link = strdup( argv[1] );
    if( stat( link, &buf ) == -1 ) {
    puts( "Error" );
    return 1;
    if( ( S_IFLNK & buf.st_mode ) == S_IFLNK )
    puts( "Is link" );
    else
    puts( "Not link" );
    return 0;
    If you compile and run the above code (or similar code), you would expect it to report that the given argument is a symbolic link when indeed the argument is a symbolic link; though, instead of the expected happening, the following happens as shown below:
    $ gcc -o islink islink.c
    $ ln -s /tmp link
    $ ./islink link
    Not link
    $
    Is anyone else experiencing this? My filesystem is ext4. The same error happens when using the S_ISLNK() macro.

    man 3p lstat
    DESCRIPTION
           The lstat() function shall be equivalent to stat(),  except  when  path
           refers  to  a symbolic link. In that case lstat() shall return informa‐
           tion about the link, while stat() shall return  information  about  the
           file the link references.

  • Windows 2008 symbolic links and SAP

    Dear Gurus.
    Is it supported to use windows 2008 symbolic links for sap directories?    
    For examle disk E: is small local disk and "sap" folder is symbolic          
    link to network share ?                                                    
    Regards
    Vladimir Kogan

    Hi,
    As far as I know it is not possible in Win 2008. Check below link & see if you get any important information.
    SAP on Microsoft Windows
    Hope it helps
    Thanks
    Sushil

  • Clustering, unix symbolic links, and war files

              Hello,
              we use symbolic links in our web application to a large shared storage device.
              This works when running a single server, when the application is not a war file.
              When we cluster the application, the admin server creates a war file, blindly
              follows the symbolic links and tries to include all files in the shared storage
              device. Bad!
              Is there a work-around to this problem in a clustered configuration?
              -Thanks-
              

              hi,
              can you tell me know you deploy your app to the cluster member
              manually? do you run each member as an admin server? how do
              you group them into a cluster then?
              thanks,
              yan
              "Philippe Lantin" plantin_AT_cobaltgroup.com wrote:
              >
              >
              >Yes, this method works. I did want to keep a central admin server to
              >avoid have
              >multiple configuration files, and deploy new code to only one location.
              >I suppose
              >I could do this via a shared drive.
              >
              >I have an open case with BEA on this issue. The root of the problem appears
              >to
              >be that the jar format isn't equipped to deal with symbolic links. Webapps
              >which
              >are exploded in directories lose their symbolic links when packaged in
              >a war.
              >
              >Thanks,
              >
              >Philippe Lantin
              >
              >"Cameron Purdy" <[email protected]> wrote:
              >>I've never used that centralized deployment feature; rather I've always
              >>configured each of the cluster members manually, partly because of the
              >>bug
              >>in the admin server in 6.0 (?) that would not allow it to deploy to
              >the
              >>cluster.
              >>
              >>Can you try to deploy the application manually?
              >>
              >>Peace,
              >>
              >>--
              >>Cameron Purdy
              >>Tangosol Inc.
              >><< Tangosol Server: How Weblogic applications are customized >>
              >><< Download now from http://www.tangosol.com/download.jsp >>
              >>
              >>
              >><Philippe Lantin plantin_AT_cobaltgroup.com> wrote in message
              >>news:[email protected]...
              >>>
              >>>
              >>> Hi,
              >>>
              >>> our web application is not a war when we use a single server. We simply
              >>use a
              >>> directory under "applications". This method works correctly with symbolic
              >>links
              >>> under weblogic v.6.1.
              >>>
              >>> To test our application in the cluster, we use the previous single
              >>server
              >>as the
              >>> administration server, leaving the application directory intact. We
              >>create
              >>a cluster
              >>> definition with it's target members using this web application.
              >>>
              >>> When we start up the cluster members, the administration server creates
              >>a
              >>war
              >>> file that is distributed to to cluster members. This is not somthing
              >>we
              >>control,
              >>> this is automatically done by weblogic.
              >>>
              >>> This is where we run into trouble. When the admin server creates the
              >>war
              >>file
              >>> to distribute to the cluster target, it follows the symbolic links
              >>and
              >>recursively
              >>> includes all files and directories. This creates a huge war file,
              >and
              >>is
              >>obviously
              >>> not the behavior we are looking for.
              >>>
              >>> Creating a war file manually doesn't help, since jar doesn't support
              >>symbolic
              >>> links.
              >>>
              >>> Thanks,
              >>>
              >>> Philippe Lantin
              >>>
              >>>
              >>> "Cameron Purdy" <[email protected]> wrote:
              >>> >I don't understand at which point you are running into a problem.
              >>> >
              >>> >> we use symbolic links in our web application to a large shared
              >storage
              >>> >device.
              >>> >
              >>> >That is not uncommon, for example to use a Sun storage box or EMC
              >>with
              >>> >some
              >>> >fault tolerant characteristics to host the application images etc.
              >>> >
              >>> >> This works when running a single server, when the application is
              >>not
              >>> >a war
              >>> >file.
              >>> >
              >>> >Do you mean when it is "exploded"? Does it work with a single server
              >>> >when
              >>> >the app is a war file?
              >>> >
              >>> >> When we cluster the application, the admin server creates a war
              >>file,
              >>> >blindly
              >>> >> follows the symbolic links and tries to include all files in the
              >>shared
              >>> >storage
              >>> >> device.
              >>> >
              >>> >This is the part that I don't follow. Are you using 6.1sp1? What
              >are
              >>> >the
              >>> >steps that you are taking with the admin server?
              >>> >
              >>> >Peace,
              >>> >
              >>> >--
              >>> >Cameron Purdy
              >>> >Tangosol Inc.
              >>> ><< Tangosol Server: How Weblogic applications are customized >>
              >>> ><< Download now from http://www.tangosol.com/download.jsp >>
              >>> >
              >>> >
              >>> ><Philippe Lantin plantin_AT_cobaltgroup.com> wrote in message
              >>> >news:[email protected]...
              >>> >>
              >>> >>
              >>> >> Hello,
              >>> >>
              >>> >> we use symbolic links in our web application to a large shared
              >storage
              >>> >device.
              >>> >> This works when running a single server, when the application is
              >>not
              >>> >a war
              >>> >file.
              >>> >> When we cluster the application, the admin server creates a war
              >>file,
              >>> >blindly
              >>> >> follows the symbolic links and tries to include all files in the
              >>shared
              >>> >storage
              >>> >> device. Bad!
              >>> >>
              >>> >> Is there a work-around to this problem in a clustered configuration?
              >>> >>
              >>> >> -Thanks-
              >>> >>
              >>> >>
              >>> >>
              >>> >
              >>> >
              >>>
              >>
              >>
              >
              

  • Networked Drives and Symbolic Links in Mavericks

    So I have tried this a few times on my own... and I ended up deleteing all my contect with sudo in terminal.....  I have everything restored now... but before I proceed, i thought I would get some help from those that know alot more...
    Here is the scenario..  I have a MBP Late 2013 with mavericks installed..  I have a Networked drive at smb://192.168.1.1/  that is mounted and and accessable through finder no problem, and I have it set to reconnect at login so its always there....  there is no permissions for the networked drive its accessable to everyone...  I want to take my itunes music and put it on the networked drive at smb://192.168.1.1/Music and have itunes access it from there like it was on the local drive....  so I started reading up on symbolic links
    I have had no luck with ln -s in terminal, i keep getting told the directory doesnt exist... this is the exact line i have been triying  [ln -s smb://192.168.1.1/Music ~/Music/iTunes/iTunes Media/Music]  i thought it may have been a permission issue hence my ussage of sudo... but because of my ignorance I just ended up deleting everything..... what am i missing or doing wrong...  someone please help!
    Anthony

    Just for some clarification...
    A simple saying that someone told me ages ago...   "root is God"
    When you use the sudo command you are doing the command as root.  The "rm" command means remove,  the "-r" means that you want the command to be done recursively so it will do the same command in any nested folders, and the "f' means to force the command..  even if it has any errors or is a file that root knows that you shouldnt do a command on..
    So basically you told god to remove everything in your music folder, no matter how deep its nested, even if doing so would be immoral and against gods better judgement.

  • Ie 11 fails with 'IE Security detected that the URL and the configuration link to not match

    HI,
    I Have a user that is using IE 11 and is getting the following error:
    IE Security detected that the URL and the configuration link to not match. Please use the URL as configured.  Is and IP based URL. On IE 10 we get a similar message, but as soon as we add it to our trusted site and switch to compatibility
    mode the issue goes away.
    For example http://10.10.10.180/xxx/iafwebsite_810/
    What would be causing this issue?
    Any help would be appreciated.
    Thanks,
    Trish
    Trish Leppa

    Hi,
    It seems that this URL doesn't meet security level. Thus, as long as you add this URL to Trusted sites zone, this issue is fixed.
    Thanks!
    Andy Altmann
    TechNet Community Support

Maybe you are looking for

  • How do I get Firefox 12 to open a link from Google search results?

    Ever since upgrading to version 12.0, whenever I click on certain links the browser just "reloads" the same page I am on rather than loading the new page in the same tab. When this happens it's not opening the link in a new tab or window, instead jus

  • Datamerge problems with images in pdf export

    Hi Trying to set up a datamerge file to create multi page spread documents with fields on different pages. Attempting to set it up so it's as automated as possible as there are up to 20 different merge documents needing to merge with up to 100 differ

  • If I restart my MBP to factory setting, will it impact the OS?

    I have upgraded my OS to OS X Mountain Lion. If I am planning to set my macbook pro to factory setting, will it impact the OS? I am planning to sell my macbook pro. Bought it in early 2011. Thanks in advance for the advice.

  • Cost of lumia 720 battery

    As the battery backup of my Lumia 720 has dropped significantly I would like to have the battery replaced. Can someone help me with the price of battery and if the battery could be replaced With regards Vinay Solved! Go to Solution.

  • Latest Security Updates cause Data Execution Protection errors

    Since the latest Windows updates I have been inundated with Data Execution Protection errors in IE 11. I have tired the troubleshoot of tuning off add-ons but the error continues. I only have Norton 360 toolbar as an add on anyway. I can't isolate th