Child-theme breaks site

Your parent theme is probably broken. I guess it is using code like this:

require_once get_stylesheet_directory() . '/admin/options-framework.php';

So it will search in the child theme for files that are present in the parent theme only. It should use get_template_directory() instead.