webERP Forum

Full Version: SSL Redirect
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I have read some mails and forums regarding SSL. I tried to connect weberp with https after changing "Only allow secure socket connections" to yes. It displays the following error

"ERROR Message Report : webERP is configured to allow only secure socket connections. Pages must be called with https:// ....."

I tried it by adding "https://" still shows the same error.I tested it on my hosting server. I want to know that by adding "https" alone is enough or we need to configure anywhere after getting and applying SSL certificate.

Thanks in Advance...
Well you need to have ssl configured on your web-server first... then check that you can connect to your webERP installation using the https://yourdomain.com/webERP - once this is possible you can set the configuration parameter to require connections only over ssl.
If you wish to set this parameter back and you don't have ssl configured for your web-server (it is impossible to connect to webERP now!!) you need to go into phpMyAdmin or other mysql client and run the following SQL

Code:
UPDATE config SET confvalue='0' WHERE confname='HTTPS_Only';