[Tex/LaTex] input index file not found

errorsindexinginput

I am using TeXnicCentre. After compiling, while I get an output pdf file, an error is found that says

Could't find input index file pathname nor pathname.idx

I am afraid I cant pinpoint the error.
Please help.

Here are my (simplified) tex and bib files

%TeX file
\documentclass{article}
\author{Abhimanyu Arora}
\title{Experiments}
\maketitle
\begin{document}
\section{Introduction}
This is a simple trial file. For more details refer \cite{Arora}
\bibliography{ref}
\bibliographystyle{plain}
\end{document}


%Bib file
@article{Arora,
  author = {Arora, Abhimanyu},
  year = {2011},
  title = {How to get unstuck},
  journal = {American Economic Review},
  volume = {87},
  number = {1},
  pages = {1--30},
}

Best Answer

Go into TeXnicCenters menu Output->active output profile (don't really know the english names) and disable the checkbox for using makeindex

Related Question