Question
This might be too specific, but I've been trying for hours so I'm just going to try my luck: I'm trying to make a submission to SAGE however their compiler seems to be unable to recognize the .bib files. Any reason why this might be happening and how to fix it?
MWE
The MWE project files along with the log obtained from SAGE can be downloaded from here.
\documentclass[Afour,sagev,times,doublespace]{sagej}
\usepackage{moreverb,url}
\usepackage[colorlinks,bookmarksopen,bookmarksnumbered,citecolor=red,urlcolor=red]{hyperref}
\newcommand\BibTeX{{\rmfamily B\kern-.05em \textsc{i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\def\volumeyear{2016}
\begin{document}
Dummy text \cite{ahad2011}
\bibliographystyle{SageV}
\bibliography{bibliography.bib}
\end{document}
Outputs
What I've tried
According to the ScholarOne Manuscript Author Guide, there are sometimes errors with the .bib files:
So I tried doing exactly that using
\usepackage{filecontents}as suggested by Amphipolis here,- the
filecontents*environment as suggested by egreg here, - and even tried the
\endinputapproach as suggested by TH. here
to no avail.
Any help will be much appretiated.


\bibliography{bibliography.bib}with the contents of the new.bblfile worked like a charm!! – Hans Sep 16 '21 at 20:48