Fehler #82
open
- Description updated (diff)
- Status changed from Neu to Gelöst
Your web server is not properly configured. It does not load the file
/web/administrator/components/com_extplorer/fetchscript.php
Please change the permissions of that file so it can be loaded by your webserver (e.g. remove execution permissions).
Sorry,
files are now on 644 and folders on 755 like on my other installation with extplorer and still looping.
also with 777 it does not work.
What do you meen exactly with remove execution permissions?
Thank you
Here is a simple fix for Joomla 3.03
Navigate to the following path in your Joomla installation:
administrator/components/com_extplorer/index.php.
Then edit the index.php file and insert the below code which is missing when the component is installed:
require_once(dirname(FILE).'/fetchscript.php');
---------------------------------------------------------
To help you identify where in the file the code should be inserted, I've shown below a snippet of my fix to guide you --
// Set flag that this is a parent file
define( '_VALID_MOS', 1 );
define( '_VALID_EXT', 1 );
require_once( dirname(FILE).'/libraries/standalone.php');
require_once(dirname(FILE).'/fetchscript.php');
ob_start();
include( dirname(FILE).'/admin.extplorer.php' );
$mainbody = ob_get_contents();
ob_end_clean();
Also available in: Atom
PDF