Hi Kephus,
Sorry that you have gone so long without a reply. It seems the WPide plugin has become inactive, so I am creating a fork of the plugin, called AceIDE.
I can see from your photos that the WPide root directory is the wp-content directory. I would expect that whatever issue was presented here would be in one of the files in your wp-content directory, most likely under files.
However, to answer your question, “Where are the core files?”
The core files are in the directory above the WPide root directory. You can modify the root directory of WPide with the “wpide_filesystem_root” filter, as follows:
function __return_abspath() {
return ABSPATH;
}
add_filter('wpide_filesystem_root', '__return_abspath');
You can place this in your functions.php if you like. However personally, I prefer to create a file in the plugins directory with this code then activate the plugin.
Please note that after changing the filesystem root, you will have to refresh your IDE to make it aware of the new root.
Also, you must exercise caution. This will allow you more control over your install however technically you shouldn’t *need* to edit anything outside of wp-content, with the single exception of wp-config.php in some circumstances.
With great power, comes great responsibility!
Kind Regards