params= new JRegistry(); $this->params->loadString($plugin->params, 'JSON'); $this->_cacheEnabled = $this->params->get('cache_enabled'); if ($this->_cacheEnabled === null) $this->_cacheEnabled == 1; $this->_autoflush = $this->params->get('autoFlush'); if ($this->_autoflush === null) $this->_autoflush = 1; $this->_autoflush3rdParty = $this->params->get('autoFlush-ThirdParty'); if ($this->_autoflush3rdParty === null) $this->_autoflush3rdParty = 1; $this->_autoflushClientSide = $this->params->get('autoFlush-ClientSide'); if ($this->_autoflushClientSide === null) $this->_autoflushClientSide = 0; } /** * Heartbeat cache checking function. Will also monitor $_GET for the jSGCache parameter * (pressing the purge cache button in admin) * * * @access public * @return null */ public function onAfterInitialise() { if (!$this->_cacheEnabled || $this->_isBlacklisted($this->_applicationPath)) { JResponse::setHeader('X-Cache-Enabled','False',true); return; } if ($this->_cacheEnabled) { JResponse::setHeader('X-Cache-Enabled','True',true); } //Init the application url $this->_applicationPath = str_replace(array('administrator/index.php','index.php'),'',str_replace($_SERVER['DOCUMENT_ROOT'],'',$_SERVER['SCRIPT_FILENAME'])); //Check for any admin action and proceed to flushMonitor and 3rd party plugins if ( isset($_POST['task']) || isset($_GET['task']) || isset($_GET['cart_virtuemart_product_id'])) { $this->_flushMonitor(); if ($this->_autoflush3rdParty) $this->_monitorThirdPartyPlugins(); } //Check if we have a logged in user and enable cache bypass cookie 'task' => string 'user.login' $user = JFactory::getUser(); if (!$user->guest || (isset($_POST['task']) && preg_match('/login/i', $_POST['task']))) { $_POST[JSession::getFormToken()] = 1; //Force the correct token, since the login box on the page is cached with the 1st visitors' token //Enable the cache bypass for logged users by setting a cache bypass cookie setcookie('jSGCacheBypass',1,time() + 6000,'/'); } if ($user->guest || (isset($_POST['task']) && $_POST['task'] == 'user.logout')) { //Remove the bypass cookie if not a logged user if (isset($_COOKIE['jSGCacheBypass'])) setcookie('jSGCacheBypass',0, time() - 3600,'/'); } // Handle purge button press when get has jSGCache=purge, but only in admin with a logged user if(isset($_GET['jSGCache']) && $_GET['jSGCache'] == 'purge' && JFactory::getApplication()->isAdmin() && !$user->guest ) $this->_purgeCache(true); } /** * Admin panel icon display * * @access public * @param string $context * @return array */ public function onGetIcons( $context ) { return array(array( 'link'=>'?jSGCache=purge', 'image'=>'header/icon-48-purge.png', 'text'=>JText::_('Purge jSGCache'), 'id'=>'jSGCache' )); } /** * Calls the cache server to purge the cache * * @access public * @param string|bool $message Message to be displayed if purge is successful. If this param is false no output would be done * @return null */ private function _purgeCache( $message = true ) { $purgeRequest = $this->_applicationPath . '(.*)'; // Check if caching server is varnish or nginx. $sgcache_ip = '/etc/sgcache_ip'; $hostname = $_SERVER['SERVER_ADDR']; $purge_method = "PURGE"; if (file_exists($sgcache_ip)) { $hostname = trim( file_get_contents( $sgcache_ip, true ) ); $purge_method = "BAN"; } $cacheServerSocket = fsockopen($hostname, 80, $errno, $errstr, 2); if(!$cacheServerSocket) { JError::raise(E_ERROR,500,JText::_('Connection to cache server failed!')); JError::raise(E_ERROR,500,JText::_($errstr ($errno))); return; } $request = "$purge_method {$purgeRequest} HTTP/1.0\r\nHost: {$_SERVER['SERVER_NAME']}\r\nConnection: Close\r\n\r\n"; if (preg_match('/^www\./',$_SERVER['SERVER_NAME'])) { $domain_no_www = preg_replace('/^www\./', '', $_SERVER['SERVER_NAME']); $request2 = "$purge_method {$purgeRequest} HTTP/1.0\r\nHost: {$domain_no_www}\r\nConnection: Close\r\n\r\n"; } else $request2 = "$purge_method {$purgeRequest} HTTP/1.0\r\nHost: www.{$_SERVER['SERVER_NAME']}\r\nConnection: Close\r\n\r\n"; fwrite($cacheServerSocket, $request); $response = fgets($cacheServerSocket); fclose($cacheServerSocket); $cacheServerSocket = fsockopen($hostname, 80, $errno, $errstr, 2); fwrite($cacheServerSocket, $request2); fclose($cacheServerSocket); if($message !== false) { if(preg_match('/200/',$response)) { if ($message === true) JFactory::getApplication()->enqueueMessage(JText::_('SG Cache Successfully Purged!')); else JFactory::getApplication()->enqueueMessage(JText::_( $message )); } else { JError::raise(E_NOTICE,501, JText::_('SG Cache: Purge was not successful!')); JError::raise(E_NOTICE,501, jText::_('Error: ' . $response)); } } } /** * Check if url is in caching blacklist * * @param string $applicationPath * * @return bool */ private function _isBlacklisted($applicationPath) { $blacklistArray = explode("\n",$this->params->get('blacklist')); $blacklistRegexArray = array(); $indexIsBlacklisted = false; foreach($blacklistArray as $key=>$row) { $row = trim($row); if ($row != '/' && $quoted = preg_quote($row,'/')) $blacklistRegexArray[$key] = $quoted; if ($row == '/') $indexIsBlacklisted = true; } if ($indexIsBlacklisted && $_SERVER['REQUEST_URI'] == $applicationPath) return true; if (empty($blacklistRegexArray)) return false; $blacklistRegex = '/('.implode('|',$blacklistRegexArray) . ')/i'; return preg_match($blacklistRegex, $_SERVER['REQUEST_URI']); } /** * 3rd party plugin monitor * * @access private * @return null */ private function _monitorThirdPartyPlugins() { // Kunena & K2 if ($this->params->get('autoFlush-ThirdParty') == 1 && isset($_POST['option']) && ($_POST['option']=='com_k2' || $_POST['option' ]== 'com_kunena')) { $this->_purgeCache(false); } // VirtueMart if ( (isset($_POST['option']) && $_POST['option'] == 'com_virtuemart') || ( isset($_GET['option']) && $_GET['option'] == 'com_virtuemart' ) || isset($_GET['cart_virtuemart_product_id']) ) { if($this->params->get('autoFlush-ThirdParty') == 1) $this->_purgeCache(false); } } /** * Action monitor * * @access private * @return null */ private function _flushMonitor() { $user = JFactory::getUser(); if ((!JFactory::getApplication()->isAdmin() && !$this->_autoflushClientSide) || $user->guest) return; $autoflush = $this->params->get('autoFlush'); if ($autoflush === null) $autoflush = 1; if (isset($_POST['task']) && $_POST['task'] && !in_array($_POST['task'],self::$_ignoreTasks) && $autoflush == 1) $this->_purgeCache(false); } } Tablet https://quickfix.comtechweb.gr Thu, 21 May 2026 02:28:52 +0000 Joomla! - Open Source Content Management el-gr eSTAR 7 Beauty2 Red - Tablet PC - 7" - WiFi - 8GB - Google Android 6 Marshmallow https://quickfix.comtechweb.gr/index.php?option=com_hikashop&ctrl=product&task=show&cid=292&name=estar-7-beauty2-red-tablet-pc-7-wifi-8gb-google-android-6-marshmallow&Itemid=1195&category_pathway=16 https://quickfix.comtechweb.gr/index.php?option=com_hikashop&ctrl=product&task=show&cid=292&name=estar-7-beauty2-red-tablet-pc-7-wifi-8gb-google-android-6-marshmallow&Itemid=1195&category_pathway=16
Τιμή : 59,00 €]]>
16 Mon, 19 Mar 2018 11:38:33 +0000
eSTAR Grand HD Quad Core - Tablet PC - 10.1" - 4G - 8GB - Google Android 7 Nougat https://quickfix.comtechweb.gr/index.php?option=com_hikashop&ctrl=product&task=show&cid=291&name=estar-grand-hd-quad-core-tablet-pc-10-1-4g-8gb-google-android-7-nougat&Itemid=1195&category_pathway=16 https://quickfix.comtechweb.gr/index.php?option=com_hikashop&ctrl=product&task=show&cid=291&name=estar-grand-hd-quad-core-tablet-pc-10-1-4g-8gb-google-android-7-nougat&Itemid=1195&category_pathway=16
Τιμή : 129,00 €]]>
16 Mon, 19 Mar 2018 11:36:04 +0000
Lenovo Tab 10 TB-X103F 10.1" WiFi 1GB/16GB Μαύρο EU https://quickfix.comtechweb.gr/index.php?option=com_hikashop&ctrl=product&task=show&cid=277&name=lenovo-tab-10-tb-x103f-10-1-wifi-1gb-16gb-mayro-eu&Itemid=1195&category_pathway=16 https://quickfix.comtechweb.gr/index.php?option=com_hikashop&ctrl=product&task=show&cid=277&name=lenovo-tab-10-tb-x103f-10-1-wifi-1gb-16gb-mayro-eu&Itemid=1195&category_pathway=16
Γενικά Στοιχεία

 

  • Μοντέλο Κινητού: Tab 10 TB-X103F 10.1"
  • Dual Sim: Όχι
  • Κατασκευαστής: Lenovo
  • Πυρήνες: 4
  • HZ: 1300 MHz
  • MEMORY: 1GB
  • Εγγύηση: 2 Χρόνια
  • Χρώμα: Μαύρο
Δυνατότητες

 

  • Λειτ. Σύστημα: Android OS, v6.0 (Marshmallow)
  • Κάμερα: 5 MP Auto-Focus, Δευτερεύουσα κάμερα: 2MP
  • GPS: Ναι
  • Παιχνίδια: Ναι
  • Ραδιόφωνο: Ναι
Εξτρα Λειτουργίες

 

  • Έξτρα Λειτουργίες: Kid's Mode
Ήχοι

 

  • Ποσότητα Ήχου: Download
  • Τύπος Ήχου: Πολυφωνικοί, MP3 ringtones
Μέγεθος Ιντσες

 

  • Πλάτος (χιλιοστά): 9,60
  • Ύψος (χιλιοστά): 247,00
  • Μήκος (χιλιοστά): 171,00
  • Βάρος (γραμμάρια): 570,00
Μεταφορά Δεδομένων

 

  • 3G: Όχι
  • Ασύρματο Δίκτυο: Wi-Fi 802.11 b/g/n
  • Υπέρυθρες: Όχι
  • Bluetooth: Ναι, v4.0
  • Έκδοση Bluetooth: v4.0
Μνήμη

 

  • Κάρτα Μνήμης: MicroSD
  • Μνήμη Τηλεφώνου: 16 GB storage, 1 GB RAM
Μπαταρία

 

  • Τύπος Μπαταρίας: Li-Ion 7000 mAh
Οθόνη

 

  • Τύπος Οθόνης: IPS LCD capacitive touchscreen, 16M Χρώματα
  • Διάσταση Οθόνης: 1280 x 800 pixels, 10.1 Ίντσες
Τιμή : 149,99 €]]>
16 Thu, 15 Mar 2018 10:02:11 +0000
Samsung Galaxy Tab E 9.6" SM-T561 3G Λευκό EU https://quickfix.comtechweb.gr/index.php?option=com_hikashop&ctrl=product&task=show&cid=276&name=samsung-galaxy-tab-e-9-6-sm-t561-3g-lefko-eu&Itemid=1195&category_pathway=16 https://quickfix.comtechweb.gr/index.php?option=com_hikashop&ctrl=product&task=show&cid=276&name=samsung-galaxy-tab-e-9-6-sm-t561-3g-lefko-eu&Itemid=1195&category_pathway=16
Γενικά Στοιχεία

 

  • Μοντέλο Κινητού: Tab E 9.6" SM-T561 3G
  • 3G Δίκτυο: HSDPA 900 / 2100
  • 2G Δίκτυο: GSM850, GSM900, DCS1800, PCS1900
  • Dual Sim: Όχι
  • Κατασκευαστής: Samsung
  • Πυρήνες: 4
  • HZ: 1300 MHz
  • MEMORY: 1.5GB
  • Εγγύηση: 2 Χρόνια
  • Χρώμα: Άσπρο
Δυνατότητες

 

  • Λειτ. Σύστημα: Android OS, v4.4 (KitKat)
  • Κάμερα: 5 MP, autofocus, Geo-tagging, Εμπρόσθια Κάμερα 2 MP
  • GPS: Ναι
  • Παιχνίδια: Ναι
  • Ραδιόφωνο: Όχι
Εξτρα Λειτουργίες

 

  • Έξτρα Λειτουργίες: MicroSD (εώς 128GB), Micro-SIM, Αισθητήρας επιτάχυνσης
Ήχοι

 

  • Τύπος Ήχου: MP3, WAV ringtones
  • Δόνηση: Όχι
Μέγεθος Ιντσες

 

  • Πλάτος (χιλιοστά): 149,50
  • Ύψος (χιλιοστά): 241,90
  • Μήκος (χιλιοστά): 8,50
  • Βάρος (γραμμάρια): 495,00
Μεταφορά Δεδομένων

 

  • 3G: Ναι
  • Bluetooth: Ναι, v4.0
  • Έκδοση Bluetooth: v4.0
Μνήμη

 

  • Κάρτα Μνήμης: MicroSD
  • Μνήμη Τηλεφώνου: 8 GB, 1.5 GB RAM
Μπαταρία

 

  • Χρόνος Αναμονής (Ώρες): Μη Διαθέσιμη Πληροφορία
  • Χρόνος Ομιλίας (Λεπτά): Έως και 1560
  • Τύπος Μπαταρίας: Non-removable Li-Ion 5000 mAh battery
Οθόνη

 

  • Τύπος Οθόνης: TFT capacitive touchscreen, 16M Χρώματα
  • Διάσταση Οθόνης: 800 x 1280 pixels, 9.6"
Τιμή : 189,99 €]]>
16 Thu, 15 Mar 2018 09:22:34 +0000
Samsung Galaxy Tab E 9.6" SM-T560 WiFi 1,5GB/8GB Λευκό EU https://quickfix.comtechweb.gr/index.php?option=com_hikashop&ctrl=product&task=show&cid=275&name=samsung-galaxy-tab-e-9-6-sm-t560-wifi-1-5gb-8gb-lefko-eu&Itemid=1195&category_pathway=16 https://quickfix.comtechweb.gr/index.php?option=com_hikashop&ctrl=product&task=show&cid=275&name=samsung-galaxy-tab-e-9-6-sm-t560-wifi-1-5gb-8gb-lefko-eu&Itemid=1195&category_pathway=16
  • Μοντέλο Κινητού: SM-T560 Galaxy Tab E 9.6 Wi-Fi
  • 3G Δίκτυο: Οχι
  • 2G Δίκτυο: GSM 850 / 900 / 1800 / 1900
  • Dual Sim: Όχι
  • Κατασκευαστής: Samsung
  • Πυρήνες: 4
  • HZ: 1300 MHz
  • MEMORY: 1.5GB
  • Εγγύηση: 2 Χρόνια
  • Χρώμα: Άσπρο
Δυνατότητες

 

  • Μηνύματα: Email, Push Mail, IM
  • Λειτ. Σύστημα: Android OS, v4.4 (KitKat)
  • Κάμερα: 5 MP, f/2.2, autofocus, Geo-tagging, Δευτερεύουσα κάμερα: 2 MP, f/2.
  • GPS: Ναι
  • Παιχνίδια: Ναι
  • Ραδιόφωνο: Όχι
Εξτρα Λειτουργίες

 

  • Έξτρα Λειτουργίες: microSD ως 256 GB, Υποστηρίζει Micro-SIM,
Ήχοι

 

  • Ποσότητα Ήχου: Download
  • Τύπος Ήχου: Πολυφωνικοί, MP3 ringtones
  • Δόνηση: Όχι
Μέγεθος Ιντσες

 

  • Πλάτος (χιλιοστά): 149,50
  • Ύψος (χιλιοστά): 241,90
  • Μήκος (χιλιοστά): 8,50
  • Βάρος (γραμμάρια): 490,00
Μεταφορά Δεδομένων

 

  • GPRS: Ναι
  • 3G: Όχι
  • Ασύρματο Δίκτυο: Wi-Fi 802.11 b/g/n, Wi-Fi Direct, Wi-Fi hotspot
  • Υπέρυθρες: Όχι
  • Bluetooth: Ναι, v4.0
  • Έκδοση Bluetooth: v4.0
Μνήμη

 

  • Κάρτα Μνήμης: MicroSD
  • Μνήμη Τηλεφώνου: 8 GB, 1.5 GB RAM
Μπαταρία

 

  • Χρόνος Αναμονής (Ώρες): -
  • Χρόνος Ομιλίας (Λεπτά): 450'
  • Τύπος Μπαταρίας: Non-removable Li-Ion 5000 mAh battery
Οθόνη

 

  • Τύπος Οθόνης: TFT Capacitive Touchscreen, 16M Χρώματα
  • Διάσταση Οθόνης: 800 x 1280 pixels, 9.6"
Τιμή : 159,99 €]]>
16 Thu, 15 Mar 2018 09:18:10 +0000
APPLE used Tablet iPad 4, 9.7" IPS 1GB/16GB, Black, SQ https://quickfix.comtechweb.gr/index.php?option=com_hikashop&ctrl=product&task=show&cid=274&name=apple-used-tablet-ipad-4-9-7-ips-1gb-16gb-black-sq&Itemid=1195&category_pathway=16 https://quickfix.comtechweb.gr/index.php?option=com_hikashop&ctrl=product&task=show&cid=274&name=apple-used-tablet-ipad-4-9-7-ips-1gb-16gb-black-sq&Itemid=1195&category_pathway=16

APPLE used Tablet iPad 4, 9.7" IPS 1GB/16GB, Black, SQ

Supreme Quality:
Άριστο λειτουργικά.
Πολύ καλή εξωτερική εμφάνιση, ενδεχομένως με φθορά φυσιολογικής χρήσης (πιθανή θαμπάδα ή γυαλάδα στο χρώμα).

Τεχνικά Χαρακτηριστικά
OS: iOS 6
Chipset: Apple A6X
CPU: Dual-core 1.4 GHz
GPU: PowerVR SGX554MP4 (quad-core graphics)
Size: 9.7", LED-backlit IPS LCD
Resolution: 1536 x 2048 pixels, 4:3 ratio
RAM: 1GB
Storage: 16GB 
Camera: 5 MP, autofocus
Secondary Camera: 1.2 MP, 720p@ 30fps, face detection
Video: 1080p@ 30fps
Sensors: Accelerometer, gyro, compass
Battery: 11560 mAh Li-Po (42.5 Wh)
WLAN: Wi-Fi 802.11 a/b/g/n, dual-band
Bluetooth: 4.0, A2DP

Κατασκευαστής:
APPLE
Εγγύηση:
6 μήνες
Διαστάσεις Συσκευασίας:
42 x 10 x 26 cm
Βάρος Συσκευασίας:
1.075 Kg
Τύπος συσκευασίας:
Carton box
 
 
Η φωτογραφία είναι ενδεικτική και ενδεχομένως να διαφέρει από το τελικό προϊόν
 
Τιμή : 299,00 €]]>
16 Thu, 15 Mar 2018 09:14:18 +0000
APPLE used Tablet iPad 4, 9.7" IPS 1GB/16GB, Black, FQ https://quickfix.comtechweb.gr/index.php?option=com_hikashop&ctrl=product&task=show&cid=273&name=apple-used-tablet-ipad-4-9-7-ips-1gb-16gb-black-fq&Itemid=1195&category_pathway=16 https://quickfix.comtechweb.gr/index.php?option=com_hikashop&ctrl=product&task=show&cid=273&name=apple-used-tablet-ipad-4-9-7-ips-1gb-16gb-black-fq&Itemid=1195&category_pathway=16

APPLE used Tablet iPad 4, 9.7" IPS 1GB/16GB, Black, FQ

Fine Quality:
Άριστο λειτουργικά. Γρατζουνιές στο Case ή βαθουλώματα. Ενδέχεται να έχει white spot ή καμμένο/α pixel στην οθόνη.

Τεχνικά Χαρακτηριστικά
OS: iOS 6
Chipset: Apple A6X
CPU: Dual-core 1.4 GHz
GPU: PowerVR SGX554MP4 (quad-core graphics)
Size: 9.7", LED-backlit IPS LCD
Resolution: 1536 x 2048 pixels, 4:3 ratio
RAM: 1GB
Storage: 16GB 
Camera: 5 MP, autofocus
Secondary Camera: 1.2 MP, 720p@ 30fps, face detection
Video: 1080p@ 30fps
Bluetooth: 4.0, A2DP
Sensors: Accelerometer, gyro, compass
Battery: 11560 mAh Li-Po (42.5 Wh)

Κατασκευαστής:
APPLE
Εγγύηση:
6 μήνες
Διαστάσεις Συσκευασίας:
42 x 10 x 26 cm
Βάρος Συσκευασίας:
1.075 Kg
Τύπος συσκευασίας:
Carton box
Τιμή : 269,00 €]]>
16 Thu, 15 Mar 2018 09:10:49 +0000