Commit 05d25ed5 authored by José Luis  Gutiérrez's avatar José Luis Gutiérrez Committed by Alessandro Rubini

www: firmware update fix

Updating the firmware from the web interface was not working because
php.ini file did not allow users to upload files bigger than 8MB.
The interface now updates this values (POST_MAX and PHP_MAX) to 30MB to
make uploading the new firmware to the WRS.
parent 399ddcca
......@@ -18,7 +18,10 @@
<div class="rightbody">
<h1 class="title">Firmware Management <a href='help.php?help_id=firmware' onClick='showPopup(this.href);return(false);'><img align=right src="./img/question.png"></a></h1>
<?php session_is_started() ?>
<?php
session_is_started();
if(wrs_php_filesize()<30) php_file_transfer_size(30);
?>
<table border="0" align="center">
<tr>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment