Then have the proper public page delivered based on the querystring. If the requesthandler can update the pageloader variable to the correct page, that would be perfect. I’ll try.
OBJECTIVE: I have 3 public access points to my app:
login page
open new account
upload new account docs.
I’d like to be able to pass querystring parameters into the application’s start page / public URL that the app can use to present the correct page to the user, and set a few qodlysource values when the correct page loads.
The url’s seem to work fine using that approach, I just can’t seem to get a request handler to set a qodlysource variable based on a param: ie w=register&qodlysourcevar=6787 using the pattern qodlysourcevar=
The URL maps to the qodly start page i designated in settings.
When the request for the page is submitted in the browser, the url is changed in the browser to: Qodly Studio
I can also manually set urls to return any of my current pages in this manner (ie to return the login page):
They all seem to be returned without issue. I think this may be because i have not yet set permissions?
My Goal: Ideally a public user could access the application with a URL and I could append to url: ?landing_page=page i want to return&usefulcode=6789
The qodly server would, via httprequest handler or other method, set a qodlysource value to 6789 and return the page designated in the landing_page parameter.