Hi tcp01315,
You will need to configure your php.ini file. For the first error I think you need to un-comment(meaning remove the “;” from the start of the line) the line:
;php_fileinfo.dll
You also need to adjust these lines to something like 256M:
;upload_max_filesize = 256M
;post_max_size = 257M
And since you are in there you will want to increase your max execution time to something like 300:
max_execution_time = 300
Ok last thing, I strongly recommend installing internationalization support and enabling it once you have the CMS installed.
To enable it in the php.ini file un-comment:
;extension=php_intl.dll
Under:
[intl]
Un-comment:
;intl.default_locale = en_utf8
;intl.error_level = E_WARNING
Also Found Here