This topic is locked

SSL

7/23/2008 2:27:08 AM
PHPRunner General questions
N
nix386 author

Anyone know the easiest way to use SSL with PHPrunner? I have a webserver that has SSL enabled on a subdomain (https://secure.domainname.com)

I have placed the whole phprunner app in this directory which seems to run ok but is allot slower than just using HTTP for user access.
Now my question; Can I just protect the login.php using SSL and then redirect to the HTTP?
I'm looking for suggestions to make this both secure and fast and any thoughts/suggestions would be greatly appreciated.
Cheers, Nick
Oh and I am also after some advise on the Charts using SSL; when I go to any charts the browser reports "This page contains both Secure and Unsecure items, Do you want to display the non-secure items?" What unsecure items is it referring to?

J
Jane 7/23/2008

Nick,
theoretically you can redirect to the HTTP in the After successful login event on the Events tab. In this case you need to pass session variables and re-login. I'm not sure this method increase your security. I recommend you to store all your project on a subdomain.

Regarding the speed. Contact your hosting admin with this problem.
To fix "This page contains both Secure and Unsecure items, Do you want to display the non-secure items?" problem with chart open generated output/libs/plugin/function.show_chart.php file and change URL for codebaseand pluginspage parameters.

N
nix386 author 7/23/2008

Nick,

theoretically you can redirect to the HTTP in the After successful login event on the Events tab. In this case you need to pass session variables and re-login. I'm not sure this method increase your security. I recommend you to store all your project on a subdomain.

Regarding the speed. Contact your hosting admin with this problem.
To fix "This page contains both Secure and Unsecure items, Do you want to display the non-secure items?" problem with chart open generated output/libs/plugin/function.show_chart.php file and change URL for codebaseand pluginspage parameters.


Many thanks as usual Jane, I'll take a look at all you're suggestions....