After the El Capitan update I had to go through my preferences and change the path files for LaTeX to compile but my references are still not working. Trying to compile gives the following warning:
Process started
This is BibTeX, Version 0.99d (TeX Live 2015) The top-level auxiliary file: Plan.aux I found no \citation commands---while reading file Plan.aux I found no \bibdata command---while reading file Plan.aux I found no \bibstyle command---while reading file Plan.aux (There were 3 error messages)
Process exited with error(s)
Does anyone have any advice for how to deal with this? I am using TexMaker with MacTex. Everything worked perfectly before the upgrade and nothing has changed in the file since the upgrade.
A MWE of a file that does not compile is:
%_________________Preamble Start___________________________________________
\documentclass[a4paper, 12pt, twopage]{scrreprt}
%_________________Encoding_________________________________________________
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
%_________________Referencing__________________________________________
\usepackage[style=authoryear-comp,natbib]{biblatex}
\addbibresource{References.bib}
%this means you dont have to stipulate if you are referencing a figure etc
\usepackage{cleveref}
%_________________graphics_____________________________________________
\usepackage{graphicx}
\begin{document}
\citep{fulton2014integrated}
\printbibliography
\end{document}
And the bib file is References.bib with one reference:
@article{fulton2014integrated,
title={An integrated approach is needed for Ecosystem Based Fisheries Management: insights from ecosystem-level management strategy evaluation},
author={Fulton, Elizabeth A and Smith, Anthony DM and Smith, David C and Johnson, Penelope},
journal={PloS one},
volume={9},
number={1},
year={2014},
publisher={Public Library of Science}
}
And Here are my preferences:
Just to summarise my discussion with moewe I needed to change the Bib(la)tex field to "/Library/TeX/texbin/biber" % (i.e. remove the aux and change to biber rather than bibtex).

.auxfile that wasn't made to be processed by BibTeX. Can you show us the document you produced this with? If you usebiblatexas the tag suggests, your document probably expects to be compiled with Biber and not with BibTeX. – moewe Oct 31 '15 at 10:18bibtex, but you need to runbiberBiblatex with Biber: Configuring my editor to avoid undefined citations – Johannes_B Nov 02 '15 at 10:00biblatex. In the old days, the default (if nobackendoption was passed tobiblatex) backend was BibTeX, but this has changed to Biber. – moewe Nov 02 '15 at 10:09INFO - This is Biber 2.1 INFO - Logfile is 'Plan.aux.blg' ERROR - Cannot find control file 'Plan.aux.bcf'! - did you pass the "backend=biber" option to BibLaTeX? INFO - ERRORS: 1
Process exited with error(s)`
– PaulBarr Nov 02 '15 at 10:09Error : could not start the command : "/Library/TeX/texbin/biber.exe" "Plan".aux– PaulBarr Nov 02 '15 at 10:10auxtoo much in your settings. The second error just confuses me, you are on OS X aren't you? In that case you will not callbiber.exe(.exeis for Windows executables). – moewe Nov 02 '15 at 10:17auxin the line for "Bib(la)tex", it should read"/path/to/biber" %without the.aux. – moewe Nov 02 '15 at 10:50Unicode char \u8:́ not set up for use with LaTeXas an error. Sorry for the protracted problems, and thank you massively for your help. – PaulBarr Nov 02 '15 at 10:53