Changes between Version 51 and Version 52 of GenFAQ


Ignore:
Timestamp:
Sep 22, 2015, 11:05:41 AM (9 years ago)
Author:
Igor_L
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GenFAQ

    v51 v52  
    3333- [http://www.boonex.com/trac/dolphin/wiki/GenFAQ#HowcanIchangethetimezoneinDolphin How can I change the time zone in Dolphin?] 
    3434- [http://www.boonex.com/trac/dolphin/wiki/GenFAQ#HowcanIchangeadminusernameandorpasswordifIforgotit How can I change admin username and/or password if I forgot it?] 
     35- How can I enable SSL support in Dolphin? 
    3536 
    3637 
     
    379380\\ 
    380381\\ 
    381 \\ 
    382 \\ 
    383 \\ 
    384 \\ 
     382=== How can I enable SSL support in Dolphin? === 
     383 
     384Dolphin already supports SSL "out of the box". 
     385Of course, you need to generate an SSL certificate and get it signed preliminary. 
     386If you need more info on this, look [http://info.ssl.com/Article.aspx?id=10694 here]. 
     387 
     388So, how can you enable SSL in Dolphin? 
     389All you need to do is just edit one file, namely '''inc/header.inc.php'''. 
     390This file contains configuration for your Dolphin installation. 
     391 
     392'''1)''' Find the line starting with something like: 
     393{{{ 
     394$site['url']               = "http://mysite.com/"; 
     395}}} 
     396and replace '''http''' with '''https''': 
     397{{{ 
     398$site['url']               = "https://mysite.com/"; 
     399}}} 
     400 
     401'''2)''' Find the line which looks exactly this way: 
     402{{{ 
     403header( "Location:http://{$aUrl['host']}{$_SERVER['REQUEST_URI']}" ); 
     404}}} 
     405and replace it with 
     406{{{ 
     407header( "Location:https://{$aUrl['host']}{$_SERVER['REQUEST_URI']}" ); 
     408}}} 
     409 
     410Well, this should do the job :-) 
     411 
     412 
    385413= Development FAQ = 
    386414 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.
Fork me on GitHub