Quote Originally Posted by mc12345678 View Post
What are the contents of: YOUR_ADMIN/includes/auto_loaders/config.dpu.php

For your files on your server?

The only way that you wouldn't face errors by inserting an existing key is if it was being uninstalled as part of a load and immediately reinstalled...

Also what files were involved with your search? You said two identical places...
Contents of YOUR_ADMIN/includes/auto_loaders/config.dpu.php :
-----------------------------------
<?php
// Dynamic Price Updater

if (!defined('IS_ADMIN_FLAG')) {
die('Illegal Access');
}


$autoLoadConfig[999][] = array(
'autoType' => 'init_script',
'loadFile' => 'init_dpu_config.php'
);

// uncomment the following line to perform a uninstall
// $uninstall = 'uninstall';

-------------------------------------

Installation for the plugin instructs to place the init_dpu_config.php in these two folders, which is where my search led me:

- YOUR_ADMIN/includes/init_includes/
- /includes/init_includes/

-MT