Revision 186
trunk/extplorer.xml | ||
---|---|---|
1 | 1 |
<?xml version="1.0" encoding="iso-8859-1" ?> |
2 | 2 |
<mosinstall type="component"> |
3 |
<!-- Mambo/Joomla! 1.0 Installer XML File --> |
|
3 |
<!-- Joomla! 1.0 Installer XML File |
|
4 |
$Id: extplorer.php 164 2010-05-03 15:06:51Z soeren $ --> |
|
4 | 5 |
<name>eXtplorer</name> |
5 |
<creationDate>04.01.2011</creationDate>
|
|
6 |
<creationDate>18.01.2011</creationDate>
|
|
6 | 7 |
<author>soeren, QuiX Project</author> |
7 | 8 |
<copyright>Soeren Eberhardt-Biermann, QuiX Project</copyright> |
8 | 9 |
<authorEmail>soeren|-at|-virtuemart.net</authorEmail> |
9 | 10 |
<authorUrl>http://joomlacode.org/gf/project/joomlaxplorer/</authorUrl> |
10 |
<version>2.1.0RC2</version>
|
|
11 |
<version>2.1.0RC3</version>
|
|
11 | 12 |
<description><![CDATA[ |
12 | 13 |
<div align="left"><img src="components/com_extplorer/images/eXtplorer.gif" alt="eXtplorer Logo" /></div> |
13 | 14 |
<h2>Successfully installed eXtplorer </h2> |
trunk/CHANGELOG.txt | ||
---|---|---|
3 | 3 |
Version $Id$ |
4 | 4 |
**************************** |
5 | 5 |
|
6 |
--- version 2.1.0 RC3 released --- |
|
7 |
|
|
6 | 8 |
- fixed filesize for files > 2GB |
7 |
- works with Joomla! 1.6 now
|
|
9 |
- works and installs on Joomla! 1.6 now
|
|
8 | 10 |
|
9 | 11 |
--- version 2.1.0 RC2 released --- |
10 | 12 |
|
trunk/extplorer.j15.xml | ||
---|---|---|
1 | 1 |
<?xml version="1.0" encoding="utf-8"?> |
2 | 2 |
<!DOCTYPE install SYSTEM "http://dev.joomla.org/xml/1.5/component-install.dtd"> |
3 | 3 |
<install type="component" version="1.5.0"> |
4 |
<!-- Joomla! 1.5 Installer XML File --> |
|
4 |
<!-- Joomla! 1.5 Installer XML File |
|
5 |
$Id$ --> |
|
5 | 6 |
<name>eXtplorer</name> |
6 |
<creationDate>04.01.2011</creationDate>
|
|
7 |
<creationDate>18.01.2011</creationDate>
|
|
7 | 8 |
<author>soeren, QuiX Project</author> |
8 | 9 |
<copyright>Soeren Eberhardt-Biermann, QuiX Project</copyright> |
9 | 10 |
<license>GNU/GPL, alternative: MPL</license> |
10 | 11 |
<authorEmail>soeren|at|virtuemart.net</authorEmail> |
11 | 12 |
<authorUrl>http://joomlacode.org/gf/project/joomlaxplorer/</authorUrl> |
12 |
<version>2.1.0RC2</version>
|
|
13 |
<version>2.1.0RC3</version>
|
|
13 | 14 |
<description><![CDATA[ |
14 | 15 |
<div align="left"><img src="components/com_extplorer/images/eXtplorer.gif" alt="eXtplorer Logo" /></div> |
15 | 16 |
<h2>Successfully installed eXtplorer </h2> |
trunk/uploadhandler.php | ||
---|---|---|
1 | 1 |
<?php |
2 |
// $Id: extplorer.php 164 2010-05-03 15:06:51Z soeren $ |
|
2 | 3 |
// eXtplorer Flash Upload Handler for Joomla! |
3 | 4 |
if( @$_POST['option'] == 'com_extplorer' && !empty($_POST[session_name()]) && !defined('_JEXEC') ) { |
4 |
session_name( $_POST['session_name'] );
|
|
5 |
session_name( substr( $_POST['session_name'], 0 , 32 ) );
|
|
5 | 6 |
$sess_id = substr( $_POST[session_name()], 0 , 32 ); |
6 | 7 |
$_COOKIE[session_name()] = $sess_id; |
7 | 8 |
session_id( $sess_id ); |
8 |
// we need to spoof J! 1.6 and modify the user agent to get the allowance to reuse the existing browser session |
|
9 |
$_SERVER['HTTP_USER_AGENT'] = stripslashes( $_POST['user_agent'] ); |
|
10 | 9 |
|
11 | 10 |
/**DEBUG |
12 | 11 |
$res = "\r\nTime: ".time()."\r\nSession Name: ".session_name().', Session ID: '.session_id(); |
... | ... | |
17 | 16 |
//**/ |
18 | 17 |
|
19 | 18 |
if( file_exists('../../../configuration.php') ){ |
19 |
// we need to spoof J! 1.6 and modify the user agent to get the allowance to reuse the existing browser session |
|
20 |
$_SERVER['HTTP_USER_AGENT'] = stripslashes( $_POST['user_agent'] ); |
|
20 | 21 |
session_start(); |
21 | 22 |
// we had our fun, enough values set- |
22 | 23 |
// now just continue with the default Joomla! /administrator/index.php |
Also available in: Unified diff