For whatever reason I'm unable to produce bibliography with the BibLaTeX package in MiKTeX. I'm running the 32-bit MiKTeX 2.9.5105 on Windows 7. I've conjured the simplest code I could think of and it still wouldn't work:
\documentclass{article}
\usepackage{biblatex}
\addbibresource{justin.bib}
\begin{document}
Hello! \cite{justinB}
\printbibliography
\end{document}
The bib file looks like this:
@article
{justinB,
AUTHOR = "Bieber, Justin",
TITLE = "{Baby baby baby (ohh)}",
PUBLISHER = "Ludacris Inc.",
YEAR = 2010
}
And this generates the next PDF (while not producing a .bbl file):

Now, I suspect it has something to do with the Biber package, which seems to me to be the default engine. I suspect this, based on similar threads I found regarding similar issues with Biber [1] [2] [3], and from the fact that when I either force it to run with BibTeX or run it as-is in ShareLaTeX it seems to work.
\documentclass{article}
\usepackage[backend=bibtex]{biblatex}
\bibliography{justin}
\begin{document}
Hello! \cite{justinB}
\printbibliography
\end{document}
Producing:

[3] made me suspect the error may be due to me using a 64-bit installation of MiKTeX, but this persisted in the 32-bit version as well.
Neither could I find the temporary files suggested in [2] and [3], which point to different folders, making me suspect that Biber might generate a new folder name with a different number in each installation. I deleted whichever folders starting with the phrase 'par-' that I found on my hard drive but non of that helped to solve the problem.
Kind help would be appreciated :)
biber? You must runbiberto produce the.bblfile (just as you must runbibtexif using that backend). That is, you want something likepdflatex filename.tex -> biber filename -> pdflatex filename.tex -> pdflatex filename.tex. – cfr Nov 27 '14 at 00:33biberuses a binary cache that may get corrupted. The solution consists in deletin,g the cache first. You will find it in C:\Users\Your_User_Name\AppData\Local\Temp\par-4265726e617264. Note that by default this is a hidden file. – Bernard Nov 27 '14 at 00:44filewhich biber`` gives me/usr/local/texlive/bin/biber: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.15, stripped] ;). – cfr Nov 27 '14 at 02:21texifywhich rune (pdf)LaTeX + MakeIndex + BibTeX. You can runbiberand(pdf)LaTeXas independent applications, though, but I have no idea how to configure texify so that it uses biber instead of bibtex. It seems much easier withTeXmaker, for instance. – Bernard Nov 27 '14 at 18:37biber. I will forward this to the MikTeX or TeXworks guys. – Alex Nov 28 '14 at 20:13biberbut as a standalone application, not within the automatedtexify. – Bernard Nov 28 '14 at 20:24