8 * @link https://www.open-emr.org
9 * @author Roberto Vasquez <robertogagliotta@gmail.com>
10 * @author Scott Wakefield <scott@npclinics.com.au>
11 * @author Ranganath Pathak <pathak@scrs1.org>
12 * @author Brady Miller <brady.g.miller@gmail.com>
13 * @copyright Copyright (c) 2016 Roberto Vasquez <robertogagliotta@gmail.com>
14 * @copyright Copyright (c) 2016 Scott Wakefield <scott@npclinics.com.au>
15 * @copyright Copyright (c) 2019 Ranganath Pathak <pathak@scrs1.org>
16 * @copyright Copyright (c) 2019 Brady Miller <brady.g.miller@gmail.com>
17 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
20 // Checks if the server's PHP version is compatible with OpenEMR:
21 require_once(dirname(__FILE__
) . "/src/Common/Compatibility/Checker.php");
22 $response = OpenEMR\Common\Compatibility\Checker
::checkPhpVersion();
23 if ($response !== true) {
24 die(htmlspecialchars($response));
27 // Set the maximum excution time and time limit to unlimited.
28 ini_set('max_execution_time', 0);
29 ini_set('display_errors', 0);
32 // Warning. If you set $allow_multisite_setup to true, this is a potential security vulnerability.
33 // Recommend setting it back to false (or removing this setup.php script entirely) after you
34 // are done with the multisite procedure.
35 $allow_multisite_setup = false;
37 // Warning. If you set $allow_cloning_setup to true, this is a potential security vulnerability.
38 // Recommend setting it back to false (or removing this setup.php script entirely) after you
39 // are done with the cloning setup procedure.
40 $allow_cloning_setup = false;
41 if (!$allow_cloning_setup && !empty($_REQUEST['clone_database'])) {
42 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");
45 function recursive_writable_directory_test($dir)
47 // first, collect the directory and subdirectories
48 $ri = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir));
50 foreach ($ri as $file) {
52 if (!preg_match("/\.\.$/", $file->getPathname())) {
53 $dirName = realpath($file->getPathname());
54 if (!in_array($dirName, $dirNames)) {
55 $dirNames[] = $dirName;
61 // second, flag the directories that are not writable
62 $resultsNegative = array();
63 foreach ($dirNames as $value) {
64 if (!is_writable($value)) {
65 $resultsNegative[] = $value;
69 // third, send the output and return if didn't pass the test
70 if (!empty($resultsNegative)) {
74 foreach ($resultsNegative as $failedDir) {
75 if (basename($failedDir) == basename($dir)) {
76 // need to reorder output so the main directory is at the top of the list
77 $mainDirTest = "<span class='text-danger'>UNABLE</span> to open directory '" . realpath($failedDir) . "' for writing by web server.<br />\r\n";
79 $outputs[] = "<span class='text-danger'>UNABLE</span> to open subdirectory '" . realpath($failedDir) . "' for writing by web server.<br />\r\n";
83 // need to reorder output so the main directory is at the top of the list
84 array_unshift($outputs, $mainDirTest);
86 foreach ($outputs as $output) {
89 echo "(configure directory permissions; see below for further instructions)</p>\r\n";
92 echo "<code class='ml-5'>" . realpath($dir) . "</code> directory and its subdirectories are <span class='text-success font-weight-bold'>ready</span>.<br /><br />\r\n";
97 // Include standard libraries/classes
98 require_once dirname(__FILE__
) . "/vendor/autoload.php";
100 use OpenEMR\Common\Utils\RandomGenUtils
;
102 $COMMAND_LINE = php_sapi_name() == 'cli';
104 $state = isset($_POST["state"]) ?
($_POST["state"]) : '';
105 $installer = new Installer($_REQUEST);
106 // Make this true for IPPF.
107 $ippf_specific = false;
109 $error_page_end = <<<EPE
112 </div><!--end of container div-->
117 // If this script was invoked with no site ID, then ask for one.
118 if (!$COMMAND_LINE && empty($_REQUEST['site'])) {
123 <title>OpenEMR Setup Tool</title>
124 <link rel="stylesheet" href="public/assets/bootstrap/dist/css/bootstrap.min.css">
125 <script src="public/assets/jquery/dist/jquery.min.js"></script>
126 <script src="public/assets/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
127 <link rel="stylesheet" href="public/assets/@fortawesome/fontawesome-free/css/all.min.css">
128 <link rel="shortcut icon" href="public/images/favicon.ico" />
136 <nav class="navbar navbar-expand navbar-light bg-light">
137 <div class="container">
138 <a class="navbar-brand" href="#">OpenEMR Setup</a>
139 <div class="collapse navbar-collapse justify-content-end">
140 <ul class="navbar-nav">
141 <li class="nav-item active">
142 <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>
149 <div class='container mt-3'>
152 <h3 class="mb-3 border-bottom">Optional Site ID Selection</h3>
153 <div class="jumbotron p-5">
155 Most OpenEMR installations support only one site. If that is
156 true for you then ignore the rest of this text and just click Continue.
158 <p class='p-2 bg-warning'>
159 If you are using the multisite setup module for the first time please read the
160 'Multi Site Installation' section of the help file before proceeding.
163 Otherwise please enter a unique Site ID here.
166 A Site ID is a short identifier with no spaces or special
167 characters other than periods or dashes. It is case-sensitive and we
168 suggest sticking to lower case letters for ease of use.
171 If each site will have its own host/domain name, then use that
172 name as the Site ID (e.g. www.example.com).
175 The site ID is used to identify which site you will log in to.
176 If it is a hostname then it is taken from the hostname in the URL.
177 Otherwise you must append "?site=<i>siteid</i>" to the URL used for
181 It is OK for one of the sites to have "default" as its ID. This
182 is the ID that will be used if it cannot otherwise be determined.
186 <input type='hidden' name='state' value='0' />
187 <div class="form-row">
188 <div class="col-auto">
192 <input type='text' class='form-control' name='site' value='default'>
194 <div class="col-12 mt-3">
195 <button type='submit' class='btn btn-primary' value='Continue'><i class="fas fa-chevron-right"></i> Continue</button>
202 </div><!--end of container div-->
204 echo $site_id . "\r\n";
205 $installer->setupHelpModal();
206 echo "</body>" . "\r\n";
207 echo "</html>" . "\r\n";
212 // Support "?site=siteid" in the URL, otherwise assume "default".
213 $site_id = 'default';
214 if (!$COMMAND_LINE && !empty($_REQUEST['site'])) {
215 $site_id = trim($_REQUEST['site']);
218 // Die if site ID is empty or has invalid characters.
219 if (empty($site_id) ||
preg_match('/[^A-Za-z0-9\\-.]/', $site_id)) {
220 die("Site ID '" . htmlspecialchars($site_id, ENT_NOQUOTES
) . "' contains invalid characters.");
223 // If multisite is turned off, then only allow default for site.
224 if (!$allow_multisite_setup && $site_id != 'default') {
225 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");
228 // Disable file and directory permissions check by setting to false
229 $checkPermissions = true;
231 global $OE_SITE_DIR; // The Installer sets this
233 $docsDirectory = "$OE_SITE_DIR/documents";
235 //These are files and dir checked before install for
236 // correct permissions.
237 if (is_dir($OE_SITE_DIR)) {
238 $writableFileList = array($installer->conffile
);
239 $writableDirList = array($docsDirectory);
241 $writableFileList = array();
242 $writableDirList = array($OE_SITES_BASE);
245 // Include the sqlconf file if it exists yet.
247 if (file_exists($OE_SITE_DIR)) {
248 include_once($installer->conffile
);
249 } elseif ($state > 3) {
250 // State 3 should have created the site directory if it is missing.
251 die("Internal error, site directory is missing.");
256 <title
>OpenEMR Setup Tool
</title
>
257 <!--<link rel
=stylesheet href
="interface/themes/style_blue.css">-->
258 <link rel
="stylesheet" href
="public/assets/bootstrap/dist/css/bootstrap.min.css">
259 <script src
="public/assets/jquery/dist/jquery.min.js"></script
>
260 <script src
="public/assets/bootstrap/dist/js/bootstrap.bundle.min.js"></script
>
261 <link rel
="stylesheet" href
="public/assets/@fortawesome/fontawesome-free/css/all.min.css">
262 <link rel
="shortcut icon" href
="public/images/favicon.ico" />
267 border
-collapse
:collapse
;
269 table
.phpset td
, table
.phpset th
{
271 border
:1px solid gray
;
274 .table
.no
-border tr td
, .table
.no
-border tr th
{
286 font
-family
:sans
-serif
;
294 .label
-div
:hover
> a
{
295 display
:inline
-block
;
300 margin
: 10px
15px
0px
15px
;
302 div
[id$
="_info"] > a
{
306 display
: inline
-block
;
309 .checkboxgroup label
{
322 font
-size
: 70%
!important
;
325 background
-color
: #f5f5f5;
334 fieldset
> [class*="col-"] {
336 text
-align
:left
!Important
;
341 // onclick handler for "clone database" checkbox
342 function cloneClicked() {
343 var cb
= document
.forms
[0].clone_database
;
344 $
('.noclone').css('display', cb
.checked ?
'none' : 'block');
350 <nav
class="navbar navbar-expand navbar-light bg-light">
351 <div
class="container">
352 <a
class="navbar-brand" href
="#">OpenEMR Setup
</a
>
353 <div
class="collapse navbar-collapse justify-content-end">
354 <ul
class="navbar-nav">
355 <li
class="nav-item active">
356 <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
>
362 <div
class='mt-3 container'>
366 $error = "<span class='text-danger font-weight-bold'>ERROR</span>";
367 $caution = "<span class='text-danger font-weight-bold'>CAUTION</span>";
368 $ok = "<span class='text-success font-weight-bold'>OK</span>";
369 $note = "<span class='text-primary font-weight-bold'>NOTE</span>";
371 if (strtolower(ini_get('register_globals')) != 'off' && (bool) ini_get('register_globals')) {
372 echo "$caution: It appears that you have register_globals enabled in your php.ini\n" .
373 "configuration file. This causes unacceptable security risks. You must\n" .
374 "turn it off before continuing with installation.\n";
378 if (!extension_loaded("xml")) {
379 echo "$error: PHP XML extension missing. To continue, install PHP XML extension, then restart web server.";
383 if (!(extension_loaded("mysql") ||
extension_loaded("mysqlnd") ||
extension_loaded("mysqli"))) {
384 echo "$error: PHP MySQL extension missing. To continue, install and enable MySQL extension, then restart web server.";
388 if (!(extension_loaded("mbstring") )) {
389 echo "$error: PHP mb_string extension missing. To continue, install and enable mb_string extension, then restart web server.";
393 if (!(extension_loaded("openssl") )) {
394 echo "$error: PHP openssl extension missing. To continue, install PHP openssl extension, then restart web server.";
402 <h3
class="mb-3 border-bottom">Final step
- Success
</h3
>
403 <div
class="jumbotron p-5">
404 <p
>Congratulations
! OpenEMR is now installed
.</p
>
406 <li
>Access
controls (php
-GACL
) are installed
for fine
-grained security
, and can be administered in
407 OpenEMR
's admin->acl menu.</li>
408 <li>Reviewing <code> <?php echo $OE_SITE_DIR; ?>/config.php </code> is a good idea. This file
409 contains some settings that you may want to change.</li>
410 <li>There's much information
and many extra tools bundled within the OpenEMR installation directory
.
411 Please refer to openemr
/Documentation
. Many forms
and other useful scripts can be found at openemr
/contrib
.</li
>
412 <li
>To ensure a consistent look
and feel throughout the application
,
413 <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
>
414 <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>
415 <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
>
417 <p
>We recommend you
print these instructions
for future reference
.</p
>
419 echo "<p> The selected theme is :</p>";
420 $installer->displayNewThemeDiv();
421 if (empty($installer->clone_database
)) {
422 echo "<p><b>The initial OpenEMR user is <span class='text-primary'>'" . $installer->iuser
. "'</span> and the password is <span class='text-primary'>'" . $installer->iuserpass
. "'</span></b></p>";
424 echo "<p>The initial OpenEMR user name and password is the same as that of source site <b>'" . $installer->source_site_id
. "'</span></b></p>";
426 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>";
427 echo "<p>In Linux use the following command:</p>";
428 echo "<p><code>sudo apachectl -k restart</code></p>";
431 <p
>Click to start using OpenEMR
.</p
>
434 <a href
='./?site=<?php echo $site_id; ?>' class='btn btn-primary'>
435 <i
class="fas fa-chevron-right"></i
> Start
442 $installer->setCurrentTheme();
447 </div><!--end of container div-->
449 echo $end_div . "\r\n";
450 $installer->setupHelpModal();
451 echo "</body>" . "\r\n";
452 echo "</html>" . "\r\n";
460 $inst = isset($_POST["inst"]) ?
($_POST["inst"]) : '';
462 if (($config == 1) && ($state < 4)) {
463 echo "OpenEMR has already been installed. If you wish to force re-installation, then edit $installer->conffile (change the 'config' variable to 0), and re-run this script.<br />\n";
468 <h3 class="mb-3 border-bottom">Step $state - Select Database Setup</h3>
469 <div class="jumbotron p-5">
470 <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>
472 <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>
475 <input name='state' type='hidden' value='2' />
476 <input name='site' type='hidden' value='$site_id' />
477 <div class="form-check">
478 <input checked class='form-check-input' id='inst1' name='inst' type='radio' value='1' />
479 <label class="form-check-label" for="inst1">
480 Have setup create the database
484 <div class="form-check">
485 <input id='inst2' class='form-check-input' name='inst' type='radio' value='2' />
486 <label class="form-check-label" for="inst2">
487 I have already created the database
490 <div class="form-group">
491 <div class="col mt-3">
492 <button type='submit' class='btn btn-primary' value='Continue'>
493 <i class="fas fa-chevron-right"></i> Proceed to Step 2
501 echo $step1 . "\r\n";
505 $step2top = <<<STP2TOP
506 <h3 class="mb-3 border-bottom">Step $state - Database and OpenEMR Initial User Setup Details</h3>
507 <div class="jumbotron p-5">
508 <p>Now you need to supply the MySQL server information and path information. Detailed instructions on each item can be found in the
509 <a href='Documentation/INSTALL' rel='noopener' target='_blank'><u>'INSTALL'</u>
512 <form method='post' id='myform'>
513 <input name='state' type='hidden' value='3' />
514 <input name='site' type='hidden' value='$site_id' />
515 <input name='inst' type='hidden' value='$inst' />
517 echo $step2top . "\r\n";
520 $step2tabletop1 = <<<STP2TBLTOP1
522 <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>
523 <div class="ml-2 row">
524 <div class="col-sm-4">
525 <div class="clearfix form-group">
526 <div class="label-div">
527 <label class="font-weight-bold" for="server">Server Host:</label>
528 <a href="#server_info" class="info-anchor icon-tooltip" data-toggle="collapse" ><i class="fa fa-question-circle" aria-hidden="true"></i></a>
531 <input name='server' id='server' type='text' class='form-control' value='localhost' />
534 <div id="server_info" class="collapse">
535 <a href="#server_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
536 <p>If you run MySQL and Apache/PHP on the same computer, then leave this as 'localhost'.</p>
537 <p>If they are on separate computers, then enter the IP address of the computer running MySQL.</p>
540 <div class="col-sm-4">
541 <div class="clearfix form-group">
542 <div class="label-div">
543 <label class="font-weight-bold" for="port">Server Port:</label>
544 <a href="#port_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
547 <input name='port' id='port' type='text' class='form-control' value='3306' />
550 <div id="port_info" class="collapse">
551 <a href="#port_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
552 <p>This is the MySQL port.</p>
553 <p>The default port for MySQL is 3306.</p>
556 <div class="col-sm-4">
557 <div class="clearfix form-group">
558 <div class="label-div">
559 <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>
562 <input name='dbname' id='dbname' type='text' class='form-control' value='openemr' />
565 <div id="dbname_info" class="collapse">
566 <a href="#dbname_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
567 <p>This will be the name of the OpenEMR database in MySQL.</p>
568 <p>'openemr' is the recommended name.</p>
569 <p>This database will contain patient data as well as data pertaining to the OpenEMR installation.</p>
573 <div class="ml-2 row">
574 <div class="col-sm-4">
575 <div class="clearfix form-group">
576 <div class="label-div">
577 <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>
580 <input name='login' ID='login' type='text' class='form-control' value='openemr' />
583 <div id="login_info" class="collapse">
584 <a href="#login_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
585 <p>This is the name that OpenEMR will use to login to the MySQL database.</p>
586 <p>'openemr' is the recommended name.</p>
589 <div class="col-sm-4">
590 <div class="clearfix form-group">
591 <div class="label-div">
592 <label class="font-weight-bold" for="pass">Password:</label>
593 <a href="#pass_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
596 <input name='pass' id='pass' class='form-control' type='password' value='' required />
599 <div id="pass_info" class="collapse">
600 <a href="#pass_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
601 <p>This is the Login Password that OpenEMR will use to accesses the MySQL database.</p>
602 <p>It should be at least 12 characters long and composed of both numbers and letters.</p>
606 echo $step2tabletop1 . "\r\n";
608 $step2tabletop2 = <<<STP2TBLTOP2
609 <div class="col-sm-4">
610 <div class="clearfix form-group">
611 <div class="label-div">
612 <label class="font-weight-bold" for="root">Name for Root Account:</label>
613 <a href="#root_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
616 <input name='root' id='root' type='text' class='form-control' value='root' />
619 <div id="root_info" class="collapse">
620 <a href="#root_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
621 <p>This is name for the MySQL root account.</p>
622 <p>For localhost, it is usually ok to leave it as 'root'.</p>
626 <div class="ml-2 row">
627 <div class="col-sm-4">
628 <div class="clearfix form-group">
629 <div class="label-div">
630 <label class="font-weight-bold" for="rootpass">Root Password:</label>
631 <a href="#rootpass_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
634 <input name='rootpass' id='rootpass' type='password' class='form-control' value='' />
637 <div id="rootpass_info" class="collapse">
638 <a href="#rootpass_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
639 <p>This is your MySQL server root password.</p>
642 <div class="col-sm-4">
643 <div class="clearfix form-group">
644 <div class="label-div">
645 <label class="font-weight-bold" for="loginhost">User Hostname:</label>
646 <a href="#loginhost_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
649 <input name='loginhost' id='loginhost' type='text' class='form-control' value='localhost' />
652 <div id="loginhost_info" class="collapse">
653 <a href="#loginhost_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
654 <p>If you run Apache/PHP and MySQL on the same computer, then leave this as 'localhost'.</p>
655 <p>If they are on separate computers, then enter the IP address of the computer running Apache/PHP.</p>
658 <div class="col-sm-4">
659 <div class="clearfix form-group">
660 <div class="label-div">
661 <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>
664 <select name='collate' id=='collate' class='form-control'>
665 <option selected value='utf8mb4_general_ci'>
666 General (Recommended)
668 <option value='utf8mb4_unicode_ci'>
671 <option value='utf8mb4_roman_ci'>
674 <option value='utf8mb4_croatian_ci'>
677 <option value='utf8mb4_czech_ci'>
680 <option value='utf8mb4_danish_ci'>
683 <option value='utf8mb4_esperanto_ci'>
686 <option value='utf8mb4_estonian_ci'>
689 <option value='utf8mb4_german2_ci'>
692 <option value='utf8mb4_hungarian_ci'>
695 <option value='utf8mb4_icelandic_ci'>
698 <option value='utf8mb4_latvian_ci'>
701 <option value='utf8mb4_lithuanian_ci'>
704 <option value='utf8mb4_persian_ci'>
707 <option value='utf8mb4_polish_ci'>
710 <option value='utf8mb4_romanian_ci'>
713 <option value='utf8mb4_sinhala_ci'>
716 <option value='utf8mb4_slovak_ci'>
719 <option value='utf8mb4_slovenian_ci'>
722 <option value='utf8mb4_spanish_ci'>
725 <option value='utf8mb4_spanish2_ci'>
726 Spanish (Traditional)
728 <option value='utf8mb4_swedish_ci'>
731 <option value='utf8mb4_turkish_ci'>
734 <option value='utf8mb4_vietnamese_ci'>
740 <div id="collate_info" class="collapse">
741 <a href="#collate_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
742 <p>This is the collation setting for MySQL.</p>
743 <p>Collation refers to a set of rules that determine how data is sorted and compared in a database.</p>
744 <p>Leave as 'General' if you are not sure.</p>
745 <p>If the language you are planning to use in OpenEMR is in the menu, then you can select it.</p>
746 <p>Otherwise, just select 'General'.</p>
751 echo $step2tabletop2 . "\r\n";
753 // Include a "source" site ID drop-list and a checkbox to indicate
754 // if cloning its database. When checked, do not display initial user
755 // and group stuff below.
756 $dh = opendir($OE_SITES_BASE);
758 die("Cannot read directory '$OE_SITES_BASE'.");
761 $siteslist = array();
762 while (false !== ($sfname = readdir($dh))) {
763 if (substr($sfname, 0, 1) == '.') {
767 if ($sfname == 'CVS') {
771 if ($sfname == $site_id) {
775 $sitedir = "$OE_SITES_BASE/$sfname";
776 if (!is_dir($sitedir)) {
780 if (!is_file("$sitedir/sqlconf.php")) {
784 $siteslist[$sfname] = $sfname;
788 // If this is not the first site...
789 if (!empty($siteslist)) {
791 $source_site_top = <<<SOURCESITETOP
792 <div class="ml-2 row">
793 <div class="col-sm-4">
794 <div class="clearfix form-group">
795 <div class="label-div">
796 <label class="font-weight-bold" for="source_site_id">Source Site:</label>
797 <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>
800 <select name='source_site_id'id='source_site_id' class='form-control'>
802 echo $source_site_top . "\r\n";
803 foreach ($siteslist as $sfname) {
804 echo "<option value='$sfname'";
805 if ($sfname == 'default') {
809 echo ">$sfname</option>";
811 $source_site_bot = <<<SOURCESITEBOT
816 <div id="source_site_id_info" class="collapse">
817 <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>
818 <p>The site directory that will be a model for the new site.</p>
821 <div class="col-sm-4">
822 <div class="clearfix form-group">
823 <div class="label-div">
824 <label class="font-weight-bold" for="clone_database">Clone Source Database:</label>
825 <a href="#clone_database_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
828 <input type='checkbox' name='clone_database' id='clone_database' onclick='cloneClicked()' />
831 <div id="clone_database_info" class="collapse">
832 <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>
833 <p>Clone the source site's database instead of creating a fresh one.</p>
838 echo $source_site_bot . "\r\n";
841 $randomusernamepre = RandomGenUtils::produceRandomString(3, "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
842 $randomusernamepost = RandomGenUtils::produceRandomString(2, "0123456789");
843 $randomusername = $randomusernamepre . "-admin-" . $randomusernamepost;
845 // App Based TOTP secret
846 // Shared key (per rfc6238 and rfc4226) should be 20 bytes (160 bits) and encoded in base32, which should
847 // be 32 characters in base32
848 // Would be nice to use the OpenEMR\Common\Utils\RandomGenUtils\produceRandomBytes() function and then encode to base32,
849 // but does not appear to be a standard way to encode binary to base32 in php.
850 $randomsecret = RandomGenUtils::produceRandomString(32, "234567ABCDEFGHIJKLMNOPQRSTUVWXYZ");
851 if (empty($randomsecret) || empty($randomusernamepre) || empty($randomusernamepost)) {
852 error_log('OpenEMR Error : Random String error - exiting');
855 $disableCheckbox = "";
856 if (empty($randomsecret)) {
858 $disableCheckbox = "disabled";
861 $step2tablebot = <<<STP2TBLBOT
864 <fieldset class='noclone'>
865 <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>
866 <div class="ml-2 row">
867 <div class="col-sm-4">
868 <div class="clearfix form-group">
869 <div class="label-div">
870 <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>
873 <input name='iuser' id='iuser' type='text' class='form-control' value='$randomusername' minlength='12' />
876 <div id="iuser_info" class="collapse">
877 <a href="#iuser_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
878 <p>This is the login name of the first user that will be created for you.</p>
879 <p>Limit this to one word with at least 12 characters and composed of both numbers and letters.</p>
882 <div class="col-sm-4">
883 <div class="clearfix form-group">
884 <div class="label-div">
885 <label class="font-weight-bold" for="iuserpass">Initial User Password:</label>
886 <a href="#iuserpass_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
889 <input name='iuserpass' id='iuserpass' type='password' class='form-control' value='' minlength='12' />
892 <div id="iuserpass_info" class="collapse">
893 <a href="#iuserpass_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
894 <p>This is the password for the initial user.
897 <div class="col-sm-4">
898 <div class="clearfix form-group">
899 <div class="label-div">
900 <label class="font-weight-bold" for="iufname">Initial User's First Name:</label>
901 <a href="#iufname_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
904 <input name='iufname' id='iufname 'type='text' class='form-control' value='Administrator' />
907 <div id="iufname_info" class="collapse">
908 <a href="#iufname_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
909 <p>This is the First name of the 'initial user'.</p>
913 <div class="ml-2 row">
914 <div class="col-sm-4">
915 <div class="clearfix form-group">
916 <div class="label-div">
917 <label class="font-weight-bold" for="iuname">Initial User's Last Name:</label>
918 <a href="#iuname_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
921 <input name='iuname' id='iuname' type='text' class='form-control' value='Administrator' />
924 <div id="iuname_info" class="collapse">
925 <a href="#iuname_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
926 <p>This is the Last name of the 'initial user'.</p>
929 <div class="col-sm-4">
930 <div class="clearfix form-group">
931 <div class="label-div">
932 <label class="font-weight-bold" for="igroup">Initial Group:</label>
933 <a href="#igroup_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
936 <input name='igroup' id='igroup' class='form-control' type='text' value='Default' />
939 <div id="igroup_info" class="collapse">
940 <a href="#igroup_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
941 <p>This is the group that will be created for your users.</p>
942 <p>This should be the name of your practice.</p>
948 <fieldset class='noclone py-2 bg-warning'>
949 <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>
950 <div class="ml-2 row">
951 <div class="col-sm-3">
952 <div class="clearfix form-group">
953 <div class="label-div">
954 <label class="font-weight-bold" for="i2fa">Configure 2FA:</label>
955 <a href="#i2fa_info" class="info-anchor icon-tooltip" data-toggle="collapse"><i class="fa fa-question-circle" aria-hidden="true"></i></a>
958 <input name='i2faenable' id='i2faenable' type='checkbox' $disableCheckbox/> Enable 2FA
959 <input type='hidden' name='i2fasecret' id='i2fasecret' value='$randomsecret' />
962 <div id="i2fa_info" class="collapse">
963 <a href="#i2fa_info" data-toggle="collapse" class="oe-pull-away"><i class="fa fa-times oe-help-x" aria-hidden="true"></i></a>
964 <p>If selected will allow TOTP 2 factor authentication for the initial user.</p>
965 <p>Click on the help file for more information.</p>
968 <div class="col-sm-5">
969 <div class="clearfix form-group">
970 <p class="text-danger font-weight-bold">IMPORTANT IF ENABLED</p>
971 <p>If enabled, you must have an authenticator app on your phone ready to scan the QR code displayed next.</p>
974 <div class="col-sm-4">
975 <div class="clearfix form-group">
976 <p>Example authenticator apps include:</p>
979 (<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>
981 (<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>
987 <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>
988 <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>
989 <div class="form-row">
991 <button type='submit' id='create_db_button' value='Continue' class='wait btn btn-primary'>
992 <i class="fas fa-chevron-right"></i> Create DB and User
999 echo $step2tablebot . "\r\n";
1004 // (applicable if not cloning from another database)
1006 $pass_step2_validation = true;
1007 $error_step2_message = "$error - ";
1009 if (! $installer->char_is_valid($_REQUEST['server'])) {
1010 $pass_step2_validation = false;
1011 $error_step2_message .= "A database server host is required <br />\n";
1014 if (! $installer->char_is_valid($_REQUEST['port'])) {
1015 $pass_step2_validation = false;
1016 $error_step2_message .= "A database server port value is required <br />\n";
1019 if (! $installer->databaseNameIsValid($_REQUEST['dbname'])) {
1020 $pass_step2_validation = false;
1021 $error_step2_message .= "A database name is required <br />\n";
1024 if (! $installer->collateNameIsValid($_REQUEST['collate'])) {
1025 $pass_step2_validation = false;
1026 $error_step2_message .= "A collation name is required <br />\n";
1029 if (! $installer->char_is_valid($_REQUEST['login'])) {
1030 $pass_step2_validation = false;
1031 $error_step2_message .= "A database login name is required <br />\n";
1034 if (! $installer->char_is_valid($_REQUEST['pass'])) {
1035 $pass_step2_validation = false;
1036 $error_step2_message .= "A database login password is required <br />\n";
1039 if (!$pass_step2_validation) {
1040 $error_step2_message .= $error_page_end . "\r\n";
1041 die($error_step2_message);
1045 if (empty($installer->clone_database)) {
1046 if (! $installer->login_is_valid()) {
1047 echo "$error. Please pick a proper 'Login Name'.<br />\n";
1048 echo "Click Back in browser to re-enter.<br />\n";
1052 if (! $installer->iuser_is_valid()) {
1053 echo "$error. The 'Initial User' field can only contain one word and no spaces.<br />\n";
1054 echo "Click Back in browser to re-enter.<br />\n";
1058 if (! $installer->user_password_is_valid()) {
1059 echo "$error. Please pick a proper 'Initial User Password'.<br />\n";
1060 echo "Click Back in browser to re-enter.<br />\n";
1065 if (! $installer->password_is_valid()) {
1066 echo "$error. Please pick a proper 'Password'.<br />\n";
1067 echo "Click Back in browser to re-enter.<br />\n";
1071 echo "<h3 class='mb-3 border-bottom'>Step $state - Creating Database and First User</h3>";
1072 echo "<div class='jumbotron p-5'>";
1074 // Skip below if database shell has already been created.
1076 echo "Connecting to MySQL Server...\n";
1078 if (! $installer->root_database_connection()) {
1079 echo "$error. Check your login credentials.\n";
1080 echo $installer->error_message;
1083 echo "$ok.<br />\n";
1088 // Only pertinent if cloning another installation database
1089 if ($allow_cloning_setup && !empty($installer->clone_database)) {
1090 echo "Dumping source database...";
1092 if (! $installer->create_dumpfiles()) {
1093 echo $installer->error_message;
1096 echo "$ok.<br />\n";
1101 // Only pertinent if mirroring another installation directory
1102 if (! empty($installer->source_site_id)) {
1103 echo "Creating site directory...";
1104 if (! $installer->create_site_directory()) {
1105 echo $installer->error_message;
1113 // Skip below if database shell has already been created.
1115 echo "Creating database...\n";
1117 if (! $installer->create_database()) {
1118 echo "$error. Check your login credentials.\n";
1119 echo $installer->error_message;
1122 echo "$ok.<br />\n";
1126 echo "Creating user with permissions for database...\n";
1128 $user_mysql_error = true;
1129 if (! $installer->create_database_user()) {
1130 echo "$error when creating specified user.\n";
1131 echo $installer->error_message;
1134 $user_mysql_error = false;
1136 if (! $installer->grant_privileges()) {
1137 echo "$error when granting privileges to the specified user.\n";
1138 echo $installer->error_message;
1141 $user_mysql_error = false;
1143 if (!$user_mysql_error) {
1144 echo "$ok.<br />\n";
1148 echo "Reconnecting as new user...\n";
1150 $installer->disconnect();
1152 echo "Connecting to MySQL Server...\n";
1155 if (! $installer->user_database_connection()) {
1156 echo "$error. Check your login credentials.\n";
1157 echo $installer->error_message;
1160 echo "$ok.<br />\n";
1164 // Load the database files
1165 $dump_results = $installer->load_dumpfiles();
1166 if (! $dump_results) {
1168 echo $installer->error_message;
1175 echo "Writing SQL configuration...\n";
1177 if (! $installer->write_configuration_file()) {
1179 echo $installer->error_message;
1182 echo "$ok.<br />\n";
1186 // Only pertinent if not cloning another installation database
1187 if (empty($installer->clone_database)) {
1188 echo "Setting version indicators...\n";
1190 if (! $installer->add_version_info()) {
1192 echo $installer->error_message;
1200 echo "Writing global configuration defaults...\n";
1202 if (! $installer->insert_globals()) {
1204 echo $installer->error_message;
1212 echo "Setting up Access Controls...\n";
1213 require("$OE_SITE_DIR/sqlconf.php");
1214 if (! $installer->install_gacl()) {
1216 echo $installer->error_message;
1224 echo "Adding Initial User...\n";
1226 if (! $installer->add_initial_user()) {
1228 echo $installer->error_message;
1234 echo "Adding Additional Users...\n";
1236 if (! $installer->install_additional_users()) {
1238 echo $installer->error_message;
1245 // If user has selected to set MFA App Based 2FA, display QR code to scan
1246 $qr = $installer->get_initial_user_2fa_qr();
1248 $qrDisplay = <<<TOTP
1253 <strong class='text-danger'>IMPORTANT!!</strong>
1254 <p><strong>You must scan the following QR code with your preferred authenticator app.</strong></p>
1255 <img src='$qr' width="150" />
1260 Example authenticator apps include:
1263 (<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>
1265 (<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>
1274 if ($allow_cloning_setup && !empty($installer->clone_database)) {
1275 // Database was cloned, skip ACL setup.
1276 $btn_text = 'Proceed to Select a Theme';
1278 echo "<p>The database was cloned, access control list exists therefore skipping ACL setup</p>";
1279 echo "<p class='p-1 bg-warning'>Click <b>$btn_text</b> for further instructions.</p>";
1282 $btn_text = 'Proceed to Step 4';
1284 echo "<p><b>Granted user <span class='text-primary'>$installer->iuser</span> administrator access control (password is <span class='text-primary'>$installer->iuserpass</span>).</b></p>";
1285 echo "<p>The next step will configure php.</p>";
1286 echo "<p class='mark'>Click <strong>$btn_text</strong> to continue.</p>";
1290 $form_top = <<<FRMTOP
1291 <form method='post'>
1292 <input name='state' type='hidden' value='$next_state' />
1293 <input name='site' type='hidden' value='$site_id' />
1294 <input name='iuser' type='hidden' value='{$installer->iuser}' />
1295 <input name='iuserpass' type='hidden' value='{$installer->iuserpass}' />
1296 <input name='iuname' type='hidden' value='{$installer->iuname}' />
1297 <input name='iufname' type='hidden' value='{$installer->iufname}' />
1298 <input name='login' type='hidden' value='{$installer->login}' />
1299 <input name='pass' type='hidden' value='{$installer->pass}' />
1300 <input name='server' type='hidden' value='{$installer->server}' />
1301 <input name='port' type='hidden' value='{$installer->port}' />
1302 <input name='loginhost' type='hidden' value='{$installer->loginhost}' />
1303 <input name='dbname' type='hidden' value='{$installer->dbname}' />
1305 echo $form_top . "\r\n";
1306 if ($allow_cloning_setup) {
1307 echo "<input type='hidden' name='clone_database' value='$installer->clone_database' />";
1308 echo "<input name='source_site_id' type='hidden' value='$installer->source_site_id' />";
1310 $form_bottom = <<<FRMBOT
1311 <div class="form-row">
1312 <div class="col-12">
1313 <button type='submit' id='step-4-btn' class="btn btn-primary" value='Continue'>
1314 <i class="fas fa-chevron-right"></i> $btn_text
1321 echo $form_bottom . "\r\n";
1325 $step4_top = <<<STP4TOP
1326 <h3 class="mb-3 border-bottom">Step $state - Configure PHP</h3>
1327 <div class="jumbotron p-5">
1328 <p>Configuration of PHP...</p>
1329 <p>We recommend making the following changes to your PHP installation, which can normally be done by editing the php.ini configuration file:</p>
1332 echo $step4_top . "\r\n";
1335 $phpINIfile = php_ini_loaded_file();
1337 echo "<li><span class='text-success'>Your php.ini file can be found at " . $phpINIfile . "</span></li>\n";
1341 $short_tag = ini_get('short_open_tag') ? 'On' : 'Off';
1342 $short_tag_style = (strcmp($short_tag, 'Off') === 0) ? '' : 'text-danger';
1343 $display_errors = ini_get('display_errors') ? 'On' : 'Off';
1344 $display_errors_style = (strcmp($display_errors, "Off") === 0) ? '' : 'text-danger';
1345 $register_globals = ini_get('register_globals') ? 'On' : 'Off';
1346 $register_globals_style = (strcmp($register_globals, 'Off') === 0) ? '' : 'text-danger';
1347 $max_input_vars = ini_get('max_input_vars');
1348 $max_input_vars_style = $max_input_vars < 3000 ? 'text-danger' : '';
1349 $max_execution_time = (int)ini_get('max_execution_time');
1350 $max_execution_time_style = $max_execution_time >= 60 || $max_execution_time === 0 ? '' : 'text-danger';
1351 $max_input_time = ini_get('max_input_time');
1352 $max_input_time_style = (strcmp($max_input_time, '-1') === 0) ? '' : 'text-danger';
1353 $post_max_size = ini_get('post_max_size');
1354 $post_max_size_style = $post_max_size < 30 ? 'text-danger' : '';
1355 $memory_limit = ini_get('memory_limit');
1356 $memory_limit_style = $memory_limit < 256 ? 'text-danger' : '';
1357 $mysqli_allow_local_infile = ini_get('mysqli.allow_local_infile') ? 'On' : 'Off';
1358 $mysqli_allow_local_infile_style = (strcmp($mysqli_allow_local_infile, 'On') === 0) ? '' : 'text-danger';
1360 $step4_table = <<<STP4TAB
1361 <li>To ensure proper functioning of OpenEMR you must make sure that PHP settings include:
1362 <table class='phpset'>
1365 <th>Required value</th>
1366 <th>Current value</th>
1369 <td>short_open_tag</td>
1371 <td class='$short_tag_style'>$short_tag</td>
1374 <td>display_errors</td>
1376 <td class='$display_errors_style'>$display_errors</td>
1379 <td>register_globals</td>
1381 <td class='$register_globals_style'>$register_globals</td>
1384 <td>max_input_vars</td>
1385 <td>at least 3000</td>
1386 <td class='$max_input_vars_style'>$max_input_vars</td>
1389 <td>max_execution_time</td>
1390 <td>at least 60</td>
1391 <td class='$max_execution_time_style'>$max_execution_time</td>
1394 <td>max_input_time</td>
1396 <td class='$max_input_time_style'>$max_input_time</td>
1399 <td>post_max_size</td>
1400 <td>at least 30M</td>
1401 <td class='$post_max_size_style'>$post_max_size</td>
1404 <td>memory_limit</td>
1405 <td>at least 256M</td>
1406 <td class='$memory_limit_style'>$memory_limit</td>
1409 <td>mysqli.allow_local_infile</td>
1411 <td class='$mysqli_allow_local_infile_style'>$mysqli_allow_local_infile</td>
1415 <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.
1418 echo $step4_table . "\r\n";
1420 if (!$gotFileFlag) {
1421 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";
1424 $btn_text = 'Proceed to Step 5';
1425 $step4_bottom = <<<STP4BOT
1428 <p>We recommend you print these instructions for future reference.</p>
1429 <p>The next step will configure the Apache web server.</p>
1430 <p class='mark'>Click <strong>$btn_text</strong> to continue.</p>
1432 <form method='post'>
1433 <input type='hidden' name='state' value='5' />
1434 <input type='hidden' name='site' value='$site_id' />
1435 <input type='hidden' name='iuser' value='{$installer->iuser}' />
1436 <input type='hidden' name='iuserpass' value='{$installer->iuserpass}' />
1437 <input name='login' type='hidden' value='{$installer->login}' />
1438 <input name='pass' type='hidden' value='{$installer->pass}' />
1439 <input name='server' type='hidden' value='{$installer->server}' />
1440 <input name='port' type='hidden' value='{$installer->port}' />
1441 <input name='loginhost' type='hidden' value='{$installer->loginhost}' />
1442 <input name='dbname' type='hidden' value='{$installer->dbname}' />
1443 <div class="form-row">
1444 <div class="col-12">
1445 <button type='submit' class='btn btn-primary' value='Continue'>
1446 <i class="fas fa-chevron-right"></i> $btn_text
1453 echo $step4_bottom . "\r\n";
1457 echo "<h3 class='mb-3 border-bottom'>Step $state - Configure Apache Web Server</h3>";
1458 echo "<div class='jumbotron p-5'>";
1459 echo "<p>Configuration of Apache web server...</p><br />\n";
1460 echo "The <code>\"" . preg_replace("/${site_id}/", "*", realpath($docsDirectory)) . "\"</code> directory contain patient information, and
1461 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 />
1462 <code><Directory \"" . realpath(dirname(__FILE__)) . "\"><br />
1463 AllowOverride FileInfo<br />
1464 Require all granted<br />
1465 <code></Directory></code><br />
1466 <Directory \"" . realpath(dirname(__FILE__)) . "/sites\"><br />
1467 AllowOverride None<br />
1468 </Directory></code><br />
1469 <code><Directory \"" . preg_replace("/${site_id}/", "*", realpath($docsDirectory)) . "\"><br />
1470 Require all denied<br />
1471 </Directory></code><br /><br />";
1473 $btn_text = 'Proceed to Select a Theme';
1474 $step5_bottom = <<<STP5BOT
1475 <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>
1476 <p>We recommend you print these instructions for future reference.</p>
1477 <p class='mark'>Click <strong>'$btn_text'</strong> to select a theme.</p>
1479 <form method='post'>
1480 <input type='hidden' name='state' value='6' />
1481 <input type='hidden' name='site' value='$site_id' />
1482 <input type='hidden' name='iuser' value='{$installer->iuser}' />
1483 <input type='hidden' name='iuserpass' value='{$installer->iuserpass}' />
1484 <input name='login' type='hidden' value='{$installer->login}' />
1485 <input name='pass' type='hidden' value='{$installer->pass}' />
1486 <input name='server' type='hidden' value='{$installer->server}' />
1487 <input name='port' type='hidden' value='{$installer->port}' />
1488 <input name='loginhost' type='hidden' value='{$installer->loginhost}' />
1489 <input name='dbname' type='hidden' value='{$installer->dbname}' />
1490 <div class="form-row">
1491 <div class="col-12">
1492 <button type='submit' class='btn btn-primary' value='Continue'>
1493 <i class="fas fa-chevron-right"></i> $btn_text
1500 echo $step5_bottom . "\r\n";
1504 echo "<h3 class='mb-3 border-bottom'>Step $state - Select a Theme</h3>";
1505 echo "<div class='jumbotron p-5'>";
1506 echo "<p>Select a theme for OpenEMR...</p>\n";
1507 $btn_text = "Proceed to Final Step";
1508 $installer->displaySelectedThemeDiv();
1509 $theme_form = <<<TMF
1511 <div class="col-12">
1512 <form method='post'>
1513 <input type='hidden' name='state' value='7' />
1514 <input type='hidden' name='site' value='$site_id' />
1515 <input type='hidden' name='iuser' value='{$installer->iuser}' />
1516 <input type='hidden' name='iuserpass' value='{$installer->iuserpass}' />
1517 <input name='login' type='hidden' value='{$installer->login}' />
1518 <input name='pass' type='hidden' value='{$installer->pass}' />
1519 <input name='server' type='hidden' value='{$installer->server}' />
1520 <input name='port' type='hidden' value='{$installer->port}' />
1521 <input name='loginhost' type='hidden' value='{$installer->loginhost}' />
1522 <input name='dbname' type='hidden' value='{$installer->dbname}' />
1523 <input type='hidden' name='new_theme' id = 'new_theme' value='{$installer->getCurrentTheme()}' />
1524 <input name='clone_database' type='hidden' value='{$installer->clone_database}' />
1525 <input name='source_site_id' type='hidden' value='{$installer->source_site_id}' />
1526 <h4>Select One:</h4>
1527 <div class="checkbox">
1528 <label><input type="checkbox" class="check" value="show_theme" />Show More Themes</label>
1530 <div class="checkbox">
1531 <label><input type="checkbox" class="check" value="keep_current" />Keep Current</label>
1533 <div class='hide_button' style="display:none;">
1534 <button type='submit' class='btn btn-primary' value='Continue' id='continue'>
1535 <i class="fas fa-chevron-right"></i> {$btn_text}
1542 echo $theme_form . "\r\n";
1543 echo '<div class="row hideaway" style="display:none;">' . "\r\n";
1544 echo '<div class="col-12">' . "\r\n";
1545 echo ' <h4>Select New Theme: <h5>(scroll down to view all)</h5></h4>' . "\r\n";
1546 echo ' <br />' . "\r\n";
1547 $installer->displayThemesDivs();
1554 <h3 class="mb-3 border-bottom">Pre Install - Checking File and Directory Permissions</h3>
1555 <div class="jumbotron p-5">
1557 Welcome to OpenEMR. This utility will step you through the installation and configuration of OpenEMR for your practice.
1561 Before proceeding, be sure that you have a properly installed and configured MySQL server available, and a PHP configured webserver.
1564 <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>
1567 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.
1572 if ($checkPermissions) {
1573 echo "<p>We will now ensure correct file and directory permissions before starting installation:</p>\n";
1574 echo "<p class='text-success m-0'>Ensuring following file is world-writable...</p>\n";
1576 foreach ($writableFileList as $tempFile) {
1577 if (is_writable($tempFile)) {
1578 echo "<code class='ml-5'>" . realpath($tempFile) . "</code> file is <span class='text-success font-weight-bold'>ready</span><br /><br />\n";
1580 echo "<p><span class='text-danger'>UNABLE</span> to open file '" . realpath($tempFile) . "' for writing.<br />\n";
1581 echo "(configure file permissions; see below for further instructions)</p>\n";
1586 if ($errorWritable) {
1587 $check_file = <<<CHKFILE
1588 <p class="text-danger">You can't proceed until all above files are ready (world-writable).</p>
1589 <p>In linux, recommend changing file permissions with the <strong>'chmod 666 filename'</strong> command.</p>
1590 <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>
1592 <form method='post'>
1593 <input type='hidden' name='site' value='$site_id' />
1594 <button type='submit' class='btn btn-primary' value='check again'>Check Again</button>
1597 echo $check_file . "\r\n";
1602 foreach ($writableDirList as $tempDir) {
1603 echo "<p class='text-success m-0'>Ensuring the <code>" . realpath($tempDir) . "</code> directory and its subdirectories have proper permissions...</p>\n";
1604 $errorWritable = recursive_writable_directory_test($tempDir);
1607 if ($errorWritable) {
1608 $check_directory = <<<CHKDIR
1609 <p class="text-danger">You can't proceed until all directories and subdirectories are ready.</p>
1610 <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>
1611 <p class='p-1 bg-warning'>Fix above directory permissions and then click the <strong>'Check Again'</strong> button to re-check directories.</p>
1613 <form method='post'>
1614 <input type='hidden' name='site' value='$site_id' />
1615 <button type='submit' value='check again'><b>Check Again</b></button>
1618 echo $check_directory . "\r\n";
1624 <p>All required files and directories have been verified.</p>
1625 <p class='mark'>Click <span class="font-weight-bold">Proceed to Step 1</span> to continue with a new installation.</p>
1626 <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>
1628 <form method='post'>
1629 <input name='state' type='hidden' value='1' />
1630 <input name='site' type='hidden' value='$site_id' />
1631 <div class="form-group">
1633 <button type='submit' class='btn btn-primary' value='Continue'>
1634 <i class="fas fa-chevron-right"></i> Proceed to Step 1
1640 echo $form . "\r\n";
1644 <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 .</p>
1645 <p class='mark'>Click <b>Proceed to Step 1</b> to continue with a new installation.</p>
1646 <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>
1648 <form method='post'>
1649 <input name='state' type='hidden' value='1'>
1650 <input name='site' type='hidden' value='$site_id'>
1651 <button type='submit' value='Continue'><b>Proceed to Step 1</b></button>
1654 echo $form . "\r\n"; }
1666 </div><!--end of container div -->
1667 <?php $installer->setupHelpModal();?>
1671 $('.icon-tooltip').prop( "title", "Click to see more information").tooltip({
1677 $('.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();
1678 $('.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();
1685 $("input[type='radio']").click(function() {
1686 var radioValue = $("input[name='stylesheet']:checked").val();
1687 var imgPath = "public/images/stylesheets/";
1688 var currStyle = $("#current_theme_title").text();
1689 var currStyleTitle = currStyle;
1690 currStyle = currStyle.replace(/\b\w/g, l => l.toLowerCase());
1691 currStyle = currStyle.split(" ");
1692 currStyle = currStyle.join("_");
1693 currStyle = "style_" + currStyle + ".png";
1695 var currThemeText = radioValue.split("_");
1696 currThemeText = currThemeText.join(" ");
1697 currThemeText = currThemeText.replace(/\b\w/g, l => l.toUpperCase());
1698 var styleSelected = confirm("You have selected style - " + currThemeText + "\n" + "Click OK to apply selection");
1699 if (styleSelected) {
1700 $("#current_theme").attr("src", imgPath + "style_" + radioValue + ".png");
1701 $("#current_theme_title").text(currThemeText);
1702 $("#new_theme").val("style_" + radioValue + ".css");
1704 $("#current_theme").attr("src", imgPath + currStyle);
1705 $("#current_theme_title").text(currStyleTitle);
1706 $(this).prop("checked", false);
1710 $('.check').click(function() {
1711 $('.check').not(this).prop('checked', false);
1712 if($('.check:checked').val() == 'show_theme'){
1713 $(".hideaway").show();
1714 } else if($('.check:checked').val() == 'keep_current'){
1715 $(".hideaway").hide();
1718 if($('.check').filter(':checked').length > 0) {
1719 $(".hide_button").show();
1721 $(".hide_button").hide();
1722 $(".hideaway").hide();
1725 $('.wait').removeClass('button-wait');
1727 $( "#create_db_button" ).hover(
1729 if (($('#iuserpass' ).val().length > 11 && $('#iuser' ).val().length > 11 ) || ($('#clone_database').prop('checked'))){
1731 $("button").click(function(){
1732 $(".oe-spinner").css("visibility", "visible");
1735 $('.wait').click(function(){
1736 $('.wait').addClass('button-wait');
1742 $("#step-4-btn").click(function(){
1743 $(".oe-spinner").css("visibility", "visible");
1744 $(this).addClass('button-wait');