Skip to content

Commit

Permalink
Merge pull request #57 from GoTeamEpsilon/feature-tz/jesdynf
Browse files Browse the repository at this point in the history
removes escaping in user TZ entry
  • Loading branch information
MatthewVita authored Jul 11, 2017
2 parents 6641581 + 7358ae0 commit 36fb1eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion v1-Beta-AWS-Guide/assets/eb/05-php-configuration.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ files:
sed -i 's/;\ max_input_vars\ =\ 1000/max_input_vars\ =\ 3000/' /etc/php.ini
sed -i 's/memory_limit\ =\ 128M/memory_limit\ =\ 512M/' /etc/php.ini
sed -i 's/post_max_size\ =\ 8M/post_max_size\ =\ 30M/' /etc/php.ini
sed -i 's/date.timezone\ =\ UTC/date.timezone\ =\ '$TIMEZONE'/' /etc/php.ini
sed -i 's^date.timezone\ =\ UTC^date.timezone\ =\ '$TIMEZONE'^' /etc/php.ini
sed -i 's/auto_globals_jit\ =\ On/auto_globals_jit\ =\ On\nregister_globals\ =\ On/' /etc/php.ini
sed -i 's/short_open_tag\ =\ 1/short_open_tag\ =\ 0/' /etc/php.ini
2 changes: 1 addition & 1 deletion v1-Beta-AWS-Guide/chapters/06-Application-Servers.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ _[< previous chapter](05-Session-Management.md) | [next chapter >](07-Secure-Dom

### Configure the servers to use your timezone

1. Open "**openemr/.ebextensions/00-options.config**" and replace "**&lt;&lt;enter timezone here&gt;&gt;**" with your timezone from the [following list](http://php.net/manual/en/timezones.php). Do not enter spaces (e.g.: "**America\\/New_York**" is valid while "**America\\/New York**" is not - note the "\\" is required for the sed command the bash script will run).
1. Open "**openemr/.ebextensions/00-options.config**" and replace "**&lt;&lt;enter timezone here&gt;&gt;**" with your timezone from the [following list](http://php.net/manual/en/timezones.php). Do not enter spaces (e.g.: "**America/New_York**" is valid while "**America/New York**" is not.

### Prepare your first deployment

Expand Down

0 comments on commit 36fb1eb

Please sign in to comment.