Project

General

Profile

Actions

Fehler #82

open

here are a lot of posts showing ploblems with extplorer

Added by Tobias Conrad over 11 years ago. Updated about 11 years ago.

Status:
Gelöst
Priority:
Sofort
Category:
Bug
Target version:
eXtplorer Version:
Joomla! Version:

Description

Actions #1

Updated by Sören Eberhardt-Biermann over 11 years ago

  • 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).

Actions #2

Updated by Tobias Conrad over 11 years ago

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

Actions #3

Updated by Sören Eberhardt-Biermann over 11 years ago

Please bring your webserver to deliver this script:
http://lab-hamburg.de/web/administrator/components/com_extplorer/fetchscript.php

Currently that throws a 403 Forbidden error.

Actions #4

Updated by Tobias Conrad over 11 years ago

know to google, can fix a lot...

https://www.akeebabackup.com/support/admin-tools/12037-extplorer-component--infinite-loop-after-custom-at-htaccess-file.html

now ticket is closed
customer is statisfied again.

thank you nice tool

Actions #5

Updated by Alvin Parsons about 11 years ago

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();

Actions

Also available in: Atom PDF