Portlet that redirects to mypage... how 2 ?

Hi, this is a 4.x porting issue, where the customer has modified the .asp to redirect the portal page when the user hits a button.
Would like to re-implement this in G6 via a mandatory tabbed community, where there's a portlet (header or otherwise) that does some processing, executes some javascript and then redirects to another community.
I got everything to happen in JS EXCEPT for the link back to mypage. It tries, using
http://hfpportal.thehartford.com:8080/portal/server.pt?PageID=0&cached=false&space=MyPage
...but instead the user is directed to a portal login page.
Is there any easy way to direct to the user's home (like the My Home link) in Javascript, given that Javascript does not transform (otherwise I'd use an adaptive tag!).
Any ideas, samples?
Thanks!

Try running either of these malware scanners, they are considered to be aamongst the best:
* Malwarebytes - http://www.malwarebytes.org/mbam.php
* SuperAntiSpyware - http://www.superantispyware.com
For particular information on Google re-direct virus see http://deletemalware.blogspot.com/2010/02/remove-google-redirect-virus.html
Also check to see if an add-on is causing this behavior, for details of how to do that see https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

Similar Messages

  • PL/SQL Portlet with edit defaults. HOW ???

    Hi !
    I created a pl/sql portlet that renders html. Now I want a customization option on the "Edit Defaults" page of the portlet. How do I do this ??
    In the code of the portlet I set "l_portlet.has_show_edit_defaults" to true. So the Edit Defaults page is show, but it's empty.
    On that page I want a variable where you can choose between 3 options. In the procedure where I render the html, I want to read this variable so I can render 3 different things.
    Can someone please help me ?

    I suggest you look at the database services provider in the PDK which is an example provider showing how to do the basic things within a provider/portlet - like customise and edit defaults.
    You could also generate a provider using the pl/sql generator - that will produce code that you can use as a starting point for your development.
    Basically you have to add code to the show procedure of the portlet to render a different page if the mode is 'MODE_SHOW_EDIT_DEFAULTS'. Look in the samples - it should be clear.
    Hope this helps.

  • What does too many http redirects mean and how do I fix it

    Does anyone know what the **** "Too many http redirects" means, and how the **** do I fix it ??

    500 errors in the HTTP cycle
    Any client (e.g. your Web browser or our CheckUpDown robot) goes through the following cycle when it communicates with the Web server:
    Obtain an IP address from the IP name of the site (the site URL without the leading 'http://'). This lookup (conversion of IP name to IP address) is provided by domain name servers (DNSs).
    Open an IP socket connection to that IP address.
    Write an HTTP data stream through that socket.
    Receive an HTTP data stream back from the Web server in response. This data stream contains status codes whose values are determined by the HTTP protocol. Parse this data stream for status codes and other useful information.
    This error occurs in the final step above when the client receives an HTTP status code that it recognises as '500'. Frank Vipond. September 2010.
    Fixing 500 errors - general
    This error can only be resolved by fixes to the Web server software. It is not a client-side problem. It is up to the operators of the Web server site to locate and analyse the logs which should give further information about the error.
    Fixing 500 errors - CheckUpDown
    Please contact us (email preferred) whenever you encounter 500 errors on your CheckUpDown account. We then have to liaise with your ISP and the vendor of the Web server software so they can trace the exact reason for the error. Correcting the error may require recoding program logic for the Web server software, which could take some time.
    http://www.checkupdown.com/status/E500.html

  • Portlet that become a full screen page

    We are currently running portal 4.0 and I need to create a portlet that
    works as follows.
    The first page will display a series of links based on data, when one of the
    links is selected, I want the next page to maximize and cover the content
    section of the portal.
    The last thing I want it to do is that if your leave the portlet via one of
    the page tabs at the top of the portal and then return to the page, I want
    it to return to the initial page and not stay on the full screen detail
    portlet.
    I expect this can all be done in the webflow, but I don't see how to force
    this behavior.

    I found part of my answer.
    I can from the Input processor call the maximize function for that given
    page, this is 1/2 the problem.
    I next need to find out how to reset back to normal size ( not minimized ).
    Michael C
    "Michael C Ford" <[email protected]> wrote in message
    news:3ee0b4ca$[email protected]..
    We are currently running portal 4.0 and I need to create a portlet that
    works as follows.
    The first page will display a series of links based on data, when one ofthe
    links is selected, I want the next page to maximize and cover the content
    section of the portal.
    The last thing I want it to do is that if your leave the portlet via oneof
    the page tabs at the top of the portal and then return to the page, I want
    it to return to the initial page and not stay on the full screen detail
    portlet.
    I expect this can all be done in the webflow, but I don't see how to force
    this behavior.

  • Websites that "redirect" are blocked until "allowed" by user. Previously, could permanently choose to always allow certain websites

    I recall that earlier version of firefox had a drop-down menu which appeared when a site tried to redirect. This menu gave choice of "allow", "always allow" or "never allow" redirect from this site. The current version of firefox only gives a choice to "allow" (or the site won't load). This kind of encounter is frequent with bank sites and other sites that redirect for log-in security reasons. If I "allow" the redirect, a security question page is provided by the website before it redirects to the actual secure log-in site. This process is slightly time-consuming and I would like to be able to avoid it.

    Re: How to use Parental Controls and Homework Time
    How do I set up different levels of protection for the computers of different aged children?

  • Portal902 - DB portlets that use page parameters

    Hi all.
    I am trying to create a plsql portlet that will read the page parameters. I believe that this is the idea, right? Well, I don't know how to do it. Can someone tell me how to do it? Or tell me where to find an example?
    Thanx, Mere.

    Hi all.
    I am trying to create a plsql portlet that will read the page parameters. I believe that this is the idea, right? Well, I don't know how to do it. Can someone tell me how to do it? Or tell me where to find an example?
    Thanx, Mere. I had an example in which parameters were passed from one report to another:
    Report 1: summary report
    SQL report, on scott.dept:
    select htf.anchor('http://<server>:<port>/servlet/page?_pa
    geid=<page id>&_dad=<dad>&_schema=<schema>&_mode=3&dept='||deptno, deptno)
    aaa, dname, loc from SCOTT.dept
    The url here is the page url with extra parameter for dept, the bind
    variable in the detail report
    Report 2: detail report
    SQL report, on scott.emp
    select * from scott.emp where deptno = :dept
    Add the following PL/SQL code in the "before displaying the page"
    <portal schema>.wwv_name_value.replace_value(
    l_arg_names, l_arg_values, p_reference_path||'.dept',
    <portal schema>.wwv_standard_util.string_to_table2(nvl(get_value('dept'),
    10)));
    Build a page and include these 2 portlets, then when you click
    on the link of the summary report, the page will be refreshed,
    and the detail report changed based on the data from the summary report.
    Hope this helps

  • I need to convert PDF file to Word Document, so it can be edited. But the recognizing text options do not have the language that I need. How I can convert the file in the desired of me language?

    I need to convert PDF file to Word Document, so it can be edited. But the recognizing text options do not have the language that I need. How I can convert the file in the desired of me language?

    The application Acrobat provides no language translation capability.
    If you localize the language for OS, MS Office applications, Acrobat, etc to the desired language try again.
    Alternative: transfer a copy of content into a web based translation service (Bing or Google provides a free service).
    Transfer the output into a word processing program that is localized to the appropriate language.
    Do cleanup.
    Be well...

  • I downloaded a new version of firefox. It said it had problems with my norton toolbar and now it doesn't feature it in the window. I'm not that comp savvy. How do I either get the Norton toolbar up or go back to the old firefox? Thank you.

    I downloaded a new version of firefox. It said it had problems with my norton toolbar and now it doesn't feature it in the window. I'm not that comp savvy. How do I either get the Norton toolbar up or go back to the old firefox? Thank you.

    Please authorize ADE 3 with same credentials that you used with older version of ADE

  • My iPhone 4 no longer connects to my car or alarm clock after a recent sync to my computer.  The message at I get when trying to. Connect is "this accessory is not optimized for the device" or something like that.  Anyone know how to fix this?

    My iPhone 4 no longer connects to my car or alarm clock after a recent sync to my computer.  The message at I get when trying to. Connect is "this accessory is not optimized for the device" or something like that.  Anyone know how to fix this?

    Hello there philp_69,
    If I understand correctly it sounds like your phone hasnt been recognized in iTunes on your PC since the last couple of updates. I would use the troubleshooting in the following article which will walk you through the steps one by one. 
    iPhone, iPad, or iPod touch not recognized in iTunes for Windows
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • Pl/sql parameter portlet - need some help/advice - how to create

    I want to create a pl/sql portlet that accepts a parameter and on submit passes the parameter to other portlets (sql reports) these are then automatically run to display the new data.
    E.g.
    parameter portlet = deptno
    On submit
    Sql reports then refreshed using the parameter
    I am aware, and have tried the mycompnay demo, which works exactly as I want but the parameter portlet cannot be amended and is written in Java.
    I need a pl/sql equivalent so I can tailor the code.
    Any advice examples or guidance would be really appreciated.
    Thanks in anticipation.
    SD

    Hi,
    You can use a form portlet to accept parameters and then call a report in the success procedure of the form. In this example it calls a report with the value in the flightno field.
    declare
    flightno number;
    blk varchar2(10) := 'DEFAULT';
    begin
    flightno := p_session.get_value_as_varchar2(
    p_block_name => blk,
    p_attribute_name => 'A_FLIGHT_NO');
    call('SJDEMO30.report1.show?p_arg_names=flightno&p_arg_values='||
    flightno);
    end;
    Thanks,
    Sharmila

  • I am trying to use the locate my macbook that was stolen. How do I know if it is set up on the service. It shows on the list but just says it is offline and doesn't say when or where it last was. I am trying to either locate it or erase it. HELP

    I am trying to use the locate my macbook that was stolen. How do I know if it is set up on the service. It shows on the list but just says it is offline and doesn't say when or where it last was. I am trying to either locate it or erase it. HELP

    Since you can see it in your device list it must have Find My Mac activated, but you're going to have to wait for them to take it online in order to either locate, lock or wipe it. Until it goes online you can't do anything. http://www.apple.com/support/icloud/find-my-device/
    iCloud: Locate your device

  • Is there any application or plug in that anyone knows of that could tell me how much free hard drive space i have left on my mac? Thanks so much. . .

    I'm looking for an application or plug in that can tell me how much free space I have available on my hard drive left for my MacBook Air, thanks so much!

    ***Correction***
    The other way to do this is to choose About this Mac under the Apple menu.  When the window appears, click on More Info, and then choose Storage from the selection of tabs at the top.

  • I'm unable to install I Tunes. I get a message "the feature you are trying to use is on a network resource that is unavailble". How do I solve this?

    I'm unable to install I Tunes. I get a message "the feature you are trying to use is on a network resource that is unavailble". How do I solve this? Thanks.

    I am having the same issue for itunes.msi (iPhone 4S and Windows XP)
    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • I have all my music on an external media drive that has crashed. How can I get the music of my ipod touch back onto the comupter without loosing the music when it syncs?

    I have all my music on an external media drive that has crashed. How can I get the music of my ipod touch back onto the comupter without loosing the music when it syncs. in order to start rebuilding my music collection?

    You should be able to recover the media with the tips in  this post from forum regular Zevoneer but I'm not sure what the implications are for your application settings. You can probably transfer your purchases into a newly authorised library, backup the device, recover any other media using third party tools, then restore the device from the backup. That should switch the assocation of the device to the new library but it is not something I've personally tested.
    When you get it all working, make a backup!
    tt2

  • HT1386 I synced (updated) my iphone to itunes and some songs were deleted from my iphone playlist on my phone.  On the computer, a circle is next to the song and the title faded out.  What the heck is that all about and how do I get my songs back onto my

    I synced (updated) my iphone to itunes and some songs were deleted from my iphone playlist on my phone.  On the computer, a circle is next to the song and the title faded out.  What the heck is that all about and how do I get my songs back onto my phone playlist?  Never happened before.  My software is up to date?

    http://support.apple.com/kb/HT2519

Maybe you are looking for

  • My ipod nano (5th gen) will not show up in my computer or in itunes, what shall i do?

    when i plug my ipod nano (5th gen) into my windows 7 laptop it makes the noise to say that it has connected with teh usb port but does not show up in my computer or itunes? i dont know what to do but have already tried the troubleshooting guide on yo

  • 15" AL PB G4 Sleep Problems

    Another in the long list of sleep problems. Running the latest & greatest Tiger and all that. I have read and read and READ! the discussions and followed most of the advise to no avail. Here's what's up. When I try to put the PB to sleep, either by c

  • Soap attachment mapping problem, xop:include

    Hello experts, I am using PI 7.3 I have a senario SOAP to IDOC which SOAP is a sender adapter. My Web Service receives attachment which includes MTOM, xop:include I read the attachment in the message mapping by User-Defined function. But I have anoth

  • RAM macbook pro 13" feb 2009

    I need to upgrade ram in my macbook pro 13" Feb 2009  I was told to use Newegg website but cant find the exact spec needed for this machine, any suggestions?

  • Unplanned depreciation negative in Derived depr area ECC 6.0

    We are trying to post unplanned depreciation in Book1 using ttype 641 and the system is not allowing us to post, as we have a derived depreciation area for Book vs Macrs.. The message is AA639 Unplanned depreciation is negative in area 25.....Where a