Hi. For the "a semi colon character was expected" warning, it looks like the style.css file and the declarations between the style tags in the templates need a bit of editing. Try the following.
Notice how the semicolons appear in the below example:
Code:
name { name: name; }
name { name: name; name: name; }
name { name: name; name: name; name: name; }
Now go through the style.css file and the style section of the templates and add in the semicolons where they are missing.
For the "cannot set time limit in safe mode" warning, your PHP is set with safe_mode enabled. You can read more about set_time_limit and safe_mode
here.