Including from a remote URL is not allowed, even if that URL is actually local. The simplest way is to use either relative or absolute paths to the files:
Code:
//This is relative, '../' means the parent directory
include('../file1.php');
Code:
//This is absolute, '/' means the base directory
include('/file1.php');
//If the base is not setup to the document root, it may actually be:
include('/home/YOURCPANELUSERNAME/public_html/file1.php');
Both of these will work in the '/exempl/index.php' file.