I have a working drupal site on my server, yet when I transfer the database and files to my home computer, it loads as a file directory.

Since my database is large I had to use bigdump to transfer it in. I deleted a few comment lines at the end of the database to "fix" errors preventing it from importing.

There's are the lines that were creating the errors:

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

Would these cause my website to not load properly?

Thanks for your help!