New User Registration page does not launch

I am setting up a simple process to register a new user to my APEX application. At the login screen, the user can select "new user registration" button if they would like to register for a new id. Well, it was working for awhile and it stopped working sometime after I added the validations for the new registration fields. Now, whenever I launch the login screen and click on the "new user registration" nothing happens. If I bring up the "new user registration" page in the application builder, and click "run", it launches the login screen! I do have redirects back to the login screen in the event that the user clicks "cancel" or "register" on the "new user registration" page.
This is very strange. Does anyone have any ideas as to the cause or how to track this down?
Thanks,
Reid

I'll see if I can put the app on apex.oracle.com. I disabled the redirects and all of the not null validations I had. It's still behaving the way it did.
In the meantime, I noticed this oddity. It seems like there is a mismatch between the URL page # and the actual page that is displayed. Here is what I mean. Here is the url:
http://rilian:8080/apex/f?p=103:8:7659307535557230:::::
See the page should be p=103:8. This is app 103, page 8, right?
Well, that is the correct app and page. However, it displays app 103, page 101.
When I click on the "new user registration" button, the url changes to this:
http://rilian:8080/apex/f?p=103:8:7659307535557230::NO:8::
And, I'm still on page 101, not page 8.
Like I said before, this was working like a champ earlier this week and I went to show my wife how I had it working and boom it stopped. LOL. Murphy's law...
Thanks again,
Reid

Similar Messages

  • When I open a new website, the page does not open, instead it places a tab in the bottom task bar? How can I change the settings so as when I open a new website the page is automatically displayed on my desktop. Thank You!

    When I open a new website, the page does not open, instead it places a tab in the bottom task bar? How can I change the settings so as when I open a new website the page is automatically displayed on my desktop. Thank You!

    Tools > Options > Tabs - is the last preference there check-marked??

  • My home page keeps saying that it is out of date download latest version.after downloading the latest version the new stule home page does not appear==help!!

    home start page does not have mozilla firefox logo it says google? and when l alter it next time l log in its back to google homepage.
    l am a silver surfer so l dont understand all the technical jargons, lam at a loss why l lost my home page in the first place and why lcannot get back to it never mind the latest version lol also l noted it has http at the beginning l thought it is suppose to read https=help, thanking you in anticipation janet watkins

    See this - https://support.mozilla.com/en-US/kb/websites+or+add-ons+incorrectly+report+incompatible+browser

  • Apple Care registration page does not support Safari 3 for Leopard

    I bought the apple care for my imac and was surprised to find Apple does not support their own browser for the online registration. I had to use firefox instead
    Visit
    http://www.apple.com/uk/support/register/
    on your leopard mac and click continue.
    I then got.
    For the best experience, please use a supported web browser.
    Mac:
    - Safari 2.x
    - Microsoft Internet Explorer 5.2 or later
    - Firefox 1.0 or later.
    Windows:
    - Microsoft Internet Explorer 6.0 or later
    - Firefox 1.0 or later.

    When you see this path:   /Library   That is your root Library.
    Open a Finder window.
    Select MacintoshHD in the Sidebar on the left then open the LIbrary folder then the Application Support folder, then InputManagers folder, the Receipts folder.
    For this path:  ~/Library/Application Support  (your Home library)
    The Tilde character ~ represents your Home folder.
    From that same Finder window select your Home folder in the Sidebar. It has a small house icon. Open the Library folder then the Application Support folder.
    Move all the Conduit/CT associated files you posted above to the Trash.
    Try Safari.
    I've yet to find the launchAgents.plist file in any Safari crash report in years. I don't think that's a problem.
    Another way to find files on your hard drive is to go to your Finder.
    From the menu bar at the top of your screen click Go / Go to Folder.
    Example. Type in:  /Library/ApplicationSupport   click Go
    Or type in:  ~/Library/Application Support   click Go

  • When I open 'new' in Yahoo to write a new mail, the page does not show tabs from bold through to indentation. Can only see font and font size tabs

    The only tabs on display are '''font''' and '''font size''' - nothing else. Tabs from bold to indentation are not visible.
    Moreover the arrows to go '''up''' and '''down''' on emails are 'invisible' too.

    You can middle-click or Ctrl left-click the Home button on the Navigation toolbar to open the Home page in a new tab.
    You can look at one of these extensions:
    * NewTabURL : https://addons.mozilla.org/firefox/addon/newtaburl/
    * New Tab Homepage : https://addons.mozilla.org/firefox/addon/new-tab-homepage/

  • Auto login after new user registration

    Hello,
    I would like to go directly to a restricted page (add session variables for username, level, etc) after a new user is registered, without first going to the login page. Is there a way to do this? I tried adding a login user behavior to my new user registration page, but it disabled the form validation on the page. I also tried copying some of the login page code (login transactions) into the new user registration page, but that didn't work either... any help would be greatly appreciated!
    Steve
    BTW, I am not utilizing email activation

    Well I finally figured out a work around... I am sure others will run into this problem and if someone can explain it to me I would be happy. But for now this will work.
    The above code that Steve U posted works for me exactly 50% of the time. It will work every other time, why I don't know. I even changed all of my temp and session directories in php configuration, changed from php5 to php4 and still no fix.
    Here is what I did to get it to work:
    On your registration form underneath the insert transaction you copy and paste the login transaction (that you generate on a login page).
    *Change tNG_login(this is your server connection)
    *Change the POST value to match your submit button on your registration form, mine is KT_Insert1.
    *Modify the redirect trigger to go to the page you want to redirect to after registration.
    *Change the kt_login_user and kt_login_password addColumn values to match the username and password fields in your registration form, mine are email_usr and password_usr
    *comment out the kt_login_rememberme addColumn (or if you need this, modify the code to allow for it in the registration form)
    I have now successfully registered a new account and had it auto-login to the user protected area 10 times in a row now, so this should be working.
    If you want some sample code here it is:
    // Make a login transaction instance
    $loginTransaction = new tNG_login($conn_connection);
    $tNGs->addTransaction($loginTransaction);
    // Register triggers
    $loginTransaction->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "KT_Insert1");
    //$loginTransaction->registerTrigger("BEFORE", "Trigger_Default_FormValidation", 10, $formValidation);
    $loginTransaction->registerTrigger("END", "Trigger_Default_Redirect", 99, "user/confirmlogin.php");
    // Add columns
    $loginTransaction->addColumn("kt_login_user", "STRING_TYPE", "POST", "email_usr");
    $loginTransaction->addColumn("kt_login_password", "STRING_TYPE", "POST", "password_usr");
    //$loginTransaction->addColumn("kt_login_rememberme", "CHECKBOX_1_0_TYPE", "POST", "kt_login_rememberme", "0");
    // End of login transaction instance

  • Query : Addition of extra fields in the User Registration page of portal.

    Hi All,
    I have a query, about adding extra fields in the new user registration page of portal.
    If you can suggest the required source files in details,inorder to incorporate two more fields.
    Say, AGE and COMPANY,with the existing fields in the same page.
    Along with this,can you please send the details of retrieving those information from backend and the backend functionalities associated with the SUBMIT button on the registration page.
    Regards,
    Sudeep

    Hi,
    Your query is divided into two parts.
    The first part is adding new fields into existing form. This feature comes under Branding of portal. Plz use the link below understanding the same and related help :
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/79/affe402a5ff223e10000000a155106/frameset.htm
    The second part is retrieving the values from backend.Here it will be the UME database. You need to develop a logon.par file and replace the same in your portal.
    Happy Customizing.
    Sukanta Rudra

  • ITunes does not launch with new User Account (Vista)

    One of my limited user accounts on Windows Vista because corrupt, so I created a new limited User Account and copied ALL of the files from the old to new.
    Now, when I try to launch itunes on the new user account, it will not open at all. Itunes works on my administrative account, with no problem.
    Can someone tell me the most pain-free way to resolve this issue. And, whatever solution, will I be at risk of losing my itunes libraries?
    Thank you in advance.

    Hiya. Delayed again. Browsers being cranky. (I blame the aftershocks.)
    It's actually plausible that it was installed in there (by doing a run as administrator on the installer itunes64setup.exe, perhaps). Because that suggests a possible cause for these continual permissions-related problems.
    A lot of what you're seeing is consistent with damaged ACLs (access control lists) on files, folders and registry keys. Although it's a lot rarer than it used to be, one of the ways you could get borked ACLs was if a program (like iTunes or QuickTime) was installed in one user account, and then the user account it had been installed in was deleted (or otherwise rendered unusable).
    We don't know which particular permissions are stuffed up here. But there's a shotgun approach to fixing them which used to work okay, although it's a bit fiddlier to do on a 64-bit system than a 32-bit system.
    I'd strongly recommend setting up a system restore point prior to doing this, so you can revert if things turn to custard.
    The basic technique you follow is from the following blog entry *with one important modification.*
    [Solving setup errors by using the SubInACL tool to repair file and registry permissions|http://blogs.msdn.com/b/astebner/archive/2006/09/04/solving-setup-e rrors-by-using-the-subinacl-tool-to-repair-file-and-registry-permissions.aspx]
    The modification is that when you're editing the file to replace YOURUSERNAME with the name of the account, edit the first line so that %ProgramFiles% instead says %ProgramFiles(x86)% and after the line that reads:
    *subinacl /subdirectories %programfiles%\ /grant=administrators=f /grant=system=f /grant=users=e >> %temp%\subinacl_output.txt*
    ... add another line saying:
    *subinacl /subdirectories %programfiles(x86)%\ /grant=administrators=f /grant=system=f /grant=users=e >> %temp%\subinacl_output.txt*
    (The first is to make sure the commands see the subinacl, because it installs in \Program Files (x86)\ on 64-bit systems, and the second alteration is to make sure that the permissions for the 32-bit program files are fixed too.
    After doing that (it'll take a while to run), can itunes launch normally in the new account?

  • My New Tab Page does not work at all. I just have the empty squares with nothing in them at all?

    My New Tab Page does not work at all. I just have the empty squares with nothing in them at all?
    I know how to use about:config & have had the usual problems with newtab page tiles but this is more like a bug- using 33.0.1. Doesn't show tiles icon in top right corner just shows a gear that is used to hide the empty tiles that I can't fill with sites. First it would only show 2 rows of 4 columns even though I had it set to 5 & 6 then few days later for no reason they went empty with a serrated line around the tiles & can't drag from the bookmarks---- really bloody annoying!!!!!!! Possibly a setting in the about:config but i can't fig it out?

    Reset Firefox to its default state
    If you're having major problems which you can't resolve, start fresh with only your essential information.
    Troubleshooting Information
    This page contains technical information that might be useful when you're trying to solve a problem. If you are looking for answers to common questions about Firefox, check out our support website.
    Application Basics
    Name Firefox
    Version 33.0.1
    Update History
    User Agent Mozilla/5.0 (Windows NT 6.1; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0
    Profile Folder
    Enabled Plugins about:plugins
    Build Configuration about:buildconfig
    Memory Use about:memory
    Multiprocess Windows 0/1
    Crash Reports for the Last 3 Days
    Report ID Submitted
    All Crash Reports
    Extensions
    Name Version Enabled ID
    Adblock Plus 2.6.5 true {d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}
    Adblock Plus Pop-up Addon 0.9.2 true [email protected]
    Skype Click to Call 7.3.16540.9015 true {82AF8DCA-6DE9-405D-BD5E-43525BDAD38A}
    Trend Micro BEP Firefox Extension 8.0.0.1173 true [email protected]
    Trend Micro NSC Firefox Extension 6.8.0.1120 true {22C7F6C6-8D67-4534-92B5-529A0EC09405}
    Trend Micro Toolbar 7.0.0.1243 true {22181a4d-af90-4ca3-a569-faed9118d6bc}
    Graphics
    Adapter Description Intel(R) HD Graphics
    Adapter Drivers igdumd64 igd10umd64 igdumdx32 igd10umd32
    Adapter RAM Unknown
    Device ID 0x0046
    Direct2D Enabled true
    DirectWrite Enabled true (6.2.9200.16571)
    Driver Date 1-30-2013
    Driver Version 8.15.10.2993
    GPU #2 Active false
    GPU Accelerated Windows 1/1 Direct3D 11 (OMTC)
    Vendor ID 0x8086
    WebGL Renderer Google Inc. -- ANGLE (Intel(R) HD Graphics Direct3D9Ex vs_3_0 ps_3_0)
    windowLayerManagerRemote true
    AzureCanvasBackend direct2d
    AzureContentBackend direct2d
    AzureFallbackCanvasBackend cairo
    AzureSkiaAccelerated 0
    Important Modified Preferences
    Name Value accessibility.blockautorefresh true
    accessibility.typeaheadfind.flashBar 0
    browser.cache.disk.capacity 358400
    browser.cache.disk.smart_size_cached_value 358400
    browser.cache.disk.smart_size.first_run false
    browser.cache.disk.smart_size.use_old_max false
    browser.cache.frecency_experiment 1
    browser.places.smartBookmarksVersion 7
    browser.sessionstore.upgradeBackup.latestBuildID 20141023194920
    browser.startup.homepage www.google.com
    browser.startup.homepage_override.buildID 20141023194920
    browser.startup.homepage_override.mstone 33.0.1
    browser.tabs.loadInBackground false
    dom.mozApps.used true
    extensions.lastAppVersion 33.0.1
    font.internaluseonly.changed true
    gfx.direct3d.last_used_feature_level_idx 1
    keyword.URL http://www.bing.com/search?FORM=UP97DF&PC=UP97&q=
    media.gmp-gmpopenh264.lastUpdate 1413750166
    media.gmp-gmpopenh264.version 1.1
    media.gmp-manager.lastCheck 1414375733
    network.cookie.prefsMigrated true
    places.database.lastMaintenance 1414404204
    places.history.expiration.transient_current_max_pages 102059
    plugin.disable_full_page_plugin_for_types application/pdf
    plugin.importedState true
    plugin.state.npmedia 0
    plugin.state.nptimegrid 1
    print.printer_Canon_MG2100_series_Printer.print_bgcolor false
    print.printer_Canon_MG2100_series_Printer.print_bgimages false
    print.printer_Canon_MG2100_series_Printer.print_colorspace
    print.printer_Canon_MG2100_series_Printer.print_command
    print.printer_Canon_MG2100_series_Printer.print_downloadfonts false
    print.printer_Canon_MG2100_series_Printer.print_duplex 3997817
    print.printer_Canon_MG2100_series_Printer.print_edge_bottom 0
    print.printer_Canon_MG2100_series_Printer.print_edge_left 0
    print.printer_Canon_MG2100_series_Printer.print_edge_right 0
    print.printer_Canon_MG2100_series_Printer.print_edge_top 0
    print.printer_Canon_MG2100_series_Printer.print_evenpages true
    print.printer_Canon_MG2100_series_Printer.print_footercenter
    print.printer_Canon_MG2100_series_Printer.print_footerleft &PT
    print.printer_Canon_MG2100_series_Printer.print_footerright &D
    print.printer_Canon_MG2100_series_Printer.print_headercenter
    print.printer_Canon_MG2100_series_Printer.print_headerleft &T
    print.printer_Canon_MG2100_series_Printer.print_headerright &U
    print.printer_Canon_MG2100_series_Printer.print_in_color true
    print.printer_Canon_MG2100_series_Printer.print_margin_bottom 0.5
    print.printer_Canon_MG2100_series_Printer.print_margin_left 0.5
    print.printer_Canon_MG2100_series_Printer.print_margin_right 0.5
    print.printer_Canon_MG2100_series_Printer.print_margin_top 0.5
    print.printer_Canon_MG2100_series_Printer.print_oddpages true
    print.printer_Canon_MG2100_series_Printer.print_orientation 0
    print.printer_Canon_MG2100_series_Printer.print_page_delay 50
    print.printer_Canon_MG2100_series_Printer.print_paper_data 1
    print.printer_Canon_MG2100_series_Printer.print_paper_height 11.00
    print.printer_Canon_MG2100_series_Printer.print_paper_name
    print.printer_Canon_MG2100_series_Printer.print_paper_size_type 0
    print.printer_Canon_MG2100_series_Printer.print_paper_size_unit 0
    print.printer_Canon_MG2100_series_Printer.print_paper_width 8.50
    print.printer_Canon_MG2100_series_Printer.print_plex_name
    print.printer_Canon_MG2100_series_Printer.print_resolution 7602290
    print.printer_Canon_MG2100_series_Printer.print_resolution_name
    print.printer_Canon_MG2100_series_Printer.print_reversed false
    print.printer_Canon_MG2100_series_Printer.print_scaling 1.00
    print.printer_Canon_MG2100_series_Printer.print_shrink_to_fit true
    print.printer_Canon_MG2100_series_Printer.print_to_file false
    print.printer_Canon_MG2100_series_Printer.print_unwriteable_margin_bottom 0
    print.printer_Canon_MG2100_series_Printer.print_unwriteable_margin_left 0
    print.printer_Canon_MG2100_series_Printer.print_unwriteable_margin_right 0
    print.printer_Canon_MG2100_series_Printer.print_unwriteable_margin_top 0
    privacy.sanitize.migrateFx3Prefs true
    privacy.sanitize.timeSpan 2
    storage.vacuum.last.index 1
    storage.vacuum.last.places.sqlite 1412311800
    Important Locked Preferences
    Name Value
    JavaScript
    Incremental GC true
    Accessibility
    Activated false
    Prevent Accessibility 0
    Library Versions
    Expected minimum version Version in use
    NSPR 4.10.7 4.10.7
    NSS 3.17.1 Basic ECC 3.17.1 Basic ECC
    NSSSMIME 3.17.1 Basic ECC 3.17.1 Basic ECC
    NSSSSL 3.17.1 Basic ECC 3.17.1 Basic ECC
    NSSUTIL 3.17.1 3.17.1
    Experimental Features
    Name ID Description Active End Date Homepage

  • Firefox is not launching in one user account (just does not react at all) although it works fine in another account on the same laptop

    Have been running Firefox without problem in both my own and my child's account on my laptop. Today, although Firefox still works normally in my own account, it does not launch at all in my child's account. Clicking on either the short cut or via AllPrograms results in the timer starting briefly and then disappearing and nothing happening. I have checked Task Manager and Firefox is not showing as running in the Processes tab. I have tried to set up a new profile in that account to no effect.

    I am having exactly the same problem. This worked on all versions of Firefox up until mid last week. It started failing on Wednesday, coincident with the installation of Firefox 8.0 (see attached gif showing the automatic update on that date).
    To fix the problem, you have to shut down Firefox 8.0 on one account, switch to the other account and then you can run it there.
    If Firefox 8.0 is running on on account, the other account will run Firefox, but when you enter an URL it waits for quite a while then reports "The connection was reset. The connection was reset while the page was loading".
    We also use Thunderbird 8.0 and it does not exhibit this problem, and works at the same time as Firefox 8.0. I suspect they might share some components.
    I'd be happy to supply more details if needed.
    Thanks,
    Ed

  • Firefox is not handling Skype new user registration properly.

    When I attempt to register a new skype account (on skype.com) I get one of 2 responses. One is that it brings me back to an empty new user registration form, and the other is that it acts like it finished but the user is never actually created. This was duplicated on multiple Intel based mac laptops running 10.6.x on Firefox 4. New user registration works fine in Safari and Chrome on these machines.

    I also have this problem. I cannot open links from a discussion board I frequent nor can I open links from my email. Also after opening my email, I cannot go to any other sites except my home page. I can then go no where else.
    When I close Firefox and try to reopen it, it does nothing! I have to bring up the Task Manager and end the Firefox process before I can get back in.
    To the best of my knowledge, this problem started with the new update to Ver. 3.6.9. I am running Windows XP Media Center 2005

  • HT1941 Hi i have recently updated my version of iTunes in order to sync music from my macbook air to my new ipod shuffle. After a successful installation the application does not launch and I am unable to oepn iTunes of access my music! Someone please hel

    Hi,
    I have recently updated my iTunes to the latest version in order to sync music onto my new ipod shuffle. However after a successful installation the application does not launch or open? There are no error messages. The application is just unresponsive.
    I have already checked the compatibility with Safari, my operating system and checked my firewall is not blocking it - all is fine.
    Does anyone have any other resolutions?
    Many thanks

    Hi Carolyn,
    Thank you for your time and response. The trouble is I am unable to launch iTunes? I have restarted my macbook air a number of times to try and initiate the application but the issue persists and the application remains unresponsive. Will not launch?
    Thanks

  • When I click on the tab with a + on it, located next to the active tab a new page does not open. If I click on "New Tab" in the File menu a new tab does not ope

    When I click on the tab with a + on it, located next to the active tab a new page does not open. If I click on "New Tab" in the File menu a new tab does not open.

    Hi jcatx2013, we don't really have enough information on your system to make specific suggestions...
    Could you test in Firefox's Safe Mode? That's a standard diagnostic tool to bypass interference by extensions (and some custom settings). More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using
    Help > Restart with Add-ons Disabled
    In the dialog, click "Start in Safe Mode" (''not'' Reset)
    Any difference?

  • I re-set password using specific user ID but when I put new password in it does not say incorrect password  it just spins and spins never accepting it.  What is the problem?

    I re-set password using specific user ID but when I put new password in it does not say incorrect password  it just spins and spins never accepting it.  What is the problem?

    Update on my problem connecting in Itunes with my Airport Express. Not sure if anything I tried made a difference
    but I finally got the Pop up window saying this device requires a Password. I entered the password and I can once again use the Airport Express as a remote speaker.

  • After hard drive crash, Pages app brought over, and upgrade to snow leopard installed, Pages would not launch.  Re-downloaded the 3.0.3 update and Pages launched, but will not open any documents or start new document.

    After a hard-drive crash, Pages application was brought over from the old hard drive, and upgraded to snow leopard.  However, Pages would not launch.  I do not have the disks and the computer was given to me by my son with iWork 08 installed, so I do not have the ability to re-install using Purchases.  I re-installed the update 3.0.3, which I already had, but thought it worth a try.  That enabled Pages to launch, but it will not open a new or old document.  I can see in preview the document, but it will not open.  Any suggestions besides repurchasing Pages.  I've just put out a lot of money for a new hard drive and retrieval of apps and docs from the old hard drive and would like not to have to put more money in it. 
    Thanks for any suggestions.

    You can not simply drag over Pages, particularly if it was perhaps damaged in a crash.
    As it was only Pages '08 it may be time to upgrade to Pages '09 from the App Store. It is not that expensive and will allow you to install it on any Mac sharing the same Apple I.D. and protect you from a repeat of this problem.
    There are free alternatives to Pages if you are hard strapped, it depends on what you are using Pages for, it is not the only option by far.
    Peter

Maybe you are looking for

  • Transferring iMac 27" to my Macbook Pro and not using Migration Assistant?

    Hello, I have my new iMac all set up and used Migration Assistant from my old iMac but created a new user account when I first set up my iMac and chose the do not migrate option. I didn't have the right Firewire cord so had to use Migration Assistant

  • Stupid technology...

    OMG, the most stupidest thing happens... when I start up iTunes, it like downloads one or two subscription podcasts, and then freezes! This happens whether my 5 gen video is plugged in or not! I'm really hoping that the computer hasn't gotten a bug o

  • For GRC 5.3 can I use the SAP GRC 5.2 rule set

    We are going for an upgrade to GRC 5.3,  I have a small concern here.... Can I use the same ruleset what I used in GRC 5.2 to SAP GRC5.3 ...? because when I checked ruleset at permission level in GRC 5.2 it displays first object of an action from one

  • How to get FCP edited footage on DVD?

    I need some help, how do I get a FPC edited file on DVD? I assume I need to export the file but what then? OK I have recently bought my Mac Pro and used to use Coral Pro X2 (which had burn dvd). Any suggestions?

  • Adding Quality blocked stock in to warehouse stock

    Hi All I cannot find a way of adding Quality Restricted stock in to our warehouse in one movement. Normally we use MB1A mvt 222 to add returned unused stock in to the warehouse with reference to a WBS. Then we use MB1B mvt 322 or 344 to quality restr