7 * To make this script a bit more simpler to figure out, here is a listing of the "state"(s)
8 * which are basically the steps that this installation script goes through.
10 * empty or 0 - Ensures required file and directory permission are correctly set prior to starting installation.
11 * 1 - Step 1: Select database setup (ie. create the database or use a database already initialized)
12 * 2 - Step 2: Enter in database and openemr user information
13 * 3 - Step 3: Create database
14 * 4 - Step 4: Instructions on configuring PHP
15 * 5 - Step 5: Instructions on configuring Apache
16 * 6 - Step 6: Select a theme
17 * 7 - Final step: Several miscellaneous instruction, login credentials, and link to OpenEMR
20 * @link https://www.open-emr.org
21 * @author Roberto Vasquez <robertogagliotta@gmail.com>
22 * @author Scott Wakefield <scott@npclinics.com.au>
23 * @author Ranganath Pathak <pathak@scrs1.org>
24 * @author Brady Miller <brady.g.miller@gmail.com>
25 * @copyright Copyright (c) 2016 Roberto Vasquez <robertogagliotta@gmail.com>
26 * @copyright Copyright (c) 2016 Scott Wakefield <scott@npclinics.com.au>
27 * @copyright Copyright (c) 2019 Ranganath Pathak <pathak@scrs1.org>
28 * @copyright Copyright (c) 2019-2021 Brady Miller <brady.g.miller@gmail.com>
29 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
32 // Checks if the server's PHP version is compatible with OpenEMR:
33 require_once(dirname(__FILE__
) . "/src/Common/Compatibility/Checker.php");
34 $response = OpenEMR\Common\Compatibility\Checker
::checkPhpVersion();
35 if ($response !== true) {
36 die(htmlspecialchars($response));
39 // Set the maximum excution time and time limit to unlimited.
40 ini_set('max_execution_time', 0);
41 ini_set('display_errors', 0);
44 // Warning. If you set $allow_multisite_setup to true, this is a potential security vulnerability.
45 // Recommend setting it back to false (or removing this setup.php script entirely) after you
46 // are done with the multisite procedure.
47 $allow_multisite_setup = false;
49 // Warning. If you set $allow_cloning_setup to true, this is a potential security vulnerability.
50 // Recommend setting it back to false (or removing this setup.php script entirely) after you
51 // are done with the cloning setup procedure.
52 $allow_cloning_setup = false;
53 if (!$allow_cloning_setup && !empty($_REQUEST['clone_database'])) {
54 require_once(dirname(__FILE__
) . "/src/Common/Session/SessionUtil.php");
55 OpenEMR\Common\Session\SessionUtil
::setupScriptSessionStart();
56 OpenEMR\Common\Session\SessionUtil
::setupScriptSessionCookieDestroy();
57 die("To turn on support for cloning setup, need to edit this script and change \$allow_cloning_setup to true. After you are done setting up the cloning, ensure you change \$allow_cloning_setup back to false or remove this script altogether");
60 function recursive_writable_directory_test($dir)
62 // first, collect the directory and subdirectories
63 $ri = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir));
65 foreach ($ri as $file) {
67 if (!preg_match("/\.\.$/", $file->getPathname())) {
68 $dirName = realpath($file->getPathname());
69 if (!in_array($dirName, $dirNames)) {
70 $dirNames[] = $dirName;
76 // second, flag the directories that are not writable
77 $resultsNegative = array();
78 foreach ($dirNames as $value) {
79 if (!is_writable($value)) {
80 $resultsNegative[] = $value;
84 // third, send the output and return if didn't pass the test
85 if (!empty($resultsNegative)) {
89 foreach ($resultsNegative as $failedDir) {
90 if (basename($failedDir) == basename($dir)) {
91 // need to reorder output so the main directory is at the top of the list
92 $mainDirTest = "<span class='text-danger'>UNABLE</span> to open directory '" . text(realpath($failedDir)) . "' for writing by web server.<br />\r\n";
94 $outputs[] = "<span class='text-danger'>UNABLE</span> to open subdirectory '" . text(realpath($failedDir)) . "' for writing by web server.<br />\r\n";
98 // need to reorder output so the main directory is at the top of the list
99 array_unshift($outputs, $mainDirTest);
101 foreach ($outputs as $output) {
104 echo "(configure directory permissions; see below for further instructions)</p>\r\n";
107 echo "<code class='ml-5'>" . text(realpath($dir)) . "</code> directory and its subdirectories are <span class='text-success font-weight-bold'>ready</span>.<br /><br />\r\n";
112 // Include standard libraries/classes
113 require_once dirname(__FILE__
) . "/vendor/autoload.php";
115 use OpenEMR\Common\Csrf\CsrfUtils
;
116 use OpenEMR\Common\Session\SessionUtil
;
117 use OpenEMR\Common\Utils\RandomGenUtils
;
119 $state = isset($_POST["state"]) ?
($_POST["state"]) : '';
120 $installer = new Installer($_REQUEST);
121 // Make this true for IPPF.
122 $ippf_specific = false;
124 $error_page_end = <<<EPE
127 </div><!--end of container div-->
132 // If this script was invoked with no site ID, then ask for one. (only if allow multisite is on, otherwise will assume default site)
133 if (empty($_REQUEST['site']) && $allow_multisite_setup && empty($state)) {
138 <title>OpenEMR Setup Tool</title>
139 <link rel="stylesheet" href="public/assets/bootstrap/dist/css/bootstrap.min.css">
140 <script src="public/assets/jquery/dist/jquery.min.js"></script>
141 <script src="public/assets/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
142 <link rel="stylesheet" href="public/assets/@fortawesome/fontawesome-free/css/all.min.css">
143 <link rel="shortcut icon" href="public/images/favicon.ico" />
151 <nav class="navbar navbar-expand navbar-light bg-light">
152 <div class="container">
153 <a class="navbar-brand" href="#">OpenEMR Setup</a>
154 <div class="collapse navbar-collapse justify-content-end">
155 <ul class="navbar-nav">
156 <li class="nav-item active">
157 <a class="nav-link" href="#" data-target="#myModal" data-toggle="modal" href="#" id="help-href" name="help-href" title="Click to view Help">Help</span></a>
164 <div class='container mt-3'>
167 <h3 class="mb-3 border-bottom">Optional Site ID Selection</h3>
168 <div class="jumbotron p-5">
170 Most OpenEMR installations support only one site. If that is
171 true for you then ignore the rest of this text and just click Continue.
173 <p class='p-2 bg-warning'>
174 If you are using the multisite setup module for the first time please read the
175 'Multi Site Installation' section of the help file before proceeding.
178 Otherwise please enter a unique Site ID here.
181 A Site ID is a short identifier with no spaces or special
182 characters other than periods or dashes. It is case-sensitive and we
183 suggest sticking to lower case letters for ease of use.
186 If each site will have its own host/domain name, then use that
187 name as the Site ID (e.g. www.example.com).
190 The site ID is used to identify which site you will log in to.
191 If it is a hostname then it is taken from the hostname in the URL.
192 Otherwise you must append "?site=<i>siteid</i>" to the URL used for
196 It is OK for one of the sites to have "default" as its ID. This
197 is the ID that will be used if it cannot otherwise be determined.
201 <input type='hidden' name='state' value='0' />
202 <div class="form-row">
203 <div class="col-auto">
207 <input type='text' class='form-control' name='site' value='default'>
209 <div class="col-12 mt-3">
210 <button type='submit' class='btn btn-primary' value='Continue'><i class="fas fa-chevron-right"></i> Continue</button>
217 </div><!--end of container div-->
219 echo $site_id . "\r\n";
220 $installer->setupHelpModal();
221 echo "</body>" . "\r\n";
222 echo "</html>" . "\r\n";
227 // Support "?site=siteid" in the URL, otherwise assume "default".
228 $site_id = 'default';
229 if (!empty($_REQUEST['site'])) {
230 $site_id = trim($_REQUEST['site']);
233 // Die if site ID is empty or has invalid characters.
234 if (empty($site_id) ||
preg_match('/[^A-Za-z0-9\\-.]/', $site_id)) {
235 SessionUtil
::setupScriptSessionStart();
236 SessionUtil
::setupScriptSessionCookieDestroy();
237 die("Site ID '" . text($site_id) . "' contains invalid characters.");
240 // If multisite is turned off, then only allow default for site.
241 if (!$allow_multisite_setup && $site_id != 'default') {
242 SessionUtil
::setupScriptSessionStart();
243 SessionUtil
::setupScriptSessionCookieDestroy();
244 die("To turn on support for multisite setup, need to edit this script and change \$allow_multisite_setup to true. After you are done setting up the cloning, ensure you change \$allow_multisite_setup back to false or remove this script altogether");
247 // Disable file and directory permissions check by setting to false
248 $checkPermissions = true;
250 global $OE_SITE_DIR; // The Installer sets this
252 $docsDirectory = "$OE_SITE_DIR/documents";
254 //These are files and dir checked before install for
255 // correct permissions.
256 if (is_dir($OE_SITE_DIR)) {
257 $writableFileList = array($installer->conffile
);
258 $writableDirList = array($docsDirectory);
260 $writableFileList = array();
261 $writableDirList = array($OE_SITES_BASE);
264 // Include the sqlconf file if it exists yet.
266 if (file_exists($installer->conffile
)) {
267 require_once($installer->conffile
);
268 } elseif ($state > 3) {
269 // State 3 should have created the site directory if it is missing.
270 SessionUtil
::setupScriptSessionStart();
271 SessionUtil
::setupScriptSessionCookieDestroy();
272 die("Internal error, site directory is missing.");
275 // Should never have $config set when state less than 4
276 // (this means already installed)
277 if (!empty($config) && (($state ??
0) < 4)) {
278 SessionUtil
::setupScriptSessionStart();
279 SessionUtil
::setupScriptSessionCookieDestroy();
280 error_log("OpenEMR has already been installed. If you wish to force re-installation, then edit " . errorLogEscape($installer->conffile
) . " (change the 'config' variable to 0), and re-run the setup.php script.");
281 die("OpenEMR has already been installed. If you wish to force re-installation, see log for details.<br />\n");
284 // This will effectively only allow entry into the setup.php script at the first step and will bar entry to the
285 // script if openemr has already been installed.
286 // 2 mechanisms are also in place to ensure go through script in chronological order
287 // - a session variable tracks the next state expected and kills script is not correct
288 // - only the next state csrf is handed out in the form
290 // ensure not already installed
291 if (!empty($config)) {
292 SessionUtil
::setupScriptSessionStart();
293 SessionUtil
::setupScriptSessionCookieDestroy();
294 error_log("OpenEMR has already been installed. If you wish to force re-installation, then edit " . errorLogEscape($installer->conffile
) . " (change the 'config' variable to 0), and re-run the setup.php script.");
295 die("OpenEMR has already been installed. If you wish to force re-installation, see log for details.<br />\n");
297 // set up new blank session and csrf mechanism
298 SessionUtil
::setupScriptSessionStart();
299 session_regenerate_id(true);
301 CsrfUtils
::setupCsrfKey();
303 // start up session and check csrf
304 SessionUtil
::setupScriptSessionStart();
305 $state = (int)$state;
307 if (($state > 0) && ($state < 8)) {
308 $verifyCsrf = CsrfUtils
::verifyCsrfToken($_POST["csrf_token_form"], "state" . $state);
310 SessionUtil
::setupScriptSessionCookieDestroy();
311 die("Not authorized (invalid state)");
314 SessionUtil
::setupScriptSessionCookieDestroy();
315 die("Not authorized (invalid csrf)");
318 // ensure correct state is going (ie. do not allow users to muck around with this)
319 if ($_SESSION['bootstrapStateInSetup'] != $state) {
320 SessionUtil
::setupScriptSessionCookieDestroy();
321 die("Not authorized (incorrect state)");
324 // ensure that users are not mucking with database settings
327 ($sqlconf["host"] != $installer->server
) ||
328 ($sqlconf["port"] != $installer->port
) ||
329 ($sqlconf["dbase"] != $installer->dbname
) ||
330 ($sqlconf["login"] != $installer->login
) ||
331 ($sqlconf["pass"] != $installer->pass
)
333 SessionUtil
::setupScriptSessionCookieDestroy();
334 die("Not authorized (database)");
338 // state 7 is last state so might as well kill the session now to ensure no funny business
340 SessionUtil
::setupScriptSessionCookieDestroy();
347 <title
>OpenEMR Setup Tool
</title
>
348 <!--<link rel
=stylesheet href
="interface/themes/style_blue.css">-->
349 <link rel
="stylesheet" href
="public/assets/bootstrap/dist/css/bootstrap.min.css">
350 <script src
="public/assets/jquery/dist/jquery.min.js"></script
>
351 <script src
="public/assets/bootstrap/dist/js/bootstrap.bundle.min.js"></script
>
352 <link rel
="stylesheet" href
="public/assets/@fortawesome/fontawesome-free/css/all.min.css">
353 <link rel
="shortcut icon" href
="public/images/favicon.ico" />
358 border
-collapse
:collapse
;
360 table
.phpset td
, table
.phpset th
{
362 border
:1px solid gray
;
365 .table
.no
-border tr td
, .table
.no
-border tr th
{
377 font
-family
:sans
-serif
;
385 .label
-div
:hover
> a
{
386 display
:inline
-block
;
391 margin
: 10px
15px
0px
15px
;
393 div
[id$
="_info"] > a
{
397 display
: inline
-block
;
400 .checkboxgroup label
{
413 font
-size
: 70%
!important
;
416 background
-color
: #f5f5f5;
425 fieldset
> [class*="col-"] {
427 text
-align
:left
!Important
;
432 // onclick handler for "clone database" checkbox
433 function cloneClicked() {
434 var cb
= document
.forms
[0].clone_database
;
435 $
('.noclone').css('display', cb
.checked ?
'none' : 'block');
441 <nav
class="navbar navbar-expand navbar-light bg-light">
442 <div
class="container">
443 <a
class="navbar-brand" href
="#">OpenEMR Setup
</a
>
444 <div
class="collapse navbar-collapse justify-content-end">
445 <ul
class="navbar-nav">
446 <li
class="nav-item active">
447 <a
class="nav-link" href
="#" data
-target
="#myModal" data
-toggle
="modal" href
="#" id
="help-href" name
="help-href" title
="Click to view Help">Help
</span
></a
>
453 <div
class='mt-3 container'>
457 $error = "<span class='text-danger font-weight-bold'>ERROR</span>";
458 $caution = "<span class='text-danger font-weight-bold'>CAUTION</span>";
459 $ok = "<span class='text-success font-weight-bold'>OK</span>";
460 $note = "<span class='text-primary font-weight-bold'>NOTE</span>";
462 if (strtolower(ini_get('register_globals')) != 'off' && (bool) ini_get('register_globals')) {
463 echo "$caution: It appears that you have register_globals enabled in your php.ini\n" .
464 "configuration file. This causes unacceptable security risks. You must\n" .
465 "turn it off before continuing with installation.\n";
469 if (!extension_loaded("xml")) {
470 echo "$error: PHP XML extension missing. To continue, install PHP XML extension, then restart web server.";
474 if (!(extension_loaded("mysql") ||
extension_loaded("mysqlnd") ||
extension_loaded("mysqli"))) {
475 echo "$error: PHP MySQL extension missing. To continue, install and enable MySQL extension, then restart web server.";
479 if (!(extension_loaded("mbstring") )) {
480 echo "$error: PHP mb_string extension missing. To continue, install and enable mb_string extension, then restart web server.";
484 if (!(extension_loaded("openssl") )) {
485 echo "$error: PHP openssl extension missing. To continue, install PHP openssl extension, then restart web server.";
493 <h3
class="mb-3 border-bottom">Final step
- Success
</h3
>
494 <div
class="jumbotron p-5">
495 <p
>Congratulations
! OpenEMR is now installed
.</p
>
497 <li
>Access
controls (php
-GACL
) are installed
for fine
-grained security
, and can be administered in
498 OpenEMR
's admin->acl menu.</li>
499 <li>Reviewing <code> <?php echo text($OE_SITE_DIR); ?>/config.php </code> is a good idea. This file
500 contains some settings that you may want to change.</li>
501 <li>There's much information
and many extra tools bundled within the OpenEMR installation directory
.
502 Please refer to openemr
/Documentation
. Many forms
and other useful scripts can be found at openemr
/contrib
.</li
>
503 <li
>To ensure a consistent look
and feel throughout the application
,
504 <a href
='http://www.mozilla.org/products/firefox/'>Firefox
</a
> and <a href
="https://www.google.com/chrome/browser/desktop/index.html">Chrome
</a
> are recommended
. The OpenEMR development team exclusively tests with modern versions of these browsers
.</li
>
505 <li
>The OpenEMR project home page
, documentation
, and forums can be found at
<a href
= "https://www.open-emr.org" rel
='noopener' target
="_blank">https
://www.open-emr.org</a></li>
506 <li
>We pursue grants to help fund the future development of OpenEMR
. To apply
for these grants
, we need to estimate how many times this program is installed
and how many practices are evaluating
or using this software
. It would be awesome
if you would email us at
<a href
="mailto:hello@open-emr.org">hello@open
-emr
.org
</a
> if you have installed this software
. The more details about your plans with this software
, the better
, but even just sending us an email stating you just installed it is very helpful
.</li
>
508 <p
>We recommend you
print these instructions
for future reference
.</p
>
510 echo "<p> The selected theme is :</p>";
511 $installer->displayNewThemeDiv();
512 if (empty($installer->clone_database
)) {
513 echo "<p><b>The initial OpenEMR user is <span class='text-primary'>'" . text($installer->iuser
) . "'</span> and the password is <span class='text-primary'>'" . text($installer->iuserpass
) . "'</span></b></p>";
515 echo "<p>The initial OpenEMR user name and password is the same as that of source site <b>'" . text($installer->source_site_id
) . "'</span></b></p>";
517 echo "<p>If you edited the PHP or Apache configuration files during this installation process, then we recommend you restart your Apache server before following below OpenEMR link.</p>";
518 echo "<p>In Linux use the following command:</p>";
519 echo "<p><code>sudo apachectl -k restart</code></p>";
522 <p
>Click to start using OpenEMR
.</p
>
525 <a href
='./?site=<?php echo attr_url($site_id); ?>' class='btn btn-primary'>
526 <i
class="fas fa-chevron-right"></i
> Start
533 $installer->setCurrentTheme();
538 </div><!--end of container div-->
540 echo $end_div . "\r\n";
541 $installer->setupHelpModal();
542 echo "</body>" . "\r\n";
543 echo "</html>" . "\r\n";
551 $inst = isset($_POST["inst"]) ?
($_POST["inst"]) : '';
555 $_SESSION['bootstrapStateInSetup'] = 2;
556 $state_esc = text($state);
557 $site_id_esc = attr($site_id);
558 $csrf_id_esc = attr(CsrfUtils
::collectCsrfToken('state2'));
560 <h3 class="mb-3 border-bottom">Step $state_esc - Select Database Setup</h3>
561 <div class="jumbotron p-5">
562 <p>Now I need to know whether you want me to create the database on my own or if you have already created the database for me to use. For me to create the database, you will need to supply the MySQL root password.</p>
564 <p class='p-1 bg-warning'>$caution: clicking on <span class="font-weight-bold">Proceed to Step 2</span> may delete or cause damage to existing data on your system. Before you continue <span class="font-weight-bold">please backup your data</span>.</p>
567 <input name='state' type='hidden' value='2' />
568 <input name='site' type='hidden' value='$site_id_esc' />
569 <input name='csrf_token_form' type='hidden' value='$csrf_id_esc' />
570 <div class="form-check">
571 <input checked class='form-check-input' id='inst1' name='inst' type='radio' value='1' />
572 <label class="form-check-label" for="inst1">
573 Have setup create the database
577 <div class="form-check">
578 <input id='inst2' class='form-check-input' name='inst' type='radio' value='2' />
579 <label class="form-check-label" for="inst2">
580 I have already created the database
583 <div class="form-group">
584 <div class="col mt-3">
585 <button type='submit' class='btn btn-primary' value='Continue'>
586 <i class="fas fa-chevron-right"></i> Proceed to Step 2
594 echo $step1 . "\r\n";
598 $_SESSION['bootstrapStateInSetup'] = 3;
599 $state_esc = text($state);
600 $site_id_esc = attr($site_id);
601 $inst_esc = attr($inst);
602 $csrf_id_esc = attr(CsrfUtils::collectCsrfToken('state3'));
603 $step2top = <<<STP2TOP
604 <h3 class="mb-3 border-bottom">Step $state_esc - Database and OpenEMR Initial User Setup Details</h3>
605 <div class="jumbotron p-5">
606 <p>Now you need to supply the MySQL server information and path information. Detailed instructions on each item can be found in the
607 <a href='Documentation/INSTALL' rel='noopener' target='_blank'><u>'INSTALL'</u>
610 <form method='post' id='myform'>
611 <input name='state' type='hidden' value='3' />
612 <input name='site' type='hidden' value='$site_id_esc' />
613 <input name='inst' type='hidden' value='$inst_esc' />
614 <input name='csrf_token_form' type='hidden' value='$csrf_id_esc' />
616 echo $step2top . "\r\n";
619 $step2tabletop1 = <<<STP2TBLTOP1
621 <legend name="form_legend" id="form_legend" class='oe-setup-legend'>MySQL Server Details<i id="enter-details-tooltip" class="fa fa-info-circle oe-text-black oe-superscript enter-details-tooltip" aria-hidden="true"></i></legend>
622 <div class="ml-2 row">
623 <div class="col-sm-4">
624 <div class="clearfix form-group">
625 <div class="label-div">
626 <label class="font-weight-bold" for="server">Server Host:</label>
627 <a href="#server_info" class="info-anchor icon-tooltip" data-toggle="collapse" ><i class="fa fa-question-circle" aria-hidden="true"></i></a>
630 <input name='server' id='server' type='text' class='form-control' value='localhost' />
633 <div id="server_info" class="collapse">
634 <a href="#server_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
635 <p>If you run MySQL and Apache/PHP on the same computer, then leave this as 'localhost'.</p>
636 <p>If they are on separate computers, then enter the IP address of the computer running MySQL.</p>
639 <div class="col-sm-4">
640 <div class="clearfix form-group">
641 <div class="label-div">
642 <label class="font-weight-bold" for="port">Server Port:</label>
643 <a href="#port_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
646 <input name='port' id='port' type='text' class='form-control' value='3306' />
649 <div id="port_info" class="collapse">
650 <a href="#port_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
651 <p>This is the MySQL port.</p>
652 <p>The default port for MySQL is 3306.</p>
655 <div class="col-sm-4">
656 <div class="clearfix form-group">
657 <div class="label-div">
658 <label class="font-weight-bold" for="dbname">Database Name:</label> <a href="#dbname_info" class="info-anchor icon-tooltip" data-toggle="collapse" ><i class="fa fa-question-circle" aria-hidden="true"></i></a>
661 <input name='dbname' id='dbname' type='text' class='form-control' value='openemr' />
664 <div id="dbname_info" class="collapse">
665 <a href="#dbname_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
666 <p>This will be the name of the OpenEMR database in MySQL.</p>
667 <p>'openemr' is the recommended name.</p>
668 <p>This database will contain patient data as well as data pertaining to the OpenEMR installation.</p>
672 <div class="ml-2 row">
673 <div class="col-sm-4">
674 <div class="clearfix form-group">
675 <div class="label-div">
676 <label class="font-weight-bold" for="login">Login Name:</label> <a href="#login_info" class="info-anchor icon-tooltip" data-toggle="collapse" ><i class="fa fa-question-circle" aria-hidden="true"></i></a>
679 <input name='login' ID='login' type='text' class='form-control' value='openemr' />
682 <div id="login_info" class="collapse">
683 <a href="#login_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
684 <p>This is the name that OpenEMR will use to login to the MySQL database.</p>
685 <p>'openemr' is the recommended name.</p>
688 <div class="col-sm-4">
689 <div class="clearfix form-group">
690 <div class="label-div">
691 <label class="font-weight-bold" for="pass">Password:</label>
692 <a href="#pass_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
695 <input name='pass' id='pass' class='form-control' type='password' value='' required />
698 <div id="pass_info" class="collapse">
699 <a href="#pass_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
700 <p>This is the Login Password that OpenEMR will use to accesses the MySQL database.</p>
701 <p>It should be at least 12 characters long and composed of both numbers and letters.</p>
702 <p>It cannot contain any of these characters: \ ; ( ) < > / ' "</p>
706 echo $step2tabletop1 . "\r\n";
708 $step2tabletop2 = <<<STP2TBLTOP2
709 <div class="col-sm-4">
710 <div class="clearfix form-group">
711 <div class="label-div">
712 <label class="font-weight-bold" for="root">Name for Root Account:</label>
713 <a href="#root_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
716 <input name='root' id='root' type='text' class='form-control' value='root' />
719 <div id="root_info" class="collapse">
720 <a href="#root_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
721 <p>This is name for the MySQL root account.</p>
722 <p>For localhost, it is usually ok to leave it as 'root'.</p>
726 <div class="ml-2 row">
727 <div class="col-sm-4">
728 <div class="clearfix form-group">
729 <div class="label-div">
730 <label class="font-weight-bold" for="rootpass">Root Password:</label>
731 <a href="#rootpass_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
734 <input name='rootpass' id='rootpass' type='password' class='form-control' value='' />
737 <div id="rootpass_info" class="collapse">
738 <a href="#rootpass_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
739 <p>This is your MySQL server root password.</p>
742 <div class="col-sm-4">
743 <div class="clearfix form-group">
744 <div class="label-div">
745 <label class="font-weight-bold" for="loginhost">User Hostname:</label>
746 <a href="#loginhost_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
749 <input name='loginhost' id='loginhost' type='text' class='form-control' value='localhost' />
752 <div id="loginhost_info" class="collapse">
753 <a href="#loginhost_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
754 <p>If you run Apache/PHP and MySQL on the same computer, then leave this as 'localhost'.</p>
755 <p>If they are on separate computers, then enter the IP address of the computer running Apache/PHP.</p>
758 <div class="col-sm-4">
759 <div class="clearfix form-group">
760 <div class="label-div">
761 <label class="font-weight-bold" for="collate">UTF-8 Collation:</label> <a href="#collate_info" class="info-anchor icon-tooltip" data-toggle="collapse" ><i class="fa fa-question-circle" aria-hidden="true"></i></a>
764 <select name='collate' id=='collate' class='form-control'>
765 <option selected value='utf8mb4_general_ci'>
766 General (Recommended)
768 <option value='utf8mb4_unicode_ci'>
771 <option value='utf8mb4_roman_ci'>
774 <option value='utf8mb4_croatian_ci'>
777 <option value='utf8mb4_czech_ci'>
780 <option value='utf8mb4_danish_ci'>
783 <option value='utf8mb4_esperanto_ci'>
786 <option value='utf8mb4_estonian_ci'>
789 <option value='utf8mb4_german2_ci'>
792 <option value='utf8mb4_hungarian_ci'>
795 <option value='utf8mb4_icelandic_ci'>
798 <option value='utf8mb4_latvian_ci'>
801 <option value='utf8mb4_lithuanian_ci'>
804 <option value='utf8mb4_persian_ci'>
807 <option value='utf8mb4_polish_ci'>
810 <option value='utf8mb4_romanian_ci'>
813 <option value='utf8mb4_sinhala_ci'>
816 <option value='utf8mb4_slovak_ci'>
819 <option value='utf8mb4_slovenian_ci'>
822 <option value='utf8mb4_spanish_ci'>
825 <option value='utf8mb4_spanish2_ci'>
826 Spanish (Traditional)
828 <option value='utf8mb4_swedish_ci'>
831 <option value='utf8mb4_turkish_ci'>
834 <option value='utf8mb4_vietnamese_ci'>
840 <div id="collate_info" class="collapse">
841 <a href="#collate_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
842 <p>This is the collation setting for MySQL.</p>
843 <p>Collation refers to a set of rules that determine how data is sorted and compared in a database.</p>
844 <p>Leave as 'General' if you are not sure.</p>
845 <p>If the language you are planning to use in OpenEMR is in the menu, then you can select it.</p>
846 <p>Otherwise, just select 'General'.</p>
851 echo $step2tabletop2 . "\r\n";
853 // Include a "source" site ID drop-list and a checkbox to indicate
854 // if cloning its database. When checked, do not display initial user
855 // and group stuff below.
856 $dh = opendir($OE_SITES_BASE);
858 die("Cannot read directory '" . text($OE_SITES_BASE) . "'.");
861 $siteslist = array();
862 while (false !== ($sfname = readdir($dh))) {
863 if (substr($sfname, 0, 1) == '.') {
867 if ($sfname == 'CVS') {
871 if ($sfname == $site_id) {
875 $sitedir = "$OE_SITES_BASE/$sfname";
876 if (!is_dir($sitedir)) {
880 if (!is_file("$sitedir/sqlconf.php")) {
884 $siteslist[$sfname] = $sfname;
888 // If this is not the first site...
889 if (!empty($siteslist)) {
891 $source_site_top = <<<SOURCESITETOP
892 <div class="ml-2 row">
893 <div class="col-sm-4">
894 <div class="clearfix form-group">
895 <div class="label-div">
896 <label class="font-weight-bold" for="source_site_id">Source Site:</label>
897 <a href="#source_site_id_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
900 <select name='source_site_id'id='source_site_id' class='form-control'>
902 echo $source_site_top . "\r\n";
903 foreach ($siteslist as $sfname) {
904 echo "<option value='" . attr($sfname) . "'";
905 if ($sfname == 'default') {
909 echo ">" . text($sfname) . "</option>";
911 $source_site_bot = <<<SOURCESITEBOT
916 <div id="source_site_id_info" class="collapse">
917 <a href="#source_site_id_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
918 <p>The site directory that will be a model for the new site.</p>
921 <div class="col-sm-4">
922 <div class="clearfix form-group">
923 <div class="label-div">
924 <label class="font-weight-bold" for="clone_database">Clone Source Database:</label>
925 <a href="#clone_database_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
928 <input type='checkbox' name='clone_database' id='clone_database' onclick='cloneClicked()' />
931 <div id="clone_database_info" class="collapse">
932 <a href="#clone_database_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
933 <p>Clone the source site's database instead of creating a fresh one.</p>
938 echo $source_site_bot . "\r\n";
941 $randomusernamepre = RandomGenUtils::produceRandomString(3, "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
942 $randomusernamepost = RandomGenUtils::produceRandomString(2, "0123456789");
943 $randomusername = $randomusernamepre . "-admin-" . $randomusernamepost;
945 // App Based TOTP secret
946 // Shared key (per rfc6238 and rfc4226) should be 20 bytes (160 bits) and encoded in base32, which should
947 // be 32 characters in base32
948 // Would be nice to use the OpenEMR\Common\Utils\RandomGenUtils\produceRandomBytes() function and then encode to base32,
949 // but does not appear to be a standard way to encode binary to base32 in php.
950 $randomsecret = RandomGenUtils::produceRandomString(32, "234567ABCDEFGHIJKLMNOPQRSTUVWXYZ");
951 if (empty($randomsecret) || empty($randomusernamepre) || empty($randomusernamepost)) {
952 error_log('OpenEMR Error : Random String error - exiting');
955 $disableCheckbox = "";
956 if (empty($randomsecret)) {
958 $disableCheckbox = "disabled";
961 $randomsecret_esc = attr($randomsecret);
962 $randomusername_esc = attr($randomusername);
963 $step2tablebot = <<<STP2TBLBOT
966 <fieldset class='noclone'>
967 <legend name="form_legend" id="form_legend" class='oe-setup-legend'>OpenEMR Initial User Details<i id="enter-details-tooltip" class="fa fa-info-circle oe-text-black oe-superscript enter-details-tooltip" aria-hidden="true"></i></legend>
968 <div class="ml-2 row">
969 <div class="col-sm-4">
970 <div class="clearfix form-group">
971 <div class="label-div">
972 <label class="font-weight-bold" for="iuser">Initial User Login Name:</label> <a href="#iuser_info" class="info-anchor icon-tooltip" data-toggle="collapse" ><i class="fa fa-question-circle" aria-hidden="true"></i></a>
975 <input name='iuser' id='iuser' type='text' class='form-control' value='$randomusername_esc' minlength='12' />
978 <div id="iuser_info" class="collapse">
979 <a href="#iuser_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
980 <p>This is the login name of the first user that will be created for you.</p>
981 <p>Limit this to one word with at least 12 characters and composed of both numbers and letters.</p>
984 <div class="col-sm-4">
985 <div class="clearfix form-group">
986 <div class="label-div">
987 <label class="font-weight-bold" for="iuserpass">Initial User Password:</label>
988 <a href="#iuserpass_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
991 <input name='iuserpass' id='iuserpass' type='password' class='form-control' value='' minlength='12' />
994 <div id="iuserpass_info" class="collapse">
995 <a href="#iuserpass_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
996 <p>This is the password for the initial user.
999 <div class="col-sm-4">
1000 <div class="clearfix form-group">
1001 <div class="label-div">
1002 <label class="font-weight-bold" for="iufname">Initial User's First Name:</label>
1003 <a href="#iufname_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
1006 <input name='iufname' id='iufname 'type='text' class='form-control' value='Administrator' />
1009 <div id="iufname_info" class="collapse">
1010 <a href="#iufname_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
1011 <p>This is the First name of the 'initial user'.</p>
1015 <div class="ml-2 row">
1016 <div class="col-sm-4">
1017 <div class="clearfix form-group">
1018 <div class="label-div">
1019 <label class="font-weight-bold" for="iuname">Initial User's Last Name:</label>
1020 <a href="#iuname_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
1023 <input name='iuname' id='iuname' type='text' class='form-control' value='Administrator' />
1026 <div id="iuname_info" class="collapse">
1027 <a href="#iuname_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
1028 <p>This is the Last name of the 'initial user'.</p>
1031 <div class="col-sm-4">
1032 <div class="clearfix form-group">
1033 <div class="label-div">
1034 <label class="font-weight-bold" for="igroup">Initial Group:</label>
1035 <a href="#igroup_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
1038 <input name='igroup' id='igroup' class='form-control' type='text' value='Default' />
1041 <div id="igroup_info" class="collapse">
1042 <a href="#igroup_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
1043 <p>This is the group that will be created for your users.</p>
1044 <p>This should be the name of your practice.</p>
1050 <fieldset class='noclone py-2 bg-warning'>
1051 <legend name="form_legend" id="form_legend" class='oe-setup-legend text-danger'>Enable 2 Factor Authentication for Initial User (more secure - optional) <i id="2fa-section" class="fa fa-info-circle oe-text-black oe-superscript 2fa-section-tooltip" aria-hidden="true"></i></legend>
1052 <div class="ml-2 row">
1053 <div class="col-sm-3">
1054 <div class="clearfix form-group">
1055 <div class="label-div">
1056 <label class="font-weight-bold" for="i2fa">Configure 2FA:</label>
1057 <a href="#i2fa_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
1060 <input name='i2faenable' id='i2faenable' type='checkbox' $disableCheckbox/> Enable 2FA
1061 <input type='hidden' name='i2fasecret' id='i2fasecret' value='$randomsecret_esc' />
1064 <div id="i2fa_info" class="collapse">
1065 <a href="#i2fa_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
1066 <p>If selected will allow TOTP 2 factor authentication for the initial user.</p>
1067 <p>Click on the help file for more information.</p>
1070 <div class="col-sm-5">
1071 <div class="clearfix form-group">
1072 <p class="text-danger font-weight-bold">IMPORTANT IF ENABLED</p>
1073 <p>If enabled, you must have an authenticator app on your phone ready to scan the QR code displayed next.</p>
1076 <div class="col-sm-4">
1077 <div class="clearfix form-group">
1078 <p>Example authenticator apps include:</p>
1081 (<a href="https://itunes.apple.com/us/app/google-authenticator/id388497605?mt=8" target="_blank">iOS</a>, <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2&hl=en">Android</a>)</li>
1083 (<a href="https://itunes.apple.com/us/app/authy/id494168017?mt=8">iOS</a>, <a href="https://play.google.com/store/apps/details?id=com.authy.authy&hl=en">Android</a>)</li>
1089 <p class='mt-4 mark'>Click the <b>Create DB and User</b> button below to create the database and first user <a href='#create_db_button' title='Click me'><i class="fa fa-arrow-circle-down" aria-hidden="true"></i></a>. $note: This process will take a few minutes.</p>
1090 <p class='p-1 bg-success text-white oe-spinner' style='visibility:hidden;'>Upon successful completion will automatically take you to the next step.<i class='fa fa-spinner fa-pulse fa-fw'></i></p>
1091 <div class="form-row">
1092 <div class="col-12">
1093 <button type='submit' id='create_db_button' value='Continue' class='wait btn btn-primary'>
1094 <i class="fas fa-chevron-right"></i> Create DB and User
1101 echo $step2tablebot . "\r\n";
1106 // (applicable if not cloning from another database)
1108 $pass_step2_validation = true;
1109 $error_step2_message = "";
1111 if (! $installer->char_is_valid($_REQUEST['server'])) {
1112 $pass_step2_validation = false;
1113 $error_step2_message .= "$error - A database server host is required <br />\n";
1116 if (! $installer->char_is_valid($_REQUEST['port'])) {
1117 $pass_step2_validation = false;
1118 $error_step2_message .= "$error - A database server port value is required <br />\n";
1121 if (! $installer->databaseNameIsValid($_REQUEST['dbname'])) {
1122 $pass_step2_validation = false;
1123 $error_step2_message .= "$error - A database name is required <br />\n";
1126 if (! $installer->collateNameIsValid($_REQUEST['collate'])) {
1127 $pass_step2_validation = false;
1128 $error_step2_message .= "$error - A collation name is required <br />\n";
1131 if (! $installer->char_is_valid($_REQUEST['login'])) {
1132 $pass_step2_validation = false;
1133 $error_step2_message .= "$error - A database login name is required <br />\n";
1136 if (! $installer->char_is_valid($_REQUEST['pass'])) {
1137 $pass_step2_validation = false;
1138 $error_step2_message .= "$error - A database login password is required <br />\n";
1141 if (empty($installer->clone_database)) {
1142 if (! $installer->login_is_valid()) {
1143 $pass_step2_validation = false;
1144 $error_step2_message .= "$error - Please pick a proper 'Login Name'.<br />\n";
1147 if (! $installer->iuser_is_valid()) {
1148 $pass_step2_validation = false;
1149 $error_step2_message .= "$error - The 'Initial User' field can only contain one word and no spaces.<br />\n";
1152 if (! $installer->user_password_is_valid()) {
1153 $pass_step2_validation = false;
1154 $error_step2_message .= "$error - Please pick a proper 'Initial User Password'.<br />\n";
1158 if (! $installer->password_is_valid()) {
1159 $pass_step2_validation = false;
1160 $error_step2_message .= "$error - Please pick a proper 'Password'.<br />\n";
1163 if (! $installer->iuname_is_valid()) {
1164 $pass_step2_validation = false;
1165 $error_step2_message .= "$error - Please pick a proper 'Initial User Last Name'.<br />\n";
1168 if (!$pass_step2_validation) {
1169 $_SESSION['bootstrapStateInSetup'] = 2;
1170 echo $error_step2_message . '<br />';
1172 <form method='post' id='validate-error'>
1173 <input name='state' type='hidden' value='2' />
1174 <input name='site' type='hidden' value='" . attr($site_id) . "' />
1175 <input name='inst' type='hidden' value='" . attr($inst) . "' />
1176 <input name='csrf_token_form' type='hidden' value='" . attr(CsrfUtils::collectCsrfToken('state2')) . "' />
1177 <button type='submit' class='btn btn-primary'><i class='fas fa-chevron-left'></i> " . text("Back") . "</button>
1182 echo "<h3 class='mb-3 border-bottom'>Step " . text($state) . " - Creating Database and First User</h3>";
1183 echo "<div class='jumbotron p-5'>";
1185 // Skip below if database shell has already been created.
1187 echo "Connecting to MySQL Server...\n";
1189 if (! $installer->root_database_connection()) {
1190 $_SESSION['bootstrapStateInSetup'] = 2;
1191 echo "$error. Check your login credentials.\n";
1192 echo text($installer->error_message);
1193 echo "<br /><br />";
1195 <form method='post' id='validate-error'>
1196 <input name='state' type='hidden' value='2' />
1197 <input name='site' type='hidden' value='" . attr($site_id) . "' />
1198 <input name='inst' type='hidden' value='" . attr($inst) . "' />
1199 <input name='csrf_token_form' type='hidden' value='" . attr(CsrfUtils::collectCsrfToken('state2')) . "' />
1200 <button type='submit' class='btn btn-primary'><i class='fas fa-chevron-left'></i> " . text("Back") . "</button>
1204 echo "$ok.<br />\n";
1209 // Only pertinent if cloning another installation database
1210 if ($allow_cloning_setup && !empty($installer->clone_database)) {
1211 echo "Dumping source database...";
1213 if (! $installer->create_dumpfiles()) {
1214 echo text($installer->error_message);
1217 echo "$ok.<br />\n";
1222 // Only pertinent if mirroring another installation directory
1223 if (! empty($installer->source_site_id)) {
1224 echo "Creating site directory...";
1225 if (! $installer->create_site_directory()) {
1226 echo text($installer->error_message);
1234 // Skip below if database shell has already been created.
1236 echo "Creating database...\n";
1238 if (! $installer->create_database()) {
1239 echo "$error. Check your login credentials.\n";
1240 echo text($installer->error_message);
1243 echo "$ok.<br />\n";
1247 echo "Creating user with permissions for database...\n";
1249 $user_mysql_error = true;
1250 if (! $installer->create_database_user()) {
1251 echo "$error when creating specified user.\n";
1252 echo text($installer->error_message);
1255 $user_mysql_error = false;
1257 if (! $installer->grant_privileges()) {
1258 echo "$error when granting privileges to the specified user.\n";
1259 echo text($installer->error_message);
1262 $user_mysql_error = false;
1264 if (!$user_mysql_error) {
1265 echo "$ok.<br />\n";
1269 echo "Reconnecting as new user...\n";
1271 $installer->disconnect();
1273 echo "Connecting to MySQL Server...\n";
1276 if (! $installer->user_database_connection()) {
1277 echo "$error. Check your login credentials.\n";
1278 echo text($installer->error_message);
1279 echo "<br />You will need to remove the database, correct the problem, and then restart the setup.php script.<br /><br />";
1282 echo "$ok.<br />\n";
1286 // Load the database files
1287 $dump_results = $installer->load_dumpfiles();
1288 if (! $dump_results) {
1290 echo text($installer->error_message);
1297 echo "Writing SQL configuration...\n";
1299 if (! $installer->write_configuration_file()) {
1301 echo text($installer->error_message);
1304 echo "$ok.<br />\n";
1308 // Only pertinent if not cloning another installation database
1309 if (empty($installer->clone_database)) {
1310 echo "Setting version indicators...\n";
1312 if (! $installer->add_version_info()) {
1314 echo text($installer->error_message);
1322 echo "Writing global configuration defaults...\n";
1324 if (! $installer->insert_globals()) {
1326 echo text($installer->error_message);
1334 echo "Setting up Access Controls...\n";
1335 require("$OE_SITE_DIR/sqlconf.php");
1336 if (! $installer->install_gacl()) {
1338 echo text($installer->error_message);
1346 echo "Adding Initial User...\n";
1348 if (! $installer->add_initial_user()) {
1350 echo text($installer->error_message);
1356 echo "Adding Additional Users...\n";
1358 if (! $installer->install_additional_users()) {
1360 echo text($installer->error_message);
1366 echo "Configuring Care Coordination Module...\n";
1368 if (! $installer->on_care_coordination()) {
1370 echo text($installer->error_message);
1377 // If user has selected to set MFA App Based 2FA, display QR code to scan
1378 $qr = $installer->get_initial_user_2fa_qr();
1379 $qr_esc = attr($qr);
1381 $qrDisplay = <<<TOTP
1386 <strong class='text-danger'>IMPORTANT!!</strong>
1387 <p><strong>You must scan the following QR code with your preferred authenticator app.</strong></p>
1388 <img src='$qr_esc' width="150" />
1393 Example authenticator apps include:
1396 (<a href="https://itunes.apple.com/us/app/google-authenticator/id388497605?mt=8">iOS</a>, <a href="https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2&hl=en">Android</a>)</li>
1398 (<a href="https://itunes.apple.com/us/app/authy/id494168017?mt=8">iOS</a>, <a href="https://play.google.com/store/apps/details?id=com.authy.authy&hl=en">Android</a>)</li>
1407 if ($allow_cloning_setup && !empty($installer->clone_database)) {
1408 // Database was cloned, skip ACL setup.
1409 $btn_text = 'Proceed to Select a Theme';
1411 echo "<p>The database was cloned, access control list exists therefore skipping ACL setup</p>";
1412 echo "<p class='p-1 bg-warning'>Click <b>" . text($btn_text) . "</b> for further instructions.</p>";
1415 $btn_text = 'Proceed to Step 4';
1417 echo "<p><b>Granted user <span class='text-primary'>" . text($installer->iuser) . "</span> administrator access control (password is <span class='text-primary'>" . text($installer->iuserpass) . "</span>).</b></p>";
1418 echo "<p>The next step will configure php.</p>";
1419 echo "<p class='mark'>Click <strong>" . text($btn_text) . "</strong> to continue.</p>";
1423 $_SESSION['bootstrapStateInSetup'] = $next_state;
1424 echo "<form method='post'>
1425 <input name='state' type='hidden' value='" . attr($next_state) . "' />
1426 <input name='csrf_token_form' type='hidden' value='" . attr(CsrfUtils::collectCsrfToken('state' . $next_state)) . "' />
1427 <input name='site' type='hidden' value='" . attr($site_id) . "' />
1428 <input name='iuser' type='hidden' value='" . attr($installer->iuser) . "' />
1429 <input name='iuserpass' type='hidden' value='" . attr($installer->iuserpass) . "' />
1430 <input name='iuname' type='hidden' value='" . attr($installer->iuname) . "' />
1431 <input name='iufname' type='hidden' value='" . attr($installer->iufname) . "' />
1432 <input name='login' type='hidden' value='" . attr($installer->login) . "' />
1433 <input name='pass' type='hidden' value='" . attr($installer->pass) . "' />
1434 <input name='server' type='hidden' value='" . attr($installer->server) . "' />
1435 <input name='port' type='hidden' value='" . attr($installer->port) . "' />
1436 <input name='loginhost' type='hidden' value='" . attr($installer->loginhost) . "' />
1437 <input name='dbname' type='hidden' value='" . attr($installer->dbname) . "' />\r\n";
1439 if ($allow_cloning_setup) {
1440 echo "<input type='hidden' name='clone_database' value='" . attr($installer->clone_database) . "' />";
1441 echo "<input name='source_site_id' type='hidden' value='" . attr($installer->source_site_id) . "' />";
1443 $btn_text_esc = text($btn_text);
1444 $form_bottom = <<<FRMBOT
1445 <div class="form-row">
1446 <div class="col-12">
1447 <button type='submit' id='step-4-btn' class="btn btn-primary" value='Continue'>
1448 <i class="fas fa-chevron-right"></i> $btn_text_esc
1455 echo $form_bottom . "\r\n";
1459 $_SESSION['bootstrapStateInSetup'] = 5;
1460 $state_esc = text($state);
1461 $step4_top = <<<STP4TOP
1462 <h3 class="mb-3 border-bottom">Step $state_esc - Configure PHP</h3>
1463 <div class="jumbotron p-5">
1464 <p>Configuration of PHP...</p>
1465 <p>We recommend making the following changes to your PHP installation, which can normally be done by editing the php.ini configuration file:</p>
1468 echo $step4_top . "\r\n";
1471 $phpINIfile = php_ini_loaded_file();
1473 echo "<li><span class='text-success'>Your php.ini file can be found at " . text($phpINIfile) . "</span></li>\n";
1477 $short_tag = ini_get('short_open_tag') ? 'On' : 'Off';
1478 $short_tag_style = (strcmp($short_tag, 'Off') === 0) ? '' : 'text-danger';
1479 $display_errors = ini_get('display_errors') ? 'On' : 'Off';
1480 $display_errors_style = (strcmp($display_errors, "Off") === 0) ? '' : 'text-danger';
1481 $register_globals = ini_get('register_globals') ? 'On' : 'Off';
1482 $register_globals_style = (strcmp($register_globals, 'Off') === 0) ? '' : 'text-danger';
1483 $max_input_vars = ini_get('max_input_vars');
1484 $max_input_vars_style = $max_input_vars < 3000 ? 'text-danger' : '';
1485 $max_execution_time = (int)ini_get('max_execution_time');
1486 $max_execution_time_style = $max_execution_time >= 60 || $max_execution_time === 0 ? '' : 'text-danger';
1487 $max_input_time = ini_get('max_input_time');
1488 $max_input_time_style = (strcmp($max_input_time, '-1') === 0) ? '' : 'text-danger';
1489 $post_max_size = ini_get('post_max_size');
1490 $post_max_size_style = $post_max_size < 30 ? 'text-danger' : '';
1491 $memory_limit = ini_get('memory_limit');
1492 $memory_limit_style = $memory_limit < 256 ? 'text-danger' : '';
1493 $mysqli_allow_local_infile = ini_get('mysqli.allow_local_infile') ? 'On' : 'Off';
1494 $mysqli_allow_local_infile_style = (strcmp($mysqli_allow_local_infile, 'On') === 0) ? '' : 'text-danger';
1496 echo "<li>To ensure proper functioning of OpenEMR you must make sure that PHP settings include:
1497 <table class='phpset'>
1500 <th>Required value</th>
1501 <th>Current value</th>
1504 <td>short_open_tag</td>
1506 <td class='" . attr($short_tag_style) . "'>" . text($short_tag) . "</td>
1509 <td>display_errors</td>
1511 <td class='" . attr($display_errors_style) . "'>" . text($display_errors) . "</td>
1514 <td>register_globals</td>
1516 <td class='" . attr($register_globals_style) . "'>" . text($register_globals) . "</td>
1519 <td>max_input_vars</td>
1520 <td>at least 3000</td>
1521 <td class='" . attr($max_input_vars_style) . "'>" . text($max_input_vars) . "</td>
1524 <td>max_execution_time</td>
1525 <td>at least 60</td>
1526 <td class='" . attr($max_execution_time_style) . "'>" . text($max_execution_time) . "</td>
1529 <td>max_input_time</td>
1531 <td class='" . attr($max_input_time_style) . "'>" . text($max_input_time) . "</td>
1534 <td>post_max_size</td>
1535 <td>at least 30M</td>
1536 <td class='" . attr($post_max_size_style) . "'>" . text($post_max_size) . "</td>
1539 <td>memory_limit</td>
1540 <td>at least 256M</td>
1541 <td class='" . attr($memory_limit_style) . "'>" . text($memory_limit) . "</td>
1544 <td>mysqli.allow_local_infile</td>
1546 <td class='" . attr($mysqli_allow_local_infile_style) . "'>" . text($mysqli_allow_local_infile) . "</td>
1550 <li>In order to take full advantage of the patient documents capability you must make sure that settings in php.ini file include \"file_uploads = On\", that \"upload_max_filesize\" is appropriate for your use and that \"upload_tmp_dir\" is set to a correct value that will work on your system.
1553 if (!$gotFileFlag) {
1554 echo "<li>If you are having difficulty finding your php.ini file, then refer to the <a href='Documentation/INSTALL' rel='noopener' target='_blank'><u>'INSTALL'</u></a> manual for suggestions.</li>\n";
1557 $btn_text = 'Proceed to Step 5';
1560 <p>We recommend you print these instructions for future reference.</p>
1561 <p>The next step will configure the Apache web server.</p>
1562 <p class='mark'>Click <strong>" . text($btn_text) . "</strong> to continue.</p>
1564 <form method='post'>
1565 <input type='hidden' name='state' value='5' />
1566 <input name='csrf_token_form' type='hidden' value='" . attr(CsrfUtils::collectCsrfToken('state5')) . "' />
1567 <input type='hidden' name='site' value='" . attr($site_id) . "' />
1568 <input type='hidden' name='iuser' value='" . attr($installer->iuser) . "' />
1569 <input type='hidden' name='iuserpass' value='" . attr($installer->iuserpass) . "' />
1570 <input name='login' type='hidden' value='" . attr($installer->login) . "' />
1571 <input name='pass' type='hidden' value='" . attr($installer->pass) . "' />
1572 <input name='server' type='hidden' value='" . attr($installer->server) . "' />
1573 <input name='port' type='hidden' value='" . attr($installer->port) . "' />
1574 <input name='loginhost' type='hidden' value='" . attr($installer->loginhost) . "' />
1575 <input name='dbname' type='hidden' value='" . attr($installer->dbname) . "' />
1576 <div class='form-row'>
1577 <div class='col-12'>
1578 <button type='submit' class='btn btn-primary' value='Continue'>
1579 <i class='fas fa-chevron-right'></i> " . text($btn_text) . "
1588 $_SESSION['bootstrapStateInSetup'] = 6;
1589 echo "<h3 class='mb-3 border-bottom'>Step " . text($state) . " - Configure Apache Web Server</h3>";
1590 echo "<div class='jumbotron p-5'>";
1591 echo "<p>Configuration of Apache web server...</p><br />\n";
1592 echo "The <code>\"" . text(preg_replace("/{$site_id}/", "*", realpath($docsDirectory))) . "\"</code> directory contain patient information, and
1593 it is important to secure these directories. Additionally, some settings are required for the Zend Framework to work in OpenEMR. This can be done by pasting the below to end of your apache configuration file:<br /><br />
1594 <code><Directory \"" . text(realpath(dirname(__FILE__))) . "\"><br />
1595 AllowOverride FileInfo<br />
1596 Require all granted<br />
1597 <code></Directory></code><br />
1598 <Directory \"" . text(realpath(dirname(__FILE__))) . "/sites\"><br />
1599 AllowOverride None<br />
1600 </Directory></code><br />
1601 <code><Directory \"" . text(preg_replace("/{$site_id}/", "*", realpath($docsDirectory))) . "\"><br />
1602 Require all denied<br />
1603 </Directory></code><br /><br />";
1605 $btn_text = 'Proceed to Select a Theme';
1606 echo "<p>If you are having difficulty finding your apache configuration file, then refer to the <a href='Documentation/INSTALL' rel='noopener' target='_blank'><u>'INSTALL'</u></a> manual for suggestions.</p>
1607 <p>We recommend you print these instructions for future reference.</p>
1608 <p class='mark'>Click <strong>'" . text($btn_text) . "'</strong> to select a theme.</p>
1610 <form method='post'>
1611 <input type='hidden' name='state' value='6' />
1612 <input name='csrf_token_form' type='hidden' value='" . attr(CsrfUtils::collectCsrfToken('state6')) . "' />
1613 <input type='hidden' name='site' value='" . attr($site_id) . "' />
1614 <input type='hidden' name='iuser' value='" . attr($installer->iuser) . "' />
1615 <input type='hidden' name='iuserpass' value='" . attr($installer->iuserpass) . "' />
1616 <input name='login' type='hidden' value='" . attr($installer->login) . "' />
1617 <input name='pass' type='hidden' value='" . attr($installer->pass) . "' />
1618 <input name='server' type='hidden' value='" . attr($installer->server) . "' />
1619 <input name='port' type='hidden' value='" . attr($installer->port) . "' />
1620 <input name='loginhost' type='hidden' value='" . attr($installer->loginhost) . "' />
1621 <input name='dbname' type='hidden' value='" . attr($installer->dbname) . "' />
1622 <div class='form-row'>
1623 <div class='col-12'>
1624 <button type='submit' class='btn btn-primary' value='Continue'>
1625 <i class='fas fa-chevron-right'></i> " . text($btn_text) . "
1634 $_SESSION['bootstrapStateInSetup'] = 7;
1635 echo "<h3 class='mb-3 border-bottom'>Step " . text($state) . " - Select a Theme</h3>";
1636 echo "<div class='jumbotron p-5'>";
1637 echo "<p>Select a theme for OpenEMR...</p>\n";
1638 $btn_text = "Proceed to Final Step";
1639 $installer->displaySelectedThemeDiv();
1640 echo "<div class='row'>
1641 <div class='col-12'>
1642 <form method='post'>
1643 <input type='hidden' name='state' value='7' />
1644 <input name='csrf_token_form' type='hidden' value='" . attr(CsrfUtils::collectCsrfToken('state7')) . "' />
1645 <input type='hidden' name='site' value='" . attr($site_id) . "' />
1646 <input type='hidden' name='iuser' value='" . attr($installer->iuser) . "' />
1647 <input type='hidden' name='iuserpass' value='" . attr($installer->iuserpass) . "' />
1648 <input name='login' type='hidden' value='" . attr($installer->login) . "' />
1649 <input name='pass' type='hidden' value='" . attr($installer->pass) . "' />
1650 <input name='server' type='hidden' value='" . attr($installer->server) . "' />
1651 <input name='port' type='hidden' value='" . attr($installer->port) . "' />
1652 <input name='loginhost' type='hidden' value='" . attr($installer->loginhost) . "' />
1653 <input name='dbname' type='hidden' value='" . attr($installer->dbname) . "' />
1654 <input type='hidden' name='new_theme' id = 'new_theme' value='" . attr($installer->getCurrentTheme()) . "' />
1655 <input name='clone_database' type='hidden' value='" . attr($installer->clone_database) . "' />
1656 <input name='source_site_id' type='hidden' value='" . attr($installer->source_site_id) . "' />
1657 <h4>Select One:</h4>
1658 <div class='checkbox'>
1659 <label><input type='checkbox' class='check' value='show_theme' />Show More Themes</label>
1661 <div class='checkbox'>
1662 <label><input type='checkbox' class='check' value='keep_current' />Keep Current</label>
1664 <div class='hide_button' style='display:none;'>
1665 <button type='submit' class='btn btn-primary' value='Continue' id='continue'>
1666 <i class='fas fa-chevron-right'></i> " . text($btn_text) . "
1672 echo '<div class="row hideaway" style="display:none;">' . "\r\n";
1673 echo '<div class="col-12">' . "\r\n";
1674 echo ' <h4>Select New Theme: <h5>(scroll down to view all)</h5></h4>' . "\r\n";
1675 echo ' <br />' . "\r\n";
1676 $installer->displayThemesDivs();
1683 <h3 class="mb-3 border-bottom">Pre Install - Checking File and Directory Permissions</h3>
1684 <div class="jumbotron p-5">
1686 Welcome to OpenEMR. This utility will step you through the installation and configuration of OpenEMR for your practice.
1690 Before proceeding, be sure that you have a properly installed and configured MySQL server available, and a PHP configured webserver.
1693 <span class="text-highlight">Detailed installation instructions can be found in the <a href='Documentation/INSTALL' rel='noopener' target='_blank'><u>'INSTALL'</u></a> manual file.</span>
1696 If you are upgrading from a previous version, <strong>DO NOT</strong> use this script. Please read the <strong>'Upgrading'</strong> section found in the <a href='Documentation/INSTALL' rel='noopener' target='_blank'><u>'INSTALL'</u></a> manual file.
1701 if ($checkPermissions) {
1702 echo "<p>We will now ensure correct file and directory permissions before starting installation:</p>\n";
1703 echo "<p class='text-success m-0'>Ensuring following file is world-writable...</p>\n";
1705 foreach ($writableFileList as $tempFile) {
1706 if (is_writable($tempFile)) {
1707 echo "<code class='ml-5'>" . text(realpath($tempFile)) . "</code> file is <span class='text-success font-weight-bold'>ready</span><br /><br />\n";
1709 echo "<p><span class='text-danger'>UNABLE</span> to open file '" . text(realpath($tempFile)) . "' for writing.<br />\n";
1710 echo "(configure file permissions; see below for further instructions)</p>\n";
1715 if ($errorWritable) {
1716 $site_id_esc = attr($site_id);
1717 $check_file = <<<CHKFILE
1718 <p class="text-danger">You can't proceed until all above files are ready (world-writable).</p>
1719 <p>In linux, recommend changing file permissions with the <strong>'chmod 666 filename'</strong> command.</p>
1720 <p class='p-1 bg-danger text-white'>Fix above file permissions and then click the <strong>'Check Again'</strong> button to re-check files.</p>
1722 <form method='post'>
1723 <input type='hidden' name='site' value='$site_id_esc' />
1724 <button type='submit' class='btn btn-primary' value='check again'>Check Again</button>
1727 echo $check_file . "\r\n";
1732 foreach ($writableDirList as $tempDir) {
1733 echo "<p class='text-success m-0'>Ensuring the <code>" . text(realpath($tempDir)) . "</code> directory and its subdirectories have proper permissions...</p>\n";
1734 $errorWritable = recursive_writable_directory_test($tempDir);
1737 if ($errorWritable) {
1738 $site_id_esc = attr($site_id);
1739 $check_directory = <<<CHKDIR
1740 <p class="text-danger">You can't proceed until all directories and subdirectories are ready.</p>
1741 <p>In linux, recommend changing owners of these directories to the web server. For example, in many linux OS's the web server user is 'apache', 'nobody', or 'www-data'. So if 'apache' were the web server user name, could use the command <strong>'chown -R apache:apache directory_name'</strong> command.</p>
1742 <p class='p-1 bg-warning'>Fix above directory permissions and then click the <strong>'Check Again'</strong> button to re-check directories.</p>
1744 <form method='post'>
1745 <input type='hidden' name='site' value='$site_id_esc' />
1746 <button type='submit' value='check again'><b>Check Again</b></button>
1749 echo $check_directory . "\r\n";
1754 $_SESSION['bootstrapStateInSetup'] = 1;
1755 $site_id_esc = attr($site_id);
1756 $csrf_id_esc = attr(CsrfUtils::collectCsrfToken('state1'));
1758 <p>All required files and directories have been verified.</p>
1759 <p class='mark'>Click <span class="font-weight-bold">Proceed to Step 1</span> to continue with a new installation.</p>
1760 <p class='p-1 bg-warning'>$caution: If you are upgrading from a previous version, <strong>DO NOT</strong> use this script. Please read the <strong>'Upgrading'</strong> section found in the <a href='Documentation/INSTALL' rel='noopener' target='_blank'><u>'INSTALL'</u></a> manual file.</p>
1762 <form method='post'>
1763 <input name='state' type='hidden' value='1' />
1764 <input name='site' type='hidden' value='$site_id_esc' />
1765 <input name='csrf_token_form' type='hidden' value='$csrf_id_esc' />
1766 <div class="form-group">
1768 <button type='submit' class='btn btn-primary' value='Continue'>
1769 <i class="fas fa-chevron-right"></i> Proceed to Step 1
1775 echo $form . "\r\n";
1777 $_SESSION['bootstrapStateInSetup'] = 1;
1778 $site_id_esc = attr($site_id);
1779 $csrf_id_esc = attr(CsrfUtils::collectCsrfToken('state1'));
1782 <p class='p-1 bg-warning'>$caution: Permisssions checking has been disabled. All required files and directories have NOT been verified, please manually verify sites/$site_id_esc .</p>
1783 <p class='mark'>Click <b>Proceed to Step 1</b> to continue with a new installation.</p>
1784 <p class='p-1 bg-warning'>$caution: If you are upgrading from a previous version, <strong>DO NOT</strong> use this script. Please read the <strong>'Upgrading'</strong> section found in the <a href='Documentation/INSTALL' rel='noopener' target='_blank'><span style='text-decoration: underline;'>'INSTALL'</span></a> manual file.</p>
1786 <form method='post'>
1787 <input name='state' type='hidden' value='1'>
1788 <input name='site' type='hidden' value='$site_id_esc'>
1789 <input name='csrf_token_form' type='hidden' value='$csrf_id_esc' />
1790 <button type='submit' value='Continue'><b>Proceed to Step 1</b></button>
1793 echo $form . "\r\n"; }
1804 </div><!--end of container div -->
1805 <?php $installer->setupHelpModal();?>
1809 $('.icon-tooltip').prop( "title", "Click to see more information").tooltip({
1815 $('.enter-details-tooltip').prop( "title", "Additional help to fill out this form is available by hovering over labels of each box and clicking on the dark blue help ? icon that is revealed. On mobile devices tap once on the label to reveal the help icon and tap on the icon to show the help section").tooltip();
1816 $('.2fa-section-tooltip').prop( "title", "Two factor authentication prevents unauthorized access to openEMR thus improves security. It is optional. More information is available in the help file under Step 2 Database and OpenEMR Initial User Setup Details.").tooltip();
1823 $("input[type='radio']").click(function() {
1824 var radioValue = $("input[name='stylesheet']:checked").val();
1825 var imgPath = "public/images/stylesheets/";
1826 var currStyle = $("#current_theme_title").text();
1827 var currStyleTitle = currStyle;
1828 currStyle = currStyle.replace(/\b\w/g, l => l.toLowerCase());
1829 currStyle = currStyle.split(" ");
1830 currStyle = currStyle.join("_");
1831 currStyle = "style_" + currStyle + ".png";
1833 var currThemeText = radioValue.split("_");
1834 currThemeText = currThemeText.join(" ");
1835 currThemeText = currThemeText.replace(/\b\w/g, l => l.toUpperCase());
1836 var styleSelected = confirm("You have selected style - " + currThemeText + "\n" + "Click OK to apply selection");
1837 if (styleSelected) {
1838 $("#current_theme").attr("src", imgPath + "style_" + radioValue + ".png");
1839 $("#current_theme_title").text(currThemeText);
1840 $("#new_theme").val("style_" + radioValue + ".css");
1842 $("#current_theme").attr("src", imgPath + currStyle);
1843 $("#current_theme_title").text(currStyleTitle);
1844 $(this).prop("checked", false);
1848 $('.check').click(function() {
1849 $('.check').not(this).prop('checked', false);
1850 if($('.check:checked').val() == 'show_theme'){
1851 $(".hideaway").show();
1852 } else if($('.check:checked').val() == 'keep_current'){
1853 $(".hideaway").hide();
1856 if($('.check').filter(':checked').length > 0) {
1857 $(".hide_button").show();
1859 $(".hide_button").hide();
1860 $(".hideaway").hide();
1863 $('.wait').removeClass('button-wait');
1865 $( "#create_db_button" ).hover(
1867 if (($('#iuserpass' ).val().length > 11 && $('#iuser' ).val().length > 11 ) || ($('#clone_database').prop('checked'))){
1869 $("button").click(function(){
1870 $(".oe-spinner").css("visibility", "visible");
1873 $('.wait').click(function(){
1874 $('.wait').addClass('button-wait');
1880 $("#step-4-btn").click(function(){
1881 $(".oe-spinner").css("visibility", "visible");
1882 $(this).addClass('button-wait');