Difference between revisions of "EXtplorer"

From Amahi Wiki
Jump to: navigation, search
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
 
To change the size of files you can upload to your HDA, do the following:
 
To change the size of files you can upload to your HDA, do the following:
 
* [[Open_Terminal_as_root|Open terminal as root user]] (for Ubuntu, precede commands with <code>sudo</code>)
 
* [[Open_Terminal_as_root|Open terminal as root user]] (for Ubuntu, precede commands with <code>sudo</code>)
{{Code|cd /etc/httpd/conf.d}}
+
cd /etc/httpd/conf.d
 
* Edit the '''####-extplorer.conf''' file and change the <code>32M</code> in both lines to desired value:
 
* Edit the '''####-extplorer.conf''' file and change the <code>32M</code> in both lines to desired value:
<blockquote>{{Text|php_value upload_max_filesize 32M
+
php_value upload_max_filesize 32M
php_value post_max_size 32M}}</blockquote>
+
php_value post_max_size 32M
 
* Save and restart the web server:
 
* Save and restart the web server:
<blockquote>Fedora</blockquote>
+
Fedora
{{Code|service httpd restart}}
+
service httpd restart
<blockquote>Ubuntu</blockquote>
+
Ubuntu
{{Code|service apache2 restart}}
+
service apache2 restart
* Close the terminal and the file size limit should be changed to reflect your change.
+
* Close the terminal and the file size limit should reflect your change.
  
  
 
[[Category:Apps]]
 
[[Category:Apps]]

Latest revision as of 15:32, 9 January 2021

eXtplorer is an Amahi application that provides browser-based file management of your HDA.

Change File Upload Size

To change the size of files you can upload to your HDA, do the following:

cd /etc/httpd/conf.d
  • Edit the ####-extplorer.conf file and change the 32M in both lines to desired value:
php_value upload_max_filesize 32M
php_value post_max_size 32M
  • Save and restart the web server:

Fedora

service httpd restart

Ubuntu

service apache2 restart
  • Close the terminal and the file size limit should reflect your change.