You are on page 1of 1

untuk ubah ukuran upload dari database php :

C:\xampp\php\php.ini

terus edit dibagian :


; Maximum allowed size for uploaded files.
upload_max_filesize = 40M

; Must be greater than or equal to upload_max_filesize


post_max_size = 40M

ubah menjadi :
; Maximum allowed size for uploaded files.
upload_max_filesize = 700M

; Must be greater than or equal to upload_max_filesize


post_max_size = 700M

untuk menghilangkan tulisan error, ketikkan :


<?php
error_reporting(E_ALL ^ (E_NOTICE | E_WARNING));
?>

You might also like