mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-17 21:43:11 +01:00
a58cd51617
- check for a valid eGW session"
56 lines
2.5 KiB
Plaintext
56 lines
2.5 KiB
Plaintext
2008/04/15 (RalfBecker)
|
|
- editor/filemanager/connectors/php/io.php line 168:
|
|
- return $info->filename . $info->path_info ;
|
|
+ // RalfBecker 2008/04/15: remove index.{html|php} added by apache
|
|
+ return str_replace(array('/index.html','/index.php'),'',$info->filename) . $info->path_info ;
|
|
|
|
- editor/filemanager/browser/default/connectors/php/config.php line 30:
|
|
-//$Config['Enabled'] = false ;
|
|
+
|
|
+function deny_no_egw_session(&$account)
|
|
+{
|
|
+ die('Access denied!');
|
|
+}
|
|
+$GLOBALS['egw_info'] = array(
|
|
+ 'flags' => array(
|
|
+ 'currentapp' => 'sitemgr',
|
|
+ 'noheader' => true,
|
|
+ 'autocreate_session_callback' => 'deny_no_egw_session',
|
|
+ )
|
|
+);
|
|
+
|
|
+// will not continue, unless the header get's included, there is a valid eGW session and the user has sitemgr rights
|
|
+require('../../../../../../../header.inc.php');
|
|
+$Config['Enabled'] = $GLOBALS['egw']->session->session_flags == 'N'; // disallow anonymous users
|
|
|
|
- editor/filemanager/browser/default/connectors/php/config.php reverted to the original FCK version of ConfigAllowedTypes
|
|
-$Config['ConfigAllowedTypes'] = array('images','File', 'Image', 'Flash', 'Media') ;
|
|
+$Config['ConfigAllowedTypes'] = array('File', 'Image', 'Flash', 'Media') ;
|
|
|
|
2007/12/16 (jgordor) - 2.5 Migration
|
|
- Moved own config (not controlled by the php config object) to external file: fckeditor.egwconfig.js
|
|
- Changes in the fckeditor code:
|
|
- Enable/configure the connector in (now is controlled by only one file):
|
|
- editor/filemanager/connectors/php/config.php
|
|
- Enable connector
|
|
- Get and set ServerPath var to configure userdir path
|
|
- Enable/configure aspell on (for spellchecker):
|
|
- editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php
|
|
|
|
--------------------------------------------------------
|
|
Changes made to fckeditor to work properly on egroupware
|
|
- fckconfig.js
|
|
- Added egw_* toolbars
|
|
- editor/filemanager/browser/default/connectors/php/connector.php
|
|
- Change hardcoded image dir from Image -> images (to respect the actual behavior in sitemgr)
|
|
- editor/filemanager/browser/default/frmresourcetype.html
|
|
- Again change Image -> images
|
|
- editor/filemanager/browser/default/connectors/php/config.php
|
|
- Commented hardcoded Userdir path
|
|
- Enable the browser
|
|
- editor/filemanager/upload/php/config.php
|
|
- Commented hardcoded Userdir path (is disabled by default)
|
|
- editor/filemanager/browser/default/connectors/php/io.php
|
|
- Remove the append of directory per type, example, for images the final url is base+serverpath+images (or type)
|
|
|
|
|