Server IP : 1.179.227.78 / Your IP : 10.104.4.41 Web Server : Apache System : Linux afdc-mdu34 5.4.0-153-generic #170-Ubuntu SMP Fri Jun 16 13:43:31 UTC 2023 x86_64 User : www ( 1001) PHP Version : 7.4.30 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/afdc-mdu34.rtarf.mi.th/joomla/administrator/components/com_profiles/ |
Upload File : |
<?PHP /** * @package Profiles * @subpackage filemanger * @copyright Copyright (C) 2013 - 2013 Mad4Media - Dipl. Informatiker(FH) Fahrettin Kutyol. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * @license Libraries can be under a different license in other environments * @license Media files owned and created by Mad4Media such as * @license Javascript / CSS / Shockwave or Images are licensed under GFML (GPL Friendly Media License). See GFML.txt. * @license 3rd party scripts are under the license of the copyright holder. See source header or license text file which is included in the appropriate folders * @version 1.0 * @link http://www.mad4media.de * Creation date 2013/02 */ //CUSTOMPLACEHOLDER //CUSTOMPLACEHOLDER2 defined('_JEXEC') or die; $plattform = "STANDALONE"; if(defined('_JEXEC')) $plattform = "JOOMLA"; else define('_JEXEC',1); switch ($plattform){ default: case 'STANDALONE': break; //EOF STANDALONE case 'JOOMLA': define('_FM_COM', 'com_profiles'); $format = JRequest::getCmd("format",null); if($format != "raw") { $uri = JURI::getInstance(); $app = JFactory::getApplication(); $app->redirect(JRoute::_( $uri ."&format=raw")); } $lang = JFactory::getLanguage(); define('_MY_LANGUAGE',$lang->getTag()); define('_CLOSE_HREF','index.php'); $ABSOLUTE_URI = (getenv('HTTPS') == 'on') ? substr_replace( str_replace("http://", "https://", JURI::base() ), '', -1, 1) : substr_replace(JURI::base(), '', -1, 1) . "/"; define('_FM_ABSOLUTE_URI',$ABSOLUTE_URI); define('_FM_HOME_URL', "index.php?option="._FM_COM."&format=raw"); define('_FM_HOME_FOLDER','components/'._FM_COM.'/filemanager'); define('_FM_NO_FOLDER_FALLBACK_NAME',"Joomla"); define('_FM_NO_FOLDER_FALLBACK_PATH',str_replace( '\\', "/", JPATH_ROOT) ); // Define Sandbox Path define('_FM_SANDBOX', JPATH_ROOT ."/administrator/components/"._FM_COM."/sandbox"); // Define Peer define('_FM_PEER','joomla'); break; //EOF JOOMLA }//EOF plattform switch // Start Bootstrap require('filemanager/bootstrap.php');