File tree Expand file tree Collapse file tree 5 files changed +59
-1
lines changed
app/code/Magento/Sales/view/adminhtml/layout Expand file tree Collapse file tree 5 files changed +59
-1
lines changed Original file line number Diff line number Diff line change 32
32
33
33
DirectoryIndex index.php
34
34
35
+ <IfModule mod_php5.c >
35
36
############################################
36
37
## adjust memory limit
37
38
53
54
## disable user agent verification to not break multiple image upload
54
55
55
56
php_flag suhosin.session.cryptua off
57
+ </IfModule >
58
+ <IfModule mod_php7.c >
59
+ ############################################
60
+ ## adjust memory limit
61
+
62
+ php_value memory_limit 768M
63
+ php_value max_execution_time 18000
64
+
65
+ ############################################
66
+ ## disable automatic session start
67
+ ## before autoload was initialized
68
+
69
+ php_flag session.auto_start off
70
+
71
+ ############################################
72
+ ## enable resulting html compression
73
+
74
+ #php_flag zlib.output_compression on
56
75
76
+ ###########################################
77
+ ## disable user agent verification to not break multiple image upload
78
+
79
+ php_flag suhosin.session.cryptua off
80
+ </IfModule >
57
81
<IfModule mod_security.c >
58
82
###########################################
59
83
## disable POST processing to not break multiple image upload
Original file line number Diff line number Diff line change
1
+ memory_limit = 768M
2
+ max_execution_time = 18000
3
+ session.auto_start = off
4
+ suhosin.session.cryptua = off
Original file line number Diff line number Diff line change 15
15
<argument name =" dataSource" xsi : type =" object" >Magento\Sales\Model\ResourceModel\Status\Collection</argument >
16
16
<argument name =" default_sort" xsi : type =" string" >state</argument >
17
17
<argument name =" default_dir" xsi : type =" string" >desc</argument >
18
- <argument name =" pager_visibility" xsi : type =" string" >0 </argument >
18
+ <argument name =" pager_visibility" xsi : type =" string" >1 </argument >
19
19
</arguments >
20
20
<block class =" Magento\Backend\Block\Widget\Grid\ColumnSet" as =" grid.columnSet" name =" sales_order_status.grid.columnSet" >
21
21
<arguments >
Original file line number Diff line number Diff line change 32
32
33
33
DirectoryIndex index.php
34
34
35
+ <IfModule mod_php5.c >
35
36
############################################
36
37
## Adjust memory limit
37
38
53
54
# Disable user agent verification to not break multiple image upload
54
55
55
56
php_flag suhosin.session.cryptua off
57
+ </IfModule >
58
+ <IfModule mod_php7.c >
59
+ ############################################
60
+ ## Adjust memory limit
61
+
62
+ php_value memory_limit 768M
63
+ php_value max_execution_time 18000
64
+
65
+ ############################################
66
+ ## Disable automatic session start
67
+ ## before autoload was initialized
68
+
69
+ php_flag session.auto_start off
70
+
71
+ ############################################
72
+ ## Enable resulting html compression
73
+
74
+ #php_flag zlib.output_compression on
75
+
76
+ ###########################################
77
+ # Disable user agent verification to not break multiple image upload
78
+
79
+ php_flag suhosin.session.cryptua off
80
+ </IfModule >
81
+
56
82
57
83
<IfModule mod_security.c >
58
84
###########################################
Original file line number Diff line number Diff line change
1
+ memory_limit = 768M
2
+ max_execution_time = 18000
3
+ session.auto_start = off
4
+ suhosin.session.cryptua = off
You can’t perform that action at this time.
0 commit comments