Redirect in SunOne 6.1

Runnign 6.1 SP12 tryingto do a redirect and it doesn't seem to work. I think it has to do with the parameters being passed. Here's what I need:
Current (working for all, but need to only redirect when the below happesn):
NameTrans fn="redirect" from="/en/resources/RCResult" url="http://www.newserver.com/directory/res2.php" [R=301]
Change to:
NameTrans fn="redirect" from="/en/resources/RCResult.htm?type=Series&series=LBD&contentId=123&state=-99" url="http://www.newserver.com/directory/res2.php" [R=301]
any thoughts?

959240 wrote:
Runnign 6.1 SP12 tryingto do a redirect and it doesn't seem to work. I think it has to do with the parameters being passed. Here's what I need:
Current (working for all, but need to only redirect when the below happesn):
NameTrans fn="redirect" from="/en/resources/RCResult" url="http://www.newserver.com/directory/res2.php" [R=301]
Change to:
NameTrans fn="redirect" from="/en/resources/RCResult.htm?type=Series&series=LBD&contentId=123&state=-99" url="http://www.newserver.com/directory/res2.php" [R=301]
any thoughts?Your parameters aren't valid for the "from" option. You can only have "/en/resources/RCResult.htm". The rest needs to be evaluated seperately, possibly with the client function, but I haven't used 6.1 for too long so can't really remember the syntax. In 7.0, you can wrap it into a if else section.

Similar Messages

  • Redirecting traffic on SunOne 6.1 SP4

    hi all,
    i've got a web server running SunOne 6.1 SP4, and im trying to figure how to redirect traffic from 2 different locations.
    the web server is accessed both thru the LAN and the Internet. how is it possible to re-direct traffic coming from an internal UP to another interanl IP and traffic from an external IP to an external IP.....?
    currently im using the following in my obj.conf file. but this is re-directing all traffic to one location.
    <Client security="false">
    NameTrans fn="redirect" from="/" url-prefix="http://x.x.x.x/"
    </Client>
    how can i configure this to re-direct traffic coming from the LAN (these come from a 10.1.x.x segment) to another internal IP and traffic coming from the web to another external IP...?
    any help on the matter would be highly appreciated.
    thanks and regards,

    To Documentation team,
    Here is what to do :
    update in http://docs.sun.com/app/docs/doc/820-1643/6nda4qg75?l=en&a=view#abvau
    Old Text :
    <Client ip="~192.85.250.*">AddLog fn="flex-log" name="access"</Client>
    New Text :
    <Client ip="\*~192.85.250.\*">
    AddLog fn="flex-log" name="access"
    </Client>
    Note that a * (asterisk) is required before ~ (tilda) and make these 3 separate lines.

  • Re: [SunONE-JATO] JatoTutorial

    Fr?d?ric--
    In the case of a GET, all the information required to reconstruct the target
    page is available in the address bar, and thus bookmarks work fine. When
    the user does a POST, the same information does not appear in the address
    bar and bookmarking the page will bookmark the previous page. But this is
    nothing new. Any server code that dynamically decides which page to show
    while processing a POST will have the same or a similar issue, unless it is
    using a type I architecture. Because there are multiple buttons per form,
    and for each button the JATO developer has the freedom to dynamically decide
    which page to show next, there is no way to determine at page rendering time
    the URL that should appear in the form tag.
    One workaround is to change the "method" attribute on the form tag to GET.
    However, there are drawbacks to this approach. First, you cannot send
    nearly as much data with a GET as you can a POST (especially keep this in
    mind when using JATO's page session feature). Second, is it always correct
    for the user to be able to bookmark a page resulting from a POST? For
    example, in the case of the login scenario you mention, or say a credit card
    transaction, possibly not.
    There have always been all sorts of issues with users bookmarking dynamic
    pages (session, data consistency, etc.); this is just one of them.
    As for the jsessionid question, I misunderstood your question. You are
    seeing this because JATO unilaterally uses the encodeURL() method on all
    URLs, including the one in the form tag. This is why you see it on the
    first GET or POST, and it is necessary to make sure the user does not
    bypass the container's session tracking. If you find that it's a problem,
    you can turn off session tracking via URL rewriting, but this of course has
    the consequence of only permitting users using cookies to access the
    application.
    Todd
    ----- Original Message -----
    From: "Fr?d?ric Miserey" <frederic@n...>
    Sent: Sunday, September 15, 2002 12:02 AM
    Subject: Re: [SunONE-JATO] JatoTutorial
    Todd,
    It is "just" an issue because if the user bookmarks the page at that
    point (emails the address, ...), it will go back to the login page, not
    the customer page. If I even encounter such a web-site, I don't come
    back. Bring this issue to Jakob (www.useit.com) and see what he has to
    say ;)
    If .forwardTo has always the same side-effect, this becomes an issue as
    the address bar should reflect the user's location on the site. I've
    never seen this problem while browsing nor while developing apps with
    NAS (99: version2 ?) Of course, a 302 is NOT a solution. Is there a
    work-around ?
    Regarding jsessionid, I knew what it was ;-) but I was wondering why it
    was appearing after "Submit" and going away for good after "Update" (at
    least on IE). Is this another "byproduct" of .forwardTo ?
    Thanx
    Fr?d?ric
    On dimanche, sep 15, 2002, at 04:33 Europe/Paris, Todd Fast wrote:
    Fr?d?ric--
    The behavior you notice is normal for a JATO app, and is a byproduct
    of the
    fact that JATO requests go back to the same object. Any framework or
    architecture that uses this technique will be the same. It is not
    something
    that should cause any issues if that's what you're worried about.
    Note that
    if for some reason you really need to show a particular address in the
    address bar, you can issue a 302 redirect to the client to have it
    load the
    URL of your choice. Note also that you wouldn't want to do that on a
    regular basis since it multiplies the number of requests to the server
    (one
    for the original request and one for the redirected request).
    The jsessionid is the standard session key for J2EE containers. You
    will
    normally always see this on the first URL you get back from the server,
    since the server doesn't know if the client supports cookie-based
    session
    tracking yet. Once the server determines that cookies are supported,
    it
    omits the session key from subsequent URLs. However, if the client
    doesn't
    support cookies, the session key will be added to the URL, a technique
    called "URL rewriting". This was the standard technique for tracking
    session in web apps before cookies were invented or in widespread use.
    Todd
    ----- Original Message -----
    From: "Fr?d?ric Miserey" <frederic@n...>
    Sent: Saturday, September 14, 2002 10:12 AM
    Subject: [SunONE-JATO] JatoTutorial
    I'm ramping up on Jato. Being a good soldier, I followed the tutorial ;
    I noticed a strange thing:
    1 I type in the browser "address zone": (appserver
    root)/JatoTutorial/module1/Login
    2 I enter one of the three valid logins
    3 I hit "Submit"
    4 The Customer jsp is displayed
    BUT the browser "address zone" still shows /Login, not Customer
    5 I hit "Update"
    6 "address zone" now correctly shows /Customer
    Can this (4 BUT) be fixed ?
    Also, on some browsers, in step (4), some browsers (OmniWeb/IE 5.2 -
    not Mozilla 1.2a) ";jsessionid=xyz..." is appended to /Login. Is this a
    feature of Jato, of the appserver I'm using ? (Oracle OC4J 903b)
    I'll try to raise the bar of my questions as time passes ;?)
    Thanx,
    Fr?d?ric
    ps: if you wonder, I'm running all this on a MacOSX notebook ! (I have
    yet to install SunApp 7.0b2 on one of my Solaris boxes ;)
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    <image.tiff>
    >
    >
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    [Non-text portions of this message have been removed]
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp

    test

  • Problem in integrating sunone webserver with websphere app server

    Hello all
    I am trying to integrate sunone6.0 webserver with websphere5.0 app server. I did the following changes in sunone6.0 config files
    1) Added one directive to the obj.conf file after "<Object name=default>":
    Service fn="as_handler"
    2) Added two directives to the end of the magus.conf file:
    Init fn="load-modules" funcs="as_init,as_handler,as_term" shlib="/opt/WebSphere/AppServer/bin/libns41_http.so"
    Init fn="as_init" bootstrap.properties="/opt/WebSphere/AppServer/config/cells/plugin-cfg.xml"
    Can any one of u tell me how to check whether sunone webserver is redirecting request to webshere app server?
    i tried this url https://sunonewebserver:80/webapps/examples but i was not getting any result of that url.

    You might want to check here http://developers.sun.com/prodtech/webserver/
    and here http://developers.sun.com/
    These have forums and articles devoted to specific Sun products

  • RE: [SunONE-JATO] handle...Request() - in different TiledView?

    I need probably to reorder Parent-Child relationships,
    I have now
    - ViewBean
    ---MenuItemsTiledView.class
    ---OrderCacheTiledView.class
    ---Button.class (append)
    I will try to have
    - ViewBean
    ---MenuItemsTiledView.class
    ------OrderCacheTiledView.class
    ---------Button.class (append)
    And I will have to change:
    <jato:tiledView name="MenuItems"
    <jato:tiledView name="OrderCache"
    <go method="post" href="<%=response.encodeURL
    ("../member/MenuItems") %>">
    <postfield name="MenuItems.append" value=""/>
    <postfield name="MenuItems.menuItemId"
    value="<jato:getDisplayFieldValue
    name='MenuItemId'/>" />
    </go>
    I think it is strict rule to have the same parent-child relationships in
    JSP like as in classes
    May I have more freedom like as with <jato:text name="...">, where name
    could be relative (to parent, to container), absolute?
    Fuad
    -----Original Message-----
    From: Fuad Efendi [mailto:<a href="/group/SunONE-JATO/post?protectID=230075113150035198105038066208231165163158211254234113172006048205015246">fuad.efendi@s...</a>]
    Sent: Friday, May 17, 2002 12:02 PM
    Subject: [SunONE-JATO] handle...Request() - in different TiledView?
    Hello,
    I use ViewBean, and two child TiledViews (WML sample).
    <jato:tiledView name="TiledView1"
    type="mobiledb.member.MenuItemsTiledView">
    <go method="post" href="<%=
    response.encodeURL("../member/MenuItems") %>">
    <postfield name="MenuItems.append" value=""/>
    <postfield name="MenuItems.menuItemId"
    value="<jato:getDisplayFieldValue name='MenuItemId'/>" />
    </go>
    I think, "handleAppendRequest()" will work within TiledView1 (I didn't
    try yet, I have this handler in ViewBean).
    But, logically, better place for it is TiledView2 which contains cached
    appended records...
    I can have handler in ViewBean redirecting into TiledView2 of course,
    What is the best way?
    Thanks,
    Fuad
    To download the latest version of JATO, please visit:
    http://www.sun.com/software/download/developer/5102.html
    For more information about JATO, please visit:
    http://developer.iplanet.com/tech/appserver/framework/index.jsp
    [Non-text portions of this message have been removed]

    Sorry for mistake with index,
    <postfield name="MyJspPage.MyTiledView[2].Append" value=""/>
    -----Original Message-----
    From: Fuad Efendi [mailto:<a href="/group/SunONE-JATO/post?protectID=230075113150035198105038066208231165163158211254234113172006048205015246">fuad.efendi@s...</a>]
    Sent: Saturday, May 18, 2002 12:42 PM
    Subject: RE: [SunONE-JATO] handle...Request() - in different TiledView?
    OK, I solved it (for WML),
    If I use "virtual buttons" on JSP page (within <jato:tiledView.../>
    tag), and this buttons are child of MyTiledView class (which is child of
    MyViewBean), I can use
    <postfield name="MyJspPage.MyTiledView.Append[2]" value=""/>
    for emulation of button.
    I don't use MyViewBean.MyTiledView.Append[2]!
    Next step: I have to understand what to do with index in
    MyTiledView.handleAppendRequest... Code seems harder than putting Button
    and Handler in main MyViewBean...
    [Non-text portions of this message have been removed]

  • Does URL Policy Agent of SunONE Web Server 6.1 works with Identity Server 6

    Hi,
    I'm using URL Policy Agent of SunONE Web Server 6.1, and using Identity Server 6.1 to configure policy to access web resource such as http://myweb.org.cn/test/*
    After configyration, I try to access the resources http://myweb.org.cn/test/test.html
    The redirection is ok, the IS login appear, but after login successfully, it still tell me that I don't have permission to view this web page.
    Is this because of URL policy agent don't support IS 6.1?
    Many thanks,

    Can anybody help me with the steps to generate core for this issue.. I followed the steps as said in http://blogs.sun.com/meena/entry/troubleshooting_server_crashes_enabling_core but I don't see any core generated when server crashes..
    Setup Info:
    - OS is RHEL 4.0
    - Sun ONE Web Server 6.1SP7
    - Policy Agent 2.2

  • Policy Agent 2.1 not redirect

    PolicyAgent 2.1
    Proxy Server: SunONE Proxy Server 3.6 SP6
    Identity Server :6.1
    OS : Solaris8
    I installed PolicyAgent 2.1 to SunONE Proxy Server 3.6 SP6.
    request to the proxy server
    "GET /index.html HTTP/1.0"
    is redirected to Identity Server
    but request like
    "GET / HTTP/1.0"
    is not redirect to identity Server, i get
    the respone from the Web Server instantly
    Proxy Server is set up as a reverse proxy
    is this a bug? or i miss some configuration?

    http://www.sun.com/download/index.jsp?cat=Identity%20Management&tab=3&subcat=Policy%20Agents describes what PA are supported.
    I know from my past experience that PA 2.1 works with AM 7.1 in Legacy mode but it is not supported.
    If your application server or web container is not supported then you can always use PA 2.2 for Sun Java Web Proxy Server 4.0. In this case, you will to place SJWPS in front of your application and your application will be accessed via proxy server.
    Vivek

  • IIS 7.5 URL Rewrite: Hit specific page of a web application but should be redirected to another application's page

    I have deployed 2 different web application on IIS 7.5 running on Windows Server 2008 R2 but on different port numbers i.e. one application deployed on port no. 1776 and another on 8091. I want to rewrite URL in such a way that if i hit any page of first
    application such as default.aspx then it will be redirected to particular page of another application along with some changes in url.
    Example: if i access any page from first application like:
    http://g2wv126rbsc:1776/sites/main/commercial/commercial-solutions/financing/default1.aspx
    then it should redirect to specific page of another application along with some changes in url:
    http://g2wv126rbsc:8091/main/commercial/commercial-solutions/financing/default2.aspx
    Note: In above mentioned url, also removed "sites".
    I tried to create a inbound rule through URL Rewrite module (installed on IIS 7.5) by selecting Action as "Rewrite" but didn't find any success.
    I need some examples if anyone has come across same kind of issue.
    Thanks in advance.

    Please post ASP.NET questions in the ASP.NET forums (http://forums.asp.net ).

  • How to pen new window while redirecting to a page

    Hi,
    I have a jsppage 1,jsppage 2 and aspPage. In jsp2 I am getting the
    values from jsp1 using request.getParameter("hhhh").Once I get
    all values in jsp2 , as soon as I got the values I need to redirect to asp from jsp2.
    I don't have any form or any button in jsp2.When I do submit in jsp1,
    immediately it has to open asp page in new window. My question is how
    I open the asp in new window in this redirection case .....?.
    I tried this way but not working ...
    WebsiteUtils.sendRedirect(request,response,window.open("ASP page"));
    I know if I have submit button in jsp2 I can write a javascriptfunction
    to opennew window but here the case is different....
    Appreciate your reply.
    Thanks

    On jsppage1, instead of using a from submit button, you can create abutton and write th onClick as
    <input type="button" value="OK" onClick="window.open('jsppage2.jsp','win2');">
    Now in Jsppage2.jsp, after doing all the processing, use sendRedirect to call jsppage3.jsp.
    Since jsppage2 is never being displayed, page3 will bw the one which will be shown in the new window opened by the name win2 on onClick.
    If I have understood your requirement correctly, then this should work for you as I have tried it out.

  • How can i redirect to with one button to different pages!

    Hi All,
    For any application, for the first time,if a new table exists then there will no data in that table.
    based on this scenerio,in my application,i am handling apex validation staying that "you have no data. Please click here to go Reset symbol page.
    when it redirects to Reset symbol i am providing a text box and with a button. Once there enter a symbol and click on button it will inert in that table and again redirects to Home page for say-39.
    simillarly what are the functionality available in home page i had implemented same thing but only it differs page no for say-115.
    In both the scenerio's i will be redircting reset Symbol page where there can insert a symbol explained in above scenerio case.
    My problem is when i am throwing the error msg from page-39 i am redirecting to Reset symbol and when there enter symbol and click on button again i will be redirection t page -39 because the error had came from page-39.
    If the same error comes from page-115 then also i will redirecting to same Reset Symbol where there will be entering symbol and click on button, in this case it should redirect to page-115 instead of page-39 because i have got error from page-115 but not from page-39.
    How to handle the above scenerio, please help me out.
    Thanks in advance,
    Anoo.

    Hi Andy,
    Thanks for your suggestion, it is working fine..But i am facing one problem in page 115, i have two regions and both regiosn have same name but only difference is items names.. when i had tried to rediect to page-115 the umwanted one regions is showing instead of expected region. It is getting failed here bec it is rediecting to differnet region.
    Any suggestion on this!
    Thanks,
    Anoo..

  • How can I redirect a URL with aliases or redirect?

    Hi all,
    I have this partially working on my servers, but am not 100% sure I am doing this corerectly.
    Basically I have a Web site domain, let's call it product.com
    In server admin I have a site set up called www.product.com under port 80 and another under port 443 for my SSL pages.
    Here is my problem: If a customer types "product.com" in their favorite Web browser address bar, I would very much like the server to automatically redirect them (if that's the correct term) to "www.product.com"   Currently they would end up on http://product.com/index.html when they key in the URL without the "www"  I am concerned this is hurting my SEO and Google analytics as well as being an issue internally for PHP pages that are coded to the "www" addresses.
    I also have a sign-in page for my clients at the address: http://www.product.com/lib/app/auth/authenticate.php.  When a client types "signin.product.com" I want them to go to that long URL for the sign-in page.  I have gotten this to work by setting up a new Site in Server Admin > Web > Sites named "signin.product.com" which then has a single entry on the redirect tab with the URL of the signin page above.  Not sure if that could have been done on the core Web site (www.product.com) or if that was the way I should do it under Server Admin or if there is an easier way to do it.
    Primarily I want to be able to handle redirecting any type of subdomain "xxx.product.com" to another address.  The primary one I want to deal with now is the "product.com" redirecting to "www.product.com".....  Should I just set up another Web site in Server Admin with a redirect like I did for "signin.product.com"?
    Any advice on doing proper redirection appreciated.
    -- Jon

    There are so many ways you could do this. You need to pick what's right for you.
    Some of the options are available through the GUI. Many more are available once you get under the hood and drive Apache directly. Your skill and comfort level will undoubtedly influence which path you take.
    At the first level, Apache groups sites together by the hostname used to access the site.
    If you want 'www.product.com' to go to the same place as product.com you could create one site with an alias, so that Apache uses the same 'site' configuration for both hostnames.
    If you want the two hostnames to do different things then you could create two sites - in this case 'www.product.com' has the full, normal site and 'product.com' has a redirect to the equivalent page on 'www.product.com'.
    Within www.product.com you can also setup selective redirects to the HTTPS site. This will ensure that things like the login form are accessed securely. In this way your HTTPS site is another 'site' in Apache with the SSL configuration.
    One caveat in your post is the use of 'signin.company.com'. You don't describe your network, but if you have only 1 public IP address then this is going to be an issue since you cannot easily run multiple SSL sites on a single IP address - you'll need a different public IP address for each SSL site. This is because the SSL negotiation occurs before Apache knows what site the request is for, and therefore it doesn't know which SSL certificate to use for the connection.
    So, in general, you'll create one site for each variation in your web setup - one for 'www.product.com/port 80', one for 'www.product.com/port 443', one for 'product.com/80' (which redirects to 'www.product.com'), and so on.

  • Using a variable in Struts config, to redirect

    In the struts-config file,
    to redirect to a different site, I can use
    redirect="true"
    and mention full path, in my <forward path=
    variable.
    1. Is there a better way to do it?
    2. Since I have to do it in multiple places, is it possible to use a variable? I mean, something like this
    <forward
    name="success"
    path="URL/abc.html" />
    Where URL is a variable name that the site path? This way, I can reuse the variable to redirect to other pages too (xyz.html, for example)

    Hi there,
    I don't know...is there only one URL you are using ore are there more than one? Because if it's the same path everytime you can try using this:
    <forward
    name="success"
    path="./abc.html" />
        ./               // This is the shortcut for the directory you are currently using.
        ../              // This is the shortcut for the directory above the one you are currently using.This code should do it. If not, try to create a var named for example "vpath" and put it like this:
    <forward
    name="success"
    path=vpath+"abc.html" />Try and tell if it worked ;)
    X--spYro--X

  • How do I NOT get automatically redirected to www04.sub.su.se:#### when typing a certain address in the address field which has worked well until today (still works well in IE).

    There are some databases/sites that I have access to when having an IP number on university campus or with a proxy. This worked well in firefox until today. When trying to visit those pages the addresses automatically change a second or two after pressing enter to something like: http://www04.sub.su.se:###/ combined with showing random webpages in the window. This seems to be something associated with firefox since I still have access to the pages in internet explorer.
    For example:
    If I write http://www.isiknowledge.com/ the address changes to http://www04.sub.su.se:2133/cgi-bin/[email protected].
    If I want to get to scholar.google.se I get redirected to http://www04.sub.su.se:2087/
    When wanting to visit http://pubs.acs.org/about.html I will end up here: http://www04.sub.su.se:2110/about.html
    This problem only occurs on services where I in normal case can get access to articles in scientific journals. I have not encountered this problem in other cases/websites.
    I have tried to scan my laptop for viruses with Symantec Endpoint Protection and SuperAntiSpyware 4.45.1000. But nothing suspicious was found.

    Hi Magsrobby,
    Welcome to the forum and thanks for posting. I'm really sorry to hear you've had so many problems. I can look into this for you if you wish. Drop me an email with the details. You'll find the "contact us" form in the about me section of my profile. Once I have the details we'll take it from there.
    Cheers
    David
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • Folder redirection to a new location is not working

    Currently in SCM we have all Windows 8 users Documents and Desktop redirected to a users home folder in a Netapp share.  We are planning on moving them to a Windows File Server.  As a test I moved my home folder in AD to the new share.  But
    SCM is still redirecting my Documents and Desktop to the old share.  I also tried excluding my user account from the user collection used for Folder Redirection.  Created a user collection and configuration item just for my account and SCM is still
    trying to redirect to the old share.
    Help please
    Thanks

    I have created a user collection with my id as a test user and also under user data and user profiles I created a user data and profiles configuration item under Folder redirection.   For Desktop and documents I selected REdirect to remote and for configure
    folder redirection path I checked Redirect to the users home folder .  In Active Directory I made the new Windows Server share my home directory.   
    Thanks

  • ITunes losing all music and won't redirect to correct folder

    Hi there,
    This morning, iTunes has lost all my music. The whole library has the little exclamation mark. Using the 'Find info' comand, I can see that iTunes is looking for them in the music folder of my internal drive. However, they've always been kept on an external drive, and when I redirect iTunes to an individual track in it's correct location, and it asks me if I'd like to use the location to find the other missing files, it fails to correct the location of the rest. I am getting this message: “iTunes was able to find 1 of 18083 missing files.” Rather frustrating...
    I'm using iTunes 10, on OS 10.7.3
    I have the correct iTunes media folder indicated in the advanced preferences tab.
    In case it's relevant, I'm also syncing with a new iPhone 4s, which I've only had for about 3 weeks, though in terms of audio, I only sync recently added albums + podcasts.
    And an additional odd behaviour that I noticed this morning was that in my iTunes Media folder, outside of the Music folder,   several artist folders had appeared, each containing an album folder and one or several songs from that album, the rest of which were all in their normal locations inside the Music folder, minus the tracks in the newly-appeared folders. All very odd.
    Thanks for any help,
    Emma

    I have finally solved this issue.  Here is the solution:
    1. Open iTunes
    2. Select Music
    3. In the upper right hand corner select Albums.
    4. Under "All Albums" highlight the first album, then scroll all the way to the bottom of the page, hold down the shift key and select the last album.
    5. All albums should now be selected.
    6. Place the cursor over one of the albums. Press with 2 fingers on the trackpad to bring up the menu.
    7. Select "Check All"
    8. Congratulations - no more grayed out songs and they will sync now.
    9. Go into your iPhone sync and check the songs you want to transfer and click the sync button.
    I hope this helps you to resolve your issue.
    NO MAX

Maybe you are looking for

  • SSO with Hybrid Cloud-Based Deployments

    Hi I´m wondering, how SSO works with Hybrid Cloud-Based Deployments. I want to use Jabber for Windows with WebEx Connect and Unified Communications integration with Cisco WebEx. Questions: How can I configure Jabber for Windows to use SSO with WebEx

  • My 2011 IMac will not boot up past the White apple logo screen with the whirly circle

    My 2011 IMac will not boot up past the White apple logo screen with the whirly circle. I have tried various commands but to no avail. does anybody have any advice?

  • How to merge with multiple updates

    Hi All, can someone help with merge and multiple updates when matched ? create table foo id number, name varchar2(30), col1 date, col2 date create table bar id number, name varchar2(30), col1 date, col2 date insert into foo values ( 1, 'test1', sysda

  • ICloud photos in albums not syncing to iPad, iPhone. How to fix?

    Hi folks, I have iPhoto '11, an iMac running Lion, an iPhone 4 and an iPad 1. The iPad and iPhone are both running iOS v5.0.1 . My problem is that when I take photos on either device, and they go to Photo Stream, I can copy them to albums, but they w

  • Photoshop CS6 running extremely slow after graphics card switch

    My old graphics card died (a evga 8800 Ultra Superclocked 756MB 384 bit), so I replaced it with a (XFX HD-455X-ZAFR Radeon HD 4550 1GB 64-bit DDR2 PCI Express 2.0 x16 ).  I knew this was a less capable card but from reading other forums it seemed tha