Posts

Showing posts from October, 2016

Bootstrap browse button

  a) For Multiple file upload..........     <label class="btn btn-primary btn-file">         <i class="fa fa-picture-o"></i> Browse         <input type="file" name="file[]" style="display:none;" multiple>     </label>   b) For Single file upload........     <label class="btn btn-primary btn-file">         <i class="fa fa-picture-o"></i> Browse         <input type="file" name="file" style="display:none;">     </label>

INCREASING SQL UPLOADING FILE SIZE

1> Go to php.ini file 2> Find : post_max_size = 8M upload_max_filesize = 2M max_execution_time = 30 max_input_time = 60 memory_limit = 8M 3> Replace : post_max_size = 35M upload_max_filesize = 35M max_execution_time = 5000 max_input_time = 5000 memory_limit = 1000M