Skip to main content

Posts

Showing posts from October, 2014

Maximum Upload File Size

Maximum Upload File Size   Is there an easy way to increase the maximum file upload size (currently 2 megabytes)?  The file upload size is set in your PHP configuration,  php.ini , with the parameter  upload_max_filesize . The setting can be changed in a number of different places depending on your webserver and the method it uses to run PHP. If your Webserver allows the modification of PHP settings through a  .htaccess  file (Apache + mod_php) add the following two lines to a  .htaccess  in the installed directory: php_value upload_max_filesize 15M php_value post_max_size 15M Otherwise you need to modify your  php.ini  (usually located in  /etc/php5/php.ini , but refer to your administrator or distribution manual for the correct location): upload_max_filesize = 15M post_max_size = 15M After modifying the global  php.ini  you will need to restart the webserver to have changes take effect. Apache Users Set the following parameter to a reasonable value in you

Shell In A Box SSH Via Web Browser

This is tutorial that i read today. It's about how to remote your computer via web. It use web based emulator named shellinabox  created by Markus Gutschke .  It has built-in web server that runs as a web-based  SSH client  on a specified  port  and prompt you a web terminal emulator to access and control your  Linux Server SSH Shell  remotely using any  AJAX / JavaScript  and  CSS   enabled browsers This tutorial  describe how to install  Shellinabox  and access remote  SSH terminal  using a modern web browser on any machine.