Add_meta_box not appearing, but does appear in screen options

You missed one argument in the $args for add_meta_box.

The correct use would be (Codex):

add_meta_box( $id, $title, $callback, $post_type, $context, $priority, $callback_args );

You forgot to set the context, add it and you should be fine.

add_meta_box(
    'content-on-page',
    'Content On Page',
    'ila_render_meta_box',
    'page',
    'normal', // add this line
    'high'
);

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)