File tree Expand file tree Collapse file tree 6 files changed +10
-10
lines changed
app/code/Magento/SampleData/Console/Command Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
# All explanations you could find in .htaccess.sample file
2
2
DirectoryIndex index.php
3
3
<IfModule mod_php5.c >
4
- php_value memory_limit 768M
4
+ php_value memory_limit 756M
5
5
php_value max_execution_time 18000
6
6
php_flag session.auto_start off
7
7
php_flag suhosin.session.cryptua off
8
8
</IfModule >
9
9
<IfModule mod_php7.c >
10
- php_value memory_limit 768M
10
+ php_value memory_limit 756M
11
11
php_value max_execution_time 18000
12
12
php_flag session.auto_start off
13
13
php_flag suhosin.session.cryptua off
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ DirectoryIndex index.php
36
36
############################################
37
37
## adjust memory limit
38
38
39
- php_value memory_limit 768M
39
+ php_value memory_limit 756M
40
40
php_value max_execution_time 18000
41
41
42
42
############################################
@@ -59,7 +59,7 @@ DirectoryIndex index.php
59
59
############################################
60
60
## adjust memory limit
61
61
62
- php_value memory_limit 768M
62
+ php_value memory_limit 756M
63
63
php_value max_execution_time 18000
64
64
65
65
############################################
Original file line number Diff line number Diff line change 1
- memory_limit = 768M
1
+ memory_limit = 756M
2
2
max_execution_time = 18000
3
3
session.auto_start = off
4
4
suhosin.session.cryptua = off
Original file line number Diff line number Diff line change @@ -137,8 +137,8 @@ private function updateMemoryLimit()
137
137
if (function_exists ('ini_set ' )) {
138
138
@ini_set ('display_errors ' , 1 );
139
139
$ memoryLimit = trim (ini_get ('memory_limit ' ));
140
- if ($ memoryLimit != -1 && $ this ->getMemoryInBytes ($ memoryLimit ) < 768 * 1024 * 1024 ) {
141
- @ini_set ('memory_limit ' , '768M ' );
140
+ if ($ memoryLimit != -1 && $ this ->getMemoryInBytes ($ memoryLimit ) < 756 * 1024 * 1024 ) {
141
+ @ini_set ('memory_limit ' , '756M ' );
142
142
}
143
143
}
144
144
}
Original file line number Diff line number Diff line change 36
36
############################################
37
37
## Adjust memory limit
38
38
39
- php_value memory_limit 768M
39
+ php_value memory_limit 756M
40
40
php_value max_execution_time 18000
41
41
42
42
############################################
59
59
############################################
60
60
## Adjust memory limit
61
61
62
- php_value memory_limit 768M
62
+ php_value memory_limit 756M
63
63
php_value max_execution_time 18000
64
64
65
65
############################################
Original file line number Diff line number Diff line change 1
- memory_limit = 768M
1
+ memory_limit = 756M
2
2
max_execution_time = 18000
3
3
session.auto_start = off
4
4
suhosin.session.cryptua = off
You can’t perform that action at this time.
0 commit comments