Errors with 5.6.0.1

Permalink
I get the following errors on a fairly generic site that I have first tried 5.6.0.1. Can anyone explain these errors to me? I have some technical understanding, but pretty shallow. Thanks for any help. - Jason

Warning: include(/home/marron/public_html/updates/concrete5.6.0.1/concrete/elements/menu_required.php) [function.include]: failed to open stream: No such file or directory in /home/marron/public_html/updates/concrete5.6.0.1/concrete/core/libraries/loader.php on line 80

Warning: include() [function.include]: Failed opening '/home/marron/public_html/updates/concrete5.6.0.1/concrete/elements/menu_required.php' for inclusion (include_path='/home/marron/public_html/libraries/3rdparty:/home/marron/public_html/updates/concrete5.6.0.1/concrete/libraries/3rdparty:.:/usr/lib/php:/usr/local/lib/php') in /home/marron/public_html/updates/concrete5.6.0.1/concrete/core/libraries/loader.php on line 80

 
AccountDisabled replied on at Permalink Best Answer Reply
Had the exact same problem with a client site.

I couldn't find any examples of people using 'menu_required' via a Google search so I remarked out that line like so...

<?php
// Loader::element('menu_required');
?>


...and that fixed the PHP error messages.

The other issue I found was totally unrelated. The following code was being included before the <head> element instead of inside it.

<?php
Loader::element('header_required');
?>


Once the above code was moved back into the <head> element all the remaining JS errors went away.

Cheers!
jkmelancon replied on at Permalink Reply
Thanks, worked. - Jason