| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/blog/administrator/components/com_jaextmanager/views/default/tmpl/ |
Upload File : |
<?php
/**
* ------------------------------------------------------------------------
* JA Extenstion Manager Component for J3.x
* ------------------------------------------------------------------------
* Copyright (C) 2004-2011 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
* @license - GNU/GPL, http://www.gnu.org/licenses/gpl.html
* Author: J.O.O.M Solutions Co., Ltd
* Websites: http://www.joomlart.com - http://www.joomlancers.com
* ------------------------------------------------------------------------
*/
//no direct access
defined( '_JEXEC' ) or die( 'Retricted Access' );
?>
<script language="javascript" type="text/javascript">
/*<![CDATA[*/
//check for fix bug jQuery undefined after submit
jQuery(document).ready(function(){
jQuery("#japopup_cancel").bind('click', function(e) {
window.close();
});
jQuery("#japopup_upload").bind('click', function(e) {
var form = document.adminForm;
var type = jQuery('input[name=installtype][checked]').val();
if(type == 'folder') {
if (form.install_directory.value == ""){
alert( "<?php echo JText::_('PLEASE_SELECT_A_DIRECTORY', true ); ?>" );
return false;
}
} else if(type == 'url') {
// do field validation
if (form.install_url.value == "" || form.install_url.value == "http://"){
alert( "<?php echo JText::_('PLEASE_ENTER_A_URL', true ); ?>" );
return false;
}
}
//jQuery(this).hide();
form.submit();
});
jQuery('#install_package').focus(function(){
jQuery('input[name=installtype][value=upload]').attr('checked', 'checked');
});
jQuery('#install_directory').focus(function(){
jQuery('input[name=installtype][value=folder]').attr('checked', 'checked');
});
jQuery('#install_url').focus(function(){
jQuery('input[name=installtype][value=url]').attr('checked', 'checked');
});
});
/*]]>*/
</script>
<fieldset>
<legend><?php echo JText::_('JOOMLART_EXTENSIONS_UPLOADER' ); ?></legend>
<form enctype="multipart/form-data" method="post" action="index.php" id="adminForm" name="adminForm">
<input type="hidden" name="type" value="" />
<input type="hidden" name="task" value="doUpload" />
<input type="hidden" name="tmpl" value="component" />
<input type="hidden" name="view" value="default" />
<input type="hidden" name="option" value="com_jaextmanager" />
<input type="hidden" value="1" id="hasFileUpload" name="hasFileUpload" />
<?php echo JHtml::_( 'form.token' ); ?>
<table align="center">
<tr>
<td>
<input type="radio" name="installtype" id="installtype_upload" value="upload" checked="checked" />
<label for="installtype_upload"><?php echo JText::_('UPLOAD_PACKAGE_FILE' ); ?></label> </td>
</tr>
<tr>
<td><input class="input_box" id="install_package" name="install_package" type="file" size="57" /> </td>
</tr>
<tr>
<td>
<input type="radio" name="installtype" id="installtype_folder" value="folder" />
<label for="installtype_folder"><?php echo JText::_('UPLOAD_FROM_DIRECTORY' ); ?></label> </td>
</tr>
<tr>
<td>
<input type="text" id="install_directory" name="install_directory" class="input_box" size="70" value="<?php echo $this->state->get('install.directory'); ?>" /> </td>
</tr>
<tr>
<td>
<input type="radio" name="installtype" id="installtype_url" value="url" />
<label for="installtype_url"><?php echo JText::_('UPLOAD_FROM_URL' ); ?></label> </td>
</tr>
<tr>
<td><input type="text" id="install_url" name="install_url" class="input_box" size="70" value="http://" /> </td>
</tr>
<tr>
<td>
<button id="japopup_upload" name="japopup_upload" class="button"><?php echo JText::_("UPLOAD_NOW"); ?></button>
<button id="japopup_cancel" name="japopup_cancel" class="button"><?php echo JText::_("CLOSE"); ?></button>
</td>
</tr>
</table>
</form>
</fieldset>
<?php if(!empty($this->uploadResult)): ?>
<fieldset>
<legend><?php echo JText::_('UPLOAD_RESULT' ); ?></legend>
<?php echo $this->uploadResult; ?>
</fieldset>
<?php endif; ?>