1. These are not errors but notices. Everything works just fine. You must turn of the notices. For example by creating a php.ini file in your website root. (Or opening up the existing one)
you must have this code in your php.ini:
| Code: |
error_reporting = E_ALL & ~E_NOTICE
|