The reason you cannot upload more than 8MB of space is because your PHP settings limit the post_max_size to 8MB. You need to change your php.ini so that instead of:

post_max_size = 8M

It says:

post_max_size = 200M

Without changing that, the largest file that you can upload is 8MB.