For anyone with this issue search the for the php.ini file and open it will an application called notepad ++
Change the following to a larger file size:
; Maximum allowed size for uploaded files.
;
php.net/upload-max-filesize
upload_max_filesize=200M
; Maximum size of POST data that PHP will accept.
; Its value may be 0 to disable the limit. It is ignored if POST data reading
; is disabled through enable_post_data_reading.
;
php.net/post-max-size
post_max_size=200M
; Maximum amount of memory a script may consume (128MB)
;
php.net/memory-limit
memory_limit=200M
Then start and stop the Apache via the xampp control panel.
You will not receive this error anymore after changing these settings.
Thanks,
Liam