Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
custom webmail login page
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- custom webmail login page
custom webmail login page
28-11-2008 9:24 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I've been trying to make a webpage on my plusnet webspace that has a username and password box for logging into plusnet webmail the rest of the parameters and the prefex for the username are put in by the page. It works fine when I run the page from my computer but once I upload it it fails with the error "You must be logged in to access this page.". Anyone know how to fix this or is it jsut not allowed to be done.
Message 1 of 7
(2,031 Views)
6 REPLIES 6
Re: custom webmail login page
29-11-2008 12:15 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
could it be something todo with cookies and the way the are being created/requested.
Sorry but no idea until I create something similar
Sorry but no idea until I create something similar

Message 2 of 7
(826 Views)
Re: custom webmail login page
29-11-2008 12:28 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Thats what I was thinking so i did it a different way I was hoping would deal with the cookies properly
"window.open('https://webmail.plus.net/src/redirect.php?login_username=' + document.forms["login"]["login_username"].value + '&secretkey=' + document.forms["login"]["secretkey"].value + '&js_autodetect_results=1&just_logged_in=1&loginServer=PlusNet&rememberLoginServer=true'); "
but the result was the same still the same worked on my computer biit fails while on the webspace.
"window.open('https://webmail.plus.net/src/redirect.php?login_username=' + document.forms["login"]["login_username"].value + '&secretkey=' + document.forms["login"]["secretkey"].value + '&js_autodetect_results=1&just_logged_in=1&loginServer=PlusNet&rememberLoginServer=true'); "
but the result was the same still the same worked on my computer biit fails while on the webspace.
Message 3 of 7
(826 Views)
Re: custom webmail login page
29-11-2008 3:53 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I found out that the problem is the referer it works fine once I disable referer headers in my browser. I think its posible to bypass this with php but i would assume that if its checking the referer then this is not allowed.
Message 4 of 7
(826 Views)
Re: custom webmail login page
30-11-2008 12:16 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
That's impressive!
not sure we if we do hot-linking rejection. theoretically, should work ok
not sure we if we do hot-linking rejection. theoretically, should work ok

Message 5 of 7
(826 Views)
Re: custom webmail login page
30-11-2008 3:21 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
it works fine once you remove the referer info which is pretty simple with php just 1 line
header( 'refresh: 1; url=http://webmail.plus.net/src/redirect.php?login_username=username%2b'.$_GET['username'].'&secretkey='.$_GET['password'].'&js_autodetect_results=0&just_logged_in=0&loginServer=PlusNet&rememberLoginServer=true' );
but alot of places don't liek you removing referer information so i'm not sure if it is allowed or not here.
header( 'refresh: 1; url=http://webmail.plus.net/src/redirect.php?login_username=username%2b'.$_GET['username'].'&secretkey='.$_GET['password'].'&js_autodetect_results=0&just_logged_in=0&loginServer=PlusNet&rememberLoginServer=true' );
but alot of places don't liek you removing referer information so i'm not sure if it is allowed or not here.
Message 6 of 7
(826 Views)
Re: custom webmail login page
30-11-2008 10:39 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Very true, some sites restricting access to their resources to their own site.
it does make sense but not when the service is already limited to specific people then there is no point at all
it does make sense but not when the service is already limited to specific people then there is no point at all

Message 7 of 7
(826 Views)
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- custom webmail login page