Try renaming each of the config files to something different, such as last10config1.php, last10config2.php, etc. Then, change the name of each of the last10 files to something unique, such as last101.php, last102.php, etc. Then in the last10 files, find
require("last10config.php");
and change it to the unique name for each file. So in the last101.php file, you'd change it to
require("last10config1.php");
etc.
|