Document module improvements, take 3.
[openemr.git] / setup.php
blobee04ed4bd8368dbce960faf98cdfe890e9c9e317
1 <?php
2 // This program is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU General Public License
4 // as published by the Free Software Foundation; either version 2
5 // of the License, or (at your option) any later version.
7 $COMMAND_LINE = php_sapi_name() == 'cli';
8 require_once dirname(__FILE__) . '/library/classes/Installer.class.php';
10 //turn off PHP compatibility warnings
11 ini_set("session.bug_compat_warn","off");
13 $state = $_POST["state"];
15 // Make this true for IPPF.
16 $ippf_specific = false;
18 // If this script was invoked with no site ID, then ask for one.
19 if (!$COMMAND_LINE && empty($_REQUEST['site'])) {
20 echo "<html>\n";
21 echo "<head>\n";
22 echo "<title>OpenEMR Setup Tool</title>\n";
23 echo "<link rel='stylesheet' href='interface/themes/style_blue.css'>\n";
24 echo "</head>\n";
25 echo "<body>\n";
26 echo "<p><b>Optional Site ID Selection</b></p>\n";
27 echo "<p>Most OpenEMR installations support only one site. If that is " .
28 "true for you then ignore the rest of this text and just click Continue.</p>\n";
29 echo "<p>Otherwise please enter a unique Site ID here.</p>\n";
30 echo "<p>A Site ID is a short identifier with no spaces or special " .
31 "characters other than periods or dashes. It is case-sensitive and we " .
32 "suggest sticking to lower case letters for ease of use.</p>\n";
33 echo "<p>If each site will have its own host/domain name, then use that " .
34 "name as the Site ID (e.g. www.example.com).</p>\n";
35 echo "<p>The site ID is used to identify which site you will log in to. " .
36 "If it is a hostname then it is taken from the hostname in the URL. " .
37 "Otherwise you must append \"?site=<i>siteid</i>\" to the URL used for " .
38 "logging in.</p>\n";
39 echo "<p>It is OK for one of the sites to have \"default\" as its ID. This " .
40 "is the ID that will be used if it cannot otherwise be determined.</p>\n";
41 echo "<form method='post'><input type='hidden' name='state' value='0'>" .
42 "Site ID: <input type='text' name='site' value='default'>&nbsp;" .
43 "<input type='submit' value='Continue'><br></form><br>\n";
44 echo "</body></html>\n";
45 exit();
48 // Support "?site=siteid" in the URL, otherwise assume "default".
49 $site_id = 'default';
50 if (!$COMMAND_LINE && !empty($_REQUEST['site'])) {
51 $site_id = trim($_REQUEST['site']);
54 // Die if site ID is empty or has invalid characters.
55 if (empty($site_id) || preg_match('/[^A-Za-z0-9\\-.]/', $site_id))
56 die("Site ID '$site_id' contains invalid characters.");
58 //If having problems with file and directory permission
59 // checking, then can be manually disabled here.
60 $checkPermissions = True;
62 $installer = new Installer( $_REQUEST );
63 global $OE_SITE_DIR; // The Installer sets this
65 $docsDirectory = "$OE_SITE_DIR/documents";
66 $billingDirectory = "$OE_SITE_DIR/edi";
67 $billingDirectory2 = "$OE_SITE_DIR/era";
69 $billingLogDirectory = dirname(__FILE__)."/library/freeb";
70 $lettersDirectory = "$OE_SITE_DIR/letter_templates";
71 $gaclWritableDirectory = dirname(__FILE__)."/gacl/admin/templates_c";
72 $requiredDirectory1 = dirname(__FILE__)."/interface/main/calendar/modules/PostCalendar/pntemplates/compiled";
73 $requiredDirectory2 = dirname(__FILE__)."/interface/main/calendar/modules/PostCalendar/pntemplates/cache";
75 //These are files and dir checked before install for
76 // correct permissions.
77 if (is_dir($OE_SITE_DIR)) {
78 $writableFileList = array($installer->conffile);
79 $writableDirList = array($docsDirectory, $billingDirectory, $billingDirectory2, $lettersDirectory, $gaclWritableDirectory, $requiredDirectory1, $requiredDirectory2);
81 else {
82 $writableFileList = array();
83 $writableDirList = array($OE_SITES_BASE, $gaclWritableDirectory, $requiredDirectory1, $requiredDirectory2);
86 // Include the sqlconf file if it exists yet.
87 $config = 0;
88 if (file_exists($OE_SITE_DIR)) {
89 include_once($installer->conffile);
91 else if ($state > 3) {
92 // State 3 should have created the site directory if it is missing.
93 die("Internal error, site directory is missing.");
97 <HTML>
98 <HEAD>
99 <TITLE>OpenEMR Setup Tool</TITLE>
100 <LINK REL=STYLESHEET HREF="interface/themes/style_sky_blue.css">
102 <style>
103 .noclone { }
104 </style>
106 <script type="text/javascript" src="library/js/jquery.js"></script>
108 <script language="javascript">
109 // onclick handler for "clone database" checkbox
110 function cloneClicked() {
111 var cb = document.forms[0].clone_database;
112 $('.noclone').css('display', cb.checked ? 'none' : 'block');
114 </script>
116 </HEAD>
117 <BODY>
119 <span class="title">OpenEMR Setup</span>
120 <br><br>
121 <span class="text">
123 <?php
124 if (strtolower(ini_get('register_globals')) != 'off' && (bool) ini_get('register_globals')) {
125 echo "It appears that you have register_globals enabled in your php.ini\n" .
126 "configuration file. This causes unacceptable security risks. You must\n" .
127 "turn it off before continuing with installation.\n";
128 exit();
132 <?php
133 if ($state == 7) {
136 <p>Congratulations! OpenEMR is now installed.</p>
138 <ul>
139 <li>Access controls (php-GACL) are installed for fine-grained security, and can be administered in
140 OpenEMR's admin->acl menu.</li>
141 <li>Reviewing <?php echo $OE_SITE_DIR; ?>/config.php is a good idea. This file
142 contains some settings that you may want to change.</li>
143 <li>There's much information and many extra tools bundled within the OpenEMR installation directory.
144 Please refer to openemr/Documentation. Many forms and other useful scripts can be found at openemr/contrib.</li>
145 <li>To ensure a consistent look and feel through out the application using
146 <a href='http://www.mozilla.org/products/firefox/'>Firefox</a> is recommended.</li>
147 <li>The OpenEMR project home page, documentation, and forums can be found at <a href = "http://www.open-emr.org" target="_blank">http://www.open-emr.org</a></li>
148 <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:drbowen@oemr.org">drbowen@oemr.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>
149 </ul>
151 We recommend you print these instructions for future reference.
152 </p>
153 <?php if (empty($installer->clone_database)) {
154 echo "<p><b>The initial OpenEMR user is '".$installer->iuser."' and the password is '".$installer->iuserpass."'</b></p>";
155 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>";
156 } ?>
158 <a href='./?site=<?php echo $site_id; ?>'>Click here to start using OpenEMR. </a>
159 </p>
161 <?php
162 exit();
166 <?php
168 $inst = $_POST["inst"];
170 if (($config == 1) && ($state < 4)) {
171 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";
173 else {
174 switch ($state) {
176 case 1:
177 echo "<b>Step $state</b><br><br>\n";
178 echo "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.\n
179 <span class='title'> <br />NOTE: clicking on \"Continue\" may delete or cause damage to data on your system. Before you continue please backup your data.</span>
180 <br><br>\n
181 <FORM METHOD='POST'>\n
182 <INPUT TYPE='HIDDEN' NAME='state' VALUE='2'>\n
183 <INPUT TYPE='HIDDEN' NAME='site' VALUE='$site_id'>\n
184 <LABEL FOR='inst1'><INPUT TYPE='RADIO' ID='inst1' NAME='inst' VALUE='1' checked>Have setup create the database</label><br>\n
185 <LABEL FOR='inst2'><INPUT TYPE='RADIO' ID='inst2' NAME='inst' VALUE='2'>I have already created the database</label><br>\n
186 <br>\n
187 <INPUT TYPE='SUBMIT' VALUE='Continue'><br></FORM><br>\n";
188 break;
190 case 2:
191 echo "<b>Step $state</b><br><br>\n";
192 echo "Now you need to supply the MySQL server information and path information. Detailed instructions on each item can be found in the <a href='INSTALL' target='_blank'><span STYLE='text-decoration: underline;'>'INSTALL'</span></a> manual file.
193 <br><br>\n
194 <FORM METHOD='POST'>
195 <INPUT TYPE='HIDDEN' NAME='state' VALUE='3'>
196 <INPUT TYPE='HIDDEN' NAME='site' VALUE='$site_id'>\n
197 <INPUT TYPE='HIDDEN' NAME='inst' VALUE='$inst'>
198 <TABLE>\n
199 <TR VALIGN='TOP'><TD COLSPAN=2><font color='red'>MYSQL SERVER:</font></TD></TR>
200 <TR VALIGN='TOP'><TD><span class='text'>Server Host: </span></TD><TD><INPUT TYPE='TEXT' VALUE='localhost' NAME='server' SIZE='30'></TD><TD><span class='text'>(If you run MySQL and Apache/PHP on the same computer, then leave this as 'localhost'. If they are on separate computers, then enter the IP address of the computer running MySQL.)</span><br></TD></TR>
201 <TR VALIGN='TOP'><TD><span class='text'>Server Port: </span></TD><TD><INPUT TYPE='TEXT' VALUE='3306' NAME='port' SIZE='30'></TD><TD><span class='text'>(This is the MySQL port. The default port for MySQL is 3306.)</span><br></TD></TR>
202 <TR VALIGN='TOP'><TD><span class='text'>Database Name: </span></TD><TD><INPUT TYPE='TEXT' VALUE='openemr' NAME='dbname' SIZE='30'></TD><TD><span class='text'>(This is the name of the OpenEMR database in MySQL - 'openemr' is the recommended)</span><br></TD></TR>
203 <TR VALIGN='TOP'><TD><span class='text'>Login Name: </span></TD><TD><INPUT TYPE='TEXT' VALUE='openemr' NAME='login' SIZE='30'></TD><TD><span class='text'>(This is the name of the OpenEMR login name in MySQL - 'openemr' is the recommended)</span><br></TD></TR>
204 <TR VALIGN='TOP'><TD><span class='text'>Password: </span></TD><TD><INPUT TYPE='PASSWORD' VALUE='' NAME='pass' SIZE='30'></TD><TD><span class='text'>(This is the Login Password for when PHP accesses MySQL - it should be at least 8 characters long and composed of both numbers and letters)</span><br></TD></TR>\n";
205 if ($inst != 2) {
206 echo "<TR VALIGN='TOP'><TD><span class='text'>Name for Root Account: </span></TD><TD><INPUT TYPE='TEXT' VALUE='root' NAME='root' SIZE='30'></TD><TD><span class='text'>(This is name for MySQL root account. For localhost, it is usually ok to leave it 'root'.)</span><br></TD></TR>
207 <TR VALIGN='TOP'><TD><span class='text'>Root Pass: </span></TD><TD><INPUT TYPE='PASSWORD' VALUE='' NAME='rootpass' SIZE='30'></TD><TD><span class='text'>(This is your MySQL root password. For localhost, it is usually ok to leave it blank.)</span><br></TD></TR>\n";
208 echo "<TR VALIGN='TOP'><TD><span class='text'>User Hostname: </span></TD><TD><INPUT TYPE='TEXT' VALUE='localhost' NAME='loginhost' SIZE='30'></TD><TD><span class='text'>(If you run Apache/PHP and MySQL on the same computer, then leave this as 'localhost'. If they are on separate computers, then enter the IP address of the computer running Apache/PHP.)</span><br></TD></TR>";
209 echo "<TR VALIGN='TOP'><TD><span class='text'>UTF-8 Collation: </span></TD><TD colspan='2'>" .
210 "<select name='collate'>" .
211 "<option value='utf8_bin' >Bin</option>" .
212 "<option value='utf8_czech_ci' >Czech</option>" .
213 "<option value='utf8_danish_ci' >Danish</option>" .
214 "<option value='utf8_esperanto_ci' >Esperanto</option>" .
215 "<option value='utf8_estonian_ci' >Estonian</option>" .
216 "<option value='utf8_general_ci' selected>General</option>" .
217 "<option value='utf8_hungarian_ci' >Hungarian</option>" .
218 "<option value='utf8_icelandic_ci' >Icelandic</option>" .
219 "<option value='utf8_latvian_ci' >Latvian</option>" .
220 "<option value='utf8_lithuanian_ci'>Lithuanian</option>" .
221 "<option value='utf8_persian_ci' >Persian</option>" .
222 "<option value='utf8_polish_ci' >Polish</option>" .
223 "<option value='utf8_roman_ci' >Roman</option>" .
224 "<option value='utf8_romanian_ci' >Romanian</option>" .
225 "<option value='utf8_slovak_ci' >Slovak</option>" .
226 "<option value='utf8_slovenian_ci' >Slovenian</option>" .
227 "<option value='utf8_spanish2_ci' >Spanish2 (Traditional)</option>" .
228 "<option value='utf8_spanish_ci' >Spanish (Modern)</option>" .
229 "<option value='utf8_swedish_ci' >Swedish</option>" .
230 "<option value='utf8_turkish_ci' >Turkish</option>" .
231 "<option value='utf8_unicode_ci' >Unicode (German, French, Russian, Armenian, Greek)</option>" .
232 "<option value='' >None (Do not force UTF-8)</option>" .
233 "</select>" .
234 "</TD></TR><TR VALIGN='TOP'><TD>&nbsp;</TD><TD colspan='2'><span class='text'>(This is the collation setting for mysql. Leave as 'General' if you are not sure. If the language you are planning to use in OpenEMR is in the menu, then you can select it. Otherwise, just select 'General'.)</span><br></TD></TR>";
236 echo "<TR VALIGN='TOP'><TD>&nbsp;</TD></TR>";
238 // Include a "source" site ID drop-list and a checkbox to indicate
239 // if cloning its database. When checked, do not display initial user
240 // and group stuff below.
241 $dh = opendir($OE_SITES_BASE);
242 if (!$dh) die("Cannot read directory '$OE_SITES_BASE'.");
243 $siteslist = array();
244 while (false !== ($sfname = readdir($dh))) {
245 if (substr($sfname, 0, 1) == '.') continue;
246 if ($sfname == 'CVS' ) continue;
247 if ($sfname == $site_id ) continue;
248 $sitedir = "$OE_SITES_BASE/$sfname";
249 if (!is_dir($sitedir) ) continue;
250 if (!is_file("$sitedir/sqlconf.php")) continue;
251 $siteslist[$sfname] = $sfname;
253 closedir($dh);
254 // If this is not the first site...
255 if (!empty($siteslist)) {
256 ksort($siteslist);
257 echo "<tr valign='top'>\n";
258 echo " <td class='text'>Source Site: </td>\n";
259 echo " <td class='text'><select name='source_site_id'>";
260 foreach ($siteslist as $sfname) {
261 echo "<option value='$sfname'";
262 if ($sfname == 'default') echo " selected";
263 echo ">$sfname</option>";
265 echo "</select></td>\n";
266 echo " <td class='text'>(The site directory that will be a model for the new site.)</td>\n";
267 echo "</tr>\n";
268 echo "<tr valign='top'>\n";
269 echo " <td class='text'>Clone Source Database: </td>\n";
270 echo " <td class='text'><input type='checkbox' name='clone_database' onclick='cloneClicked()' /></td>\n";
271 echo " <td class='text'>(Clone the source site's database instead of creating a fresh one.)</td>\n";
272 echo "</tr>\n";
275 echo "<TR VALIGN='TOP' class='noclone'><TD COLSPAN=2><font color='red'>OPENEMR USER:</font></TD></TR>";
276 echo "<TR VALIGN='TOP' class='noclone'><TD><span class='text'>Initial User:</span></TD><TD><INPUT SIZE='30' TYPE='TEXT' NAME='iuser' VALUE='admin'></TD><TD><span class='text'>(This is the login name of user that will be created for you. Limit this to one word.)</span></TD></TR>
277 <TR VALIGN='TOP' class='noclone'><TD><span class='text'>Initial User Password:</span></TD><TD><INPUT SIZE='30' TYPE='PASSWORD' NAME='iuserpass' VALUE=''></TD><TD><span class='text'>(This is the password for the initial user account above.)</span></TD></TR>
278 <TR VALIGN='TOP' class='noclone'><TD><span class='text'>Initial User's Name:</span></TD><TD><INPUT SIZE='30' TYPE='TEXT' NAME='iuname' VALUE='Administrator'></TD><TD><span class='text'>(This is the real name of the 'initial user'.)</span></TD></TR>
279 <TR VALIGN='TOP' class='noclone'><TD><span class='text'>Initial Group:</span></TD><TD><INPUT SIZE='30' TYPE='TEXT' NAME='igroup' VALUE='Default'></TD><TD><span class='text'>(This is the group that will be created for your users. This should be the name of your practice.)</span></TD></TR>
281 echo "<TR VALIGN='TOP'><TD>&nbsp;</TD></TR>";
283 echo "</TABLE>
284 <br>
285 <INPUT TYPE='SUBMIT' VALUE='Continue'><br></FORM><br>";
286 break;
288 case 3:
290 // Form Validation
291 // (applicable if not cloning from another database)
292 if (empty($installer->clone_database)) {
293 if ( ! $installer->login_is_valid() ) {
294 echo "ERROR. Please pick a proper 'Login Name'.<br>\n";
295 echo "Click Back in browser to re-enter.<br>\n";
296 break;
298 if ( ! $installer->iuser_is_valid() ) {
299 echo "ERROR. The 'Initial User' field can only contain one word and no spaces.<br>\n";
300 echo "Click Back in browser to re-enter.<br>\n";
301 break;
303 if ( ! $installer->user_password_is_valid() ) {
304 echo "ERROR. Please pick a proper 'Initial User Password'.<br>\n";
305 echo "Click Back in browser to re-enter.<br>\n";
306 break;
309 if ( ! $installer->password_is_valid() ) {
310 echo "ERROR. Please pick a proper 'Password'.<br>\n";
311 echo "Click Back in browser to re-enter.<br>\n";
312 break;
315 echo "<b>Step $state</b><br><br>\n";
316 echo "Configuring OpenEMR...<br><br>\n";
318 // Skip below if database shell has already been created.
319 if ($inst != 2) {
321 echo "Connecting to MySQL Server...\n";
322 flush();
323 if ( ! $installer->root_database_connection() ) {
324 echo "ERROR. Check your login credentials.\n";
325 echo $installer->error_message;
326 break;
328 else {
329 echo "OK.<br>\n";
330 flush();
334 // Only pertinent if cloning another installation database
335 if ( ! empty($installer->clone_database)) {
337 echo "Dumping source database...";
338 flush();
339 if ( ! $installer->create_dumpfiles() ) {
340 echo $installer->error_message;
341 break;
343 else {
344 echo " OK.<br>\n";
345 flush();
349 // Only pertinent if mirroring another installation directory
350 if ( ! empty($installer->source_site_id)) {
352 echo "Creating site directory...";
353 if ( ! $installer->create_site_directory() ) {
354 echo $installer->error_message;
355 break;
357 else {
358 echo "OK.<BR>";
359 flush();
363 // Skip below if database shell has already been created.
364 if ($inst != 2) {
365 echo "Creating database...\n";
366 flush();
367 if ( ! $installer->create_database() ) {
368 echo "ERROR. Check your login credentials.\n";
369 echo $installer->error_message;
370 break;
371 } else {
372 echo "OK.<br>\n";
373 flush();
376 echo "Creating user with permissions for database...\n";
377 flush();
378 if ( ! $installer->grant_privileges() ) {
379 echo "ERROR when granting privileges to the specified user.\n";
380 echo $installer->error_message;
381 break;
382 } else {
383 echo "OK.<br>\n";
384 flush();
387 echo "Reconnecting as new user...\n";
388 flush();
389 $installer->disconnect();
390 } else {
392 echo "Connecting to MySQL Server...\n";
394 if ( ! $installer->user_database_connection() ) {
395 echo "ERROR. Check your login credentials.\n";
396 echo $installer->error_message;
397 break;
399 else {
400 echo "OK.<br>\n";
401 flush();
404 // Load the database files
405 $dump_results = $installer->load_dumpfiles();
406 if ( ! $dump_results ) {
407 echo $installer->error_message;
408 break;
409 } else {
410 echo $dump_results;
411 flush();
414 echo "Writing SQL configuration...\n";
415 flush();
416 if ( ! $installer->write_configuration_file() ) {
417 echo $installer->error_message;
418 break;
420 else {
421 echo "OK.<br>\n";
422 flush();
425 // Only pertinent if not cloning another installation database
426 if (empty($installer->clone_database)) {
428 echo "Setting version indicators...\n";
429 flush();
430 if ( ! $installer->add_version_info() ) {
431 echo "ERROR.\n";
432 echo $installer->error_message;;
433 break;
435 else {
436 echo "OK<br>\n";
437 flush();
440 echo "Writing global configuration defaults...\n";
441 flush();
442 if ( ! $installer->insert_globals() ) {
443 echo "ERROR.\n";
444 echo $installer->error_message;;
445 break;
447 else {
448 echo "OK<br>\n";
449 flush();
452 echo "Adding Initial User...\n";
453 flush();
454 if ( ! $installer->add_initial_user() ) {
455 echo $installer->error_message;
456 break;
458 echo "OK<br>\n";
459 flush();
462 if ( ! empty($installer->clone_database) ) {
463 // Database was cloned, skip ACL setup.
464 echo "Click 'continue' for further instructions.";
465 $next_state = 7;
467 else {
468 echo "\n<br>Next step will install and configure access controls (php-GACL).<br>\n";
469 $next_state = 4;
472 echo "
473 <FORM METHOD='POST'>\n
474 <INPUT TYPE='HIDDEN' NAME='state' VALUE='$next_state'>
475 <INPUT TYPE='HIDDEN' NAME='site' VALUE='$site_id'>\n
476 <INPUT TYPE='HIDDEN' NAME='iuser' VALUE='$installer->iuser'>
477 <INPUT TYPE='HIDDEN' NAME='iuserpass' VALUE='$installer->iuserpass'>
478 <INPUT TYPE='HIDDEN' NAME='iuname' VALUE='$installer->iuname'>
479 <INPUT TYPE='HIDDEN' NAME='clone_database' VALUE='$installer->clone_database'>
480 <br>\n
481 <INPUT TYPE='SUBMIT' VALUE='Continue'><br></FORM><br>\n";
483 break;
484 case 4:
485 echo "<b>Step $state</b><br><br>\n";
486 echo "Installing and Configuring Access Controls (php-GACL)...<br><br>";
488 if ( ! $installer->install_gacl() ) {
489 echo $installer->error_message;
490 break;
492 else {
493 // display the status information for gacl setup
494 echo $installer->debug_message;
497 echo "Gave the '$installer->iuser' user (password is '$installer->iuserpass') administrator access.<br><br>";
499 echo "Done installing and configuring access controls (php-GACL).<br>";
500 echo "Next step will configure PHP.";
502 echo "<br><FORM METHOD='POST'>\n
503 <INPUT TYPE='HIDDEN' NAME='state' VALUE='5'>\n
504 <INPUT TYPE='HIDDEN' NAME='site' VALUE='$site_id'>\n
505 <INPUT TYPE='HIDDEN' NAME='iuser' VALUE='$installer->iuser'>\n
506 <INPUT TYPE='HIDDEN' NAME='iuserpass' VALUE='$installer->iuserpass'>\n
507 <br>\n
508 <INPUT TYPE='SUBMIT' VALUE='Continue'><br></FORM><br>\n";
510 break;
512 case 5:
513 echo "<b>Step $state</b><br><br>\n";
514 echo "Configuration of PHP...<br><br>\n";
515 echo "We recommend making the following changes to your PHP installation, which can normally be done by editing the php.ini configuration file:\n";
516 echo "<ul>";
517 $gotFileFlag = 0;
518 if (version_compare(PHP_VERSION, '5.2.4', '>=')) {
519 $phpINIfile = php_ini_loaded_file();
520 if ($phpINIfile) {
521 echo "<li><font color='green'>Your php.ini file can be found at ".$phpINIfile."</font></li>\n";
522 $gotFileFlag = 1;
525 echo "<li>To ensure proper functioning of OpenEMR you must make sure that settings in php.ini file include \"short_open_tag = On\", \"display_errors = Off\", \"register_globals = Off\", \"max_execution_time\" set to at least 60, \"max_input_time\" set to at least 90, \"post_max_size\" set to at least 30M, and \"memory_limit\" set to at least \"128M\".</li>\n";
526 echo "<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.</li>\n";
527 if (!$gotFileFlag) {
528 echo "<li>If you are having difficulty finding your php.ini file, then refer to the <a href='INSTALL' target='_blank'><span STYLE='text-decoration: underline;'>'INSTALL'</span></a> manual for suggestions.</li>\n";
530 echo "</ul>";
532 echo "<br>We recommend you print these instructions for future reference.<br><br>";
533 echo "Next step will configure Apache web server.";
535 echo "<br><FORM METHOD='POST'>\n
536 <INPUT TYPE='HIDDEN' NAME='state' VALUE='6'>\n
537 <INPUT TYPE='HIDDEN' NAME='site' VALUE='$site_id'>\n
538 <INPUT TYPE='HIDDEN' NAME='iuser' VALUE='$installer->iuser'>\n
539 <INPUT TYPE='HIDDEN' NAME='iuserpass' VALUE='$installer->iuserpass'>\n
540 <br>\n
541 <INPUT TYPE='SUBMIT' VALUE='Continue'><br></FORM><br>\n";
543 break;
545 case 6:
546 echo "<b>Step $state</b><br><br>\n";
547 echo "Configuration of Apache web server...<br><br>\n";
548 echo "The \"".preg_replace("/${site_id}/","*",realpath($docsDirectory))."\", \"".preg_replace("/${site_id}/","*",realpath($billingDirectory))."\" and \"".preg_replace("/${site_id}/","*",realpath($billingDirectory2))."\" directories contain patient information, and
549 it is important to secure these directories. This can be done by placing pertinent .htaccess
550 files in these directories or by pasting the below to end of your apache configuration file:<br>
551 &nbsp;&nbsp;&lt;Directory ".preg_replace("/${site_id}/","*",realpath($docsDirectory))."&gt;<br>
552 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;order deny,allow<br>
553 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Deny from all<br>
554 &nbsp;&nbsp;&lt;/Directory&gt;<br>
555 &nbsp;&nbsp;&lt;Directory ".preg_replace("/${site_id}/","*",realpath($billingDirectory))."&gt;<br>
556 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;order deny,allow<br>
557 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Deny from all<br>
558 &nbsp;&nbsp;&lt;/Directory&gt;<br>
559 &nbsp;&nbsp;&lt;Directory ".preg_replace("/${site_id}/","*",realpath($billingDirectory2))."&gt;<br>
560 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;order deny,allow<br>
561 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Deny from all<br>
562 &nbsp;&nbsp;&lt;/Directory&gt;<br><br>";
564 echo "If you are having difficulty finding your apache configuration file, then refer to the <a href='INSTALL' target='_blank'><span STYLE='text-decoration: underline;'>'INSTALL'</span></a> manual for suggestions.<br><br>\n";
565 echo "<br>We recommend you print these instructions for future reference.<br><br>";
566 echo "Click 'continue' for further instructions.";
568 echo "<br><FORM METHOD='POST'>\n
569 <INPUT TYPE='HIDDEN' NAME='state' VALUE='7'>\n
570 <INPUT TYPE='HIDDEN' NAME='site' VALUE='$site_id'>\n
571 <INPUT TYPE='HIDDEN' NAME='iuser' VALUE='$installer->iuser'>\n
572 <INPUT TYPE='HIDDEN' NAME='iuserpass' VALUE='$installer->iuserpass'>\n
573 <br>\n
574 <INPUT TYPE='SUBMIT' VALUE='Continue'><br></FORM><br>\n";
576 break;
578 case 0:
579 default:
580 echo "<p>Welcome to OpenEMR. This utility will step you through the installation and configuration of OpenEMR for your practice.</p>\n";
581 echo "<ul><li>Before proceeding, be sure that you have a properly installed and configured MySQL server available, and a PHP configured webserver.</li>\n";
583 echo "<li>Detailed installation instructions can be found in the <a href='INSTALL' target='_blank'><span STYLE='text-decoration: underline;'>'INSTALL'</span></a> manual file.</li>\n";
585 Echo "<li>If you are upgrading from a previous version, do NOT use this script. Please read the 'Upgrading' section found in the <a href='INSTALL' target='_blank'><span STYLE='text-decoration: underline;'>'INSTALL'</span></a> manual file.</li></ul>";
587 if ($checkPermissions) {
588 echo "<p>We will now ensure correct file and directory permissions before starting installation:</p>\n";
589 echo "<FONT COLOR='green'>Ensuring following files are world-writable...</FONT><br>\n";
590 $errorWritable = 0;
591 foreach ($writableFileList as $tempFile) {
592 if (is_writable($tempFile)) {
593 echo "'".realpath($tempFile)."' file is <FONT COLOR='green'><b>ready</b></FONT>.<br>\n";
595 else {
596 echo "<p><FONT COLOR='red'>UNABLE</FONT> to open file '".realpath($tempFile)."' for writing.<br>\n";
597 echo "(configure file permissions; see below for further instructions)</p>\n";
598 $errorWritable = 1;
601 if ($errorWritable) {
602 echo "<p><FONT COLOR='red'>You can't proceed until all above files are ready (world-writable).</FONT><br>\n";
603 echo "In linux, recommend changing file permissions with the 'chmod 666 filename' command.<br>\n";
604 echo "Fix above file permissions and then click the 'Check Again' button to re-check files.<br>\n";
605 echo "<FORM METHOD='POST'><INPUT TYPE='SUBMIT' VALUE='Check Again'></p>" .
606 "<INPUT TYPE='HIDDEN' NAME='site' VALUE='$site_id'></FORM><br>\n";
607 break;
610 echo "<br><FONT COLOR='green'>Ensuring following directories have proper permissions...</FONT><br>\n";
611 $errorWritable = 0;
612 foreach ($writableDirList as $tempDir) {
613 if (is_writable($tempDir)) {
614 echo "'".realpath($tempDir)."' directory is <FONT COLOR='green'><b>ready</b></FONT>.<br>\n";
616 else {
617 echo "<p><FONT COLOR='red'>UNABLE</FONT> to open directory '".realpath($tempDir)."' for writing by web server.<br>\n";
618 echo "(configure directory permissions; see below for further instructions)</p>\n";
619 $errorWritable = 1;
622 if ($errorWritable) {
623 echo "<p><FONT COLOR='red'>You can't proceed until all directories are ready.</FONT><br>\n";
624 echo "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 'chown -R apache:apache directory_name' command.<br>\n";
625 echo "Fix above directory permissions and then click the 'Check Again' button to re-check directories.<br>\n";
626 echo "<FORM METHOD='POST'><INPUT TYPE='SUBMIT' VALUE='Check Again'></p>" .
627 "<INPUT TYPE='HIDDEN' NAME='site' VALUE='$site_id'></FORM><br>\n";
628 break;
631 echo "<br>All required files and directories have been verified. Click to continue installation.<br>\n";
633 else {
634 echo "<br>Click to continue installation.<br>\n";
637 echo "<FORM METHOD='POST'><INPUT TYPE='HIDDEN' NAME='state' VALUE='1'>" .
638 "<INPUT TYPE='HIDDEN' NAME='site' VALUE='$site_id'>" .
639 "<INPUT TYPE='SUBMIT' VALUE='Continue'><br></FORM><br>";
645 </span>
647 </BODY>
648 </HTML>