Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
modules /
mod_j2store_currency /
tmpl /
Delete
Unzip
Name
Size
Permission
Date
Action
default.php
2.57
KB
-rwxr-xr-x
2022-02-20 10:42
index.html
44
B
-rwxr-xr-x
2022-02-20 10:42
Save
Rename
<?php /*------------------------------------------------------------------------ # mod_j2store_cart - J2 Store Cart # ------------------------------------------------------------------------ # author Sasi varna kumar - Weblogicx India http://www.weblogicxindia.com # copyright Copyright (C) 2014 - 19 Weblogicxindia.com. All Rights Reserved. # @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL # Websites: http://j2store.org # Technical Support: Forum - http://j2store.org/forum/index.html -------------------------------------------------------------------------*/ // no direct access defined('_JEXEC') or die('Restricted access'); require_once(JPATH_ADMINISTRATOR.'/components/com_j2store/helpers/j2store.php'); J2Store::utilities()->nocache(); require_once (JPATH_ADMINISTRATOR.'/components/com_j2store/helpers/strapper.php'); J2StoreStrapper::addJS(); $action = JRoute::_('index.php'); ?> <script type="text/javascript"> <!-- if(typeof(j2store) == 'undefined') { var j2store = {}; } if(typeof(j2store.jQuery) == 'undefined') { j2store.jQuery = jQuery.noConflict(); } //--> </script> <style type="text/css"> #j2store_currency { background: <?php echo $background_color; ?>; color: <?php echo $text_color; ?>; } #j2store_currency a { color: <?php echo $link_color; ?>; } #j2store_currency a.active { color: <?php echo $active_link_color; ?>; } #j2store_currency a:hover { color: <?php echo $link_hover_color; ?>; } </style> <?php if (count($currencies) > 1) : ?> <div class="j2store <?php echo $moduleclass_sfx ?>" > <form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data"> <div id="j2store_currency"> <?php foreach ($currencies as $currency) : ?> <?php if ($currency->currency_code == $currency_code) : ?> <a class="active" title="<?php echo $currency->currency_title; ?>"><b><?php echo $currency->currency_symbol; ?></b></a> <?php else: ?> <a title="<?php echo $currency->currency_title; ?>" onclick="j2store.jQuery('input[name=\'currency_code\']').attr('value', '<?php echo $currency->currency_code; ?>'); j2store.jQuery(this).parent().parent().submit();"><?php echo $currency->currency_symbol; ?></a> <?php endif; ?> <?php endforeach; ?> <input type="hidden" name="currency_code" value="" /> <input type="hidden" name="option" value="com_j2store" /> <input type="hidden" name="view" value="carts" /> <input type="hidden" name="task" value="setcurrency" /> <input type="hidden" name="redirect" value="<?php echo base64_encode( JUri::getInstance()->toString()); ?>" /> </div> </form> </div> <?php endif; ?>