#pagecache
Explore tagged Tumblr posts
Text
Cómo limpiar buffers y ram en linux

Cómo limpiar buffers y ram en linux. Con el paso del tiempo, sobre todo en servidores que siempre están online, notamos que cada vez trabajan más despacio. Es algo normal, pues con el uso los buffers, ram y swap se van llenando. Si trabajamos en una maquina que va muy sobrada de hardware y con pocos usuarios, no debería haber ningún problema. Si nuestro servidor hace un uso intensivo de sus recursos, la cosa cambia. Las caches aceleran la vista de un sitio web al usuario, pero es evidente que sobrecargan el servidor. En este articulo veremos unos comandos que te ayudaran a limpiar el sistema, y que podemos convertir en script bash.
Cómo limpiar buffers y ram en linux
Todos los comandos propuestos se deben ejecutar con permisos root, por ejemplo, si queremos liberar las pagecache ejecutamos lo siguiente. echo 1 > /proc/sys/vm/drop_caches Para liberar inodos y dentries. echo 2 > /proc/sys/vm/drop_caches Para liberar todo lo anterior, pagecaches, inodos y dentries. echo 3 > /proc/sys/vm/drop_caches Un ejemplo de como puedes usar la cadena de comandos al completo: free && sync && echo 3 > /proc/sys/vm/drop_caches && free También es conveniente vaciar la swap, para ello la manera más practica es desactivarla y volverla activar. La swap es una memoria volátil, por tanto desaparece al desactivarla. # Deshabilitar la swap swapoff -a # Habilitar la swap swapon -a Crear un script bash limpiador Ahora creamos un script bash con los comandos anteriores, ademas generamos tiempos de espera entre ellos por si nuestro sistema está un poco sobrecargado. nano limpiar.sh Copia y pega lo siguiente. #limpiar.sh #!/bin/bash echo "" echo "" echo "Comprobando estado de memoria" free echo "OK - Comprobacion completada" echo "" sleep 2s; echo “Limpieza de memoria cache y swap“; echo "" sleep 2s; echo "Deshabilitando HTTP" killall -KILL httpd echo "OK - Http deshabilitado" echo "" sleep 1s; echo "Deshabilitando Swap" swapoff -a echo "OK - Swap deshabilitado" echo "" sleep 2s; echo "Liberando pagecaches, dentries e inodes" sync;sysctl -w vm.drop_caches=3;sync echo "OK - Server liberado" echo "" sleep 3s; echo "Habilitando la Swap" swapon -a echo "OK - Swap habilitado" echo "" sleep 2s; free echo ".....TODO CORRECTO....." echo "" echo "" Guarda el archivo y cierra el editor. Lo puedes ejecutar con el siguiente comando. bash limpiar.sh Como nota final puedes revisar el estado de la memoria, con... cat /proc/meminfo Canales de Telegram: Canal SoloLinux – Canal SoloWordpress Espero que este articulo te sea de utilidad, puedes ayudarnos a mantener el servidor con una donación (paypal), o también colaborar con el simple gesto de compartir nuestros artículos en tu sitio web, blog, foro o redes sociales. Read the full article
#dentries#inodos#limpiarbuffers#limpiarbuffersyram#Linux#pagecache#permisosroot#root#scriptbash#swap#vaciarlaswap
0 notes
Text
How To Check if Customer is logged in or not in Magento 2
Magento 2 is a popular e-commerce platform that provides robust features and flexibility for building online stores. It is the successor to Magento 1 and offers significant improvements in terms of performance, scalability, and user experience. One of the essential functionalities of Magento 2 is its customer login feature. This feature allows customers to create an account and log in to access personalized information, make purchases, track orders, and manage their profiles. By logging in, customers can have a seamless shopping experience with features like saved addresses, payment methods, and order history. Magento 2’s customer login functionality is crucial for businesses as it enhances customer engagement, enables targeted marketing, and promotes repeat purchases.
The ability to check if a customer is logged in holds significant importance in an e-commerce environment. By knowing whether a customer is logged in or not, businesses can provide a personalized experience tailored to their specific needs. For example, if a customer is logged in, the website can display personalized recommendations based on their browsing and purchase history, which increases the chances of cross-selling and upselling. Additionally, by identifying logged-in customers, businesses can offer exclusive deals, loyalty rewards, and discounts, encouraging customer loyalty and repeat purchases.
Methods to Check if Customer is logged in or not in Magento 2
<?php namespace Vendor\Extension\Controller\Customer; use Magento\Framework\App\Action\Action; use Magento\Framework\App\Action\Context; use Magento\Customer\Model\Session; use Magento\Framework\App\Http\Context as AuthContext; class Index extends Action { private $customerSession; private $authContext; public function __construct(Context $context, Session $session, AuthContext $authContext) { $this->customerSession = $session; $this->authContext = $authContext; parent::__construct($context); } public function execute() { if ($this->customerSession->isLoggedIn()) { // customer login code } else { // customer is not login } $isLoggedIn = $this->authContext->getValue(\Magento\Customer\Model\Context::CONTEXT_AUTH); if ($isLoggedIn) { } } }
Please note that when the PageCache module is enabled, which is typically the case in production environments, the customer session is cleared as soon as layout generation begins. This is due to the \Magento\PageCache\Model\Layout\DepersonalizePlugin::afterGenerateXml method on all cacheable pages. Although the HTTP context might still indicate that the customer is logged in, the customer data will no longer be accessible in the customer session. Therefore, it is crucial to double-check and verify the availability of customer data before attempting to access it, especially when working with blocks. This situation is less likely to occur in action controllers since the layout generation is typically handled automatically after the controller returns an instance of ResultInterface. More Info: https://www.evrig.com/blog/check-if-customer-is-logged-in-or-not-in-magento-2/
0 notes
Text
Cómo borrar el caché de memoria RAM, el búfer y la Swap en Linux
Hoy veremos como podemos hacer para liberar los recursos, puntualmente de memoria ram, temas de búfer y swap, dado que a veces algunas aplicaciones pueden consumir todo pero no la liberan. 1. Limpiar solo la PageCache. sync; echo 1 > /proc/sys/vm/drop_caches 2. Liberar dentries e inodos. sync; echo 2 > /proc/sys/vm/drop_caches 3. Limpiar pagecache, dentries, e inodos. sync; echo 3 >…
View On WordPress
0 notes
Text
Clear memory cache linux
Free pagecache: sync; echo 1 > /proc/sys/vm/drop_caches Free dentries and inodes: sync; echo 2 > /proc/sys/vm/drop_caches Free pagecache, dentries and inodes: sync; echo 3 > /proc/sys/vm/drop_caches
0 notes
Text
Hướng dẫn dọn dẹp cache, buffer và swap memory trong Linux
Tương tự như các hệ điều hành khác, Linux cũng được triển khai một cơ chế quản lý bộ nhớ khá hiệu quả và thậm chí còn nhiều hơn thế nữa. Nhưng nếu như có bất kỳ process nào đang sử dụng quá nhiều bộ nhớ và bạn muốn dọn dẹp bớt đi, Linux cung cấp cho bạn một cách khá hiệu quả để dọn dẹp ram cache.
Hướng dẫn dọn dẹp RAM cache
Đối với mọi bản phân phối Linux nào cũng đều có 3 cơ chế dọn dẹp cache mà không gây ra ngắt bất kỳ process hay service nào.
1. Chỉ dọn dẹp PageCache
sync; echo 1 > /proc/sys/vm/drop_caches
2. Chỉ dọn dẹp dentries và inodes
sync; echo 2 > /proc/sys/vm/drop_caches
3. Dọn dẹp luôn cả PageCache, Dentries và Inodes
sync; echo 3 > /proc/sys/vm/drop_caches
Và ở đây mình sẽ giải thích các câu lệnh bên trên
sync: là lệnh sẽ flush buffer file system. Các câu lệnh được phân tách nhau bằng ký tự “;” để chạy tuần tự . Shell sẽ chờ lệnh này được kết thúc trước khi thực hiện lệnh tiếp theo một cách tuần tự. Như trong tài liệu về kernel, việc ghi vào drop_cache sẽ dọn dẹp cache mà không hề kill bất kỳ process hay ứng dụng dịch vụ nào cả. Do đó sử dụng lệnh echo để thực hiện việc ghi file.
Nếu bạn phải dọn dẹp disk cache, lệnh đầu tiên là an toàn nhất trong các hệ thống sản phẩm doanh nghiệp, vì “echo 1>” sẽ chỉ dọn dẹp PageCache thôi. Và mình sẽ không khuyến khích bạn chạy các lệnh echo 2 hay echo 3 nếu như bạn vẫn chưa hiểu rõ tác dụng của nó là gì. Vì như lệnh echo 3, nó sẽ dọn dẹp Pageche, Dentries và Inodes.
Vậy, có nên giải phóng Cache và Buffer được sử dụng bởi Linux Kernel?
Khi bạn thử áp dụng các thiết lập cài đặt khác nhau và muốn kiểm tra thử (benchmark) hệ thống của mình xem việc sử dụng tài nguyên như thế nào, lúc này bạn mới nên dọn dọn buffer cache. Bạn có thể drop cache như mình đã giải thích bên trên mà không phải khởi động lại hệ thống – nghĩa là không có downtime.
Linux được thiết kế theo cách perfect, trong đó trước kiểm tra disk cache trước đã, sau đó nó mới dòm ngó sang disk. Nếu như nó tìm thấy có tài nguyên cần lấy nằm trên cache, thì nó sẽ không đụng đến disk. Nếu như chúng ta dọn dẹp cache, disk cache sẽ kém hữu ích hơn – vì OS sẽ tìm kiếm tài nguyên trên disk.
Bây giờ, mình sẽ viết một đoạn script thực hiện công việc tự động dọn dẹp cache hàng ngày vào buổi sáng lúc 9h. Tạo một đoạn script với tên file delete_cahe và thêm các dòng sau đây vào file:
#!/bin/bash use "echo 1" echo "echo 3 > /proc/sys/vm/drop_caches"
Cấp quyền thực thi cho file này bằng cách chạy lệnh sau
chmod +x delete_cache
Bây giờ, mình đã có thể dọn dẹp RAM cache bất cứ lúc nào mình muốn bằng cách chạy đoạn script ở trên.
Để thiết lập cronjob lập lịch dọn dẹp RAM cache vào lúc 9h sáng mỗi ngày. Mở file crontab để chỉnh sửa:
crontab -e
Thêm dòng sau vào cuối file và sau đó lưu lại
0 9 * * * /opt/delete_cache
Trong đó: /opt/delete_cache là đường dẫn tới file script
Liệu đây có phải là ý tưởng hay để dọn dẹp RAM cache trên các server production không?
Chắc chắn là không rồi! Giả sử trong trường hợp khi bạn lập lịch chạy script dọn dẹp ram cache mỗi ngày lúc 9 giờ sáng. Giả sử vào một ngày đẹp trời nào đó, có một lượng lớn người dùng truy cập vào website của bạn và truy cập sử dụng tài nguyên từ server của bạn.
Tại cùng thời điểm đoạn script dọn dẹp RAM cache và xóa hết mọi thứ trong RAM. Lúc này, tất cả dữ liệu người dùng sử dụng đều phải nạp từ disk ra. Sẽ dẫn đến kết quả crash hoặc corupt database. Do đó, hãy cân nhắc xem bạn nên dọn dẹp RAM cache lúc nào trước khi thực hiện là hợp lý nhất.
Hướng dẫn dọn dẹp Swap Space trên Linux
Nếu bạn muốn dọn dẹp Swap Space, có thể bạn sẽ phải sử dụng lệnh sau:
swapoff -a && swapon -a
Bạn cũng có thể nhét dòng lệnh trên vào đoạn script để chạy – chỉ sau khi bạn đã hiểu rõ về các rủi ro liên quan.
Bây giờ, mình sẽ kết hợp các dòng lệnh trên vào thành một để dọn dẹp RAM cache và Swap Space.
echo 3 > /proc/sys/vm/drop_caches && swapoff -a && swapon -a && printf '\n%s\n' 'Ram-cache and Swap Cleared'
Hoặc
$ su -c "echo 3 >'/proc/sys/vm/drop_caches' && swapoff -a && swapon -a && printf '\n%s\n' 'Ram-cache and Swap Cleared'" root
Sau khi thực hiện câu lệnh trên, mình sẽ chạy lệnh “free -h” trước khi chạy đoạn script để kiểm tra xem đoạn script có chạy đúng theo như mong muốn hay không.
The post Hướng dẫn dọn dẹp cache, buffer và swap memory trong Linux appeared first on VSUDO Blog.
source https://vsudo.net/blog/clean-cache-buffer-swap-memory.html
0 notes
Text
千億級數據量的Kafka深度實踐
本文由 dbaplus 社群授權轉載。
一、消息隊列選型
當時主要考慮以下幾個維度:社區活躍度,客戶端支持,吞吐量。對比幾個系統下來,覺得Kafka比較符合我們的要求。現在有一個新的開源系統pulsar,我覺得也可以嘗試一下。
1、Kafka設計上的亮點
Kafka性能和吞吐都很高,通過sendfile和pagecache來實現zero copy機制,順序讀寫的特性使得用普通磁盤就可以做到很大的吞吐,相對來說性價比比較高。
Kafka通過replica和isr機制來保證數據的高可用。
Kafka集群有兩個管理角色:controller主要是做集群的管理;coordinator主要做業務級別的管理。這兩種角色都由Kafka裡面的某個broker來擔任,這樣failover就很簡單,只需要選一個broker來替代即可,從這個角度來說Kafka有一個去中心化的設計思想在裡面, …
from 千億級數據量的Kafka深度實踐 via KKNEWS
0 notes
Text
TOP 10 MAGENTO 2 ADVANCED EXTENSIONS SHOULD HAVE
Magento is one of the most powerful leading ecommerce platforms nowadays. Store owners use Magento to make sure that their customers have convenient and quick online shopping experiences, but with the usage of extensions, you can extend the functionality of your Magento site and make it more powerful and efficient. In this article, there is a list of some of the most common free Magento extensions that will help you improve your Magento store effectively.
1. Catalog Search Refinement FREE
Catalog Search Refinement, by Activo Extensions, refines your store’s search capability, as suggested by the name. Basically, when customers use multiple terms in the Magento search bar, the products listed do not take into consideration the link between the terms and the result may be irrelevant. With this extension, your store will be smartly displayed with those relevant products containing all of the search terms. For instance, if a customer searches for ‘white umbrella’, they will find white-colored umbrellas instead of items that are only ‘white’ or ‘umbrella’. Source
2. Speedster by Fooman
If your website suffers from slow speed, Fooman Speedster will save your day. This free Magento extension combines multiple Javascript and CSS files into one JS and CSS file with gzip support which reduced slow load on the website. Speedster reduces the total file sizes and HTTP requests for empty caches, all of which then results in speedy and rapid performance of your Magento store.
Source
3. Sidebar Navigation Menu Professional
The Sidebar Navigation Menu Professional extension provides a vertical collapsible navigation menu to your store’s sidebar columns. The extension also implies thumbnail icons for categories. SNMP has flexible configuration settings with almost 30 options to control over your website’s navigation.
4. jQuery Lightboxes
This extension is a collection of jQuery Lightboxes which includes PiroBox, FancyBox, PiroBox Extended, Lightbox Clone, and prettyPhoto. It provides you a plenty of options that allow you to custom size your important and thumbnail image, remove default zoom bar and more.
Source
5. Easy Lightbox 2.0
Easy Lightbox displays your product image in a proper lightbox window which helps your customers get a better look of your products. The extension helps you to customize your product thumbnail, lightbox window, and main image size.
6. Banner Slider by MageStore
The Banner Slider is a free Magento extension that displays your website’s images to effectively capture your visitor’s attention. There are 36 positions can be used and several other effects to display your slides. Owners can simply create banners with as much information and assign an order of appearance for images on a slider.
7. Facebook Connect and Like
Facebook Connect and Like allows your customers to register to your store through their Facebook accounts and enables the Like feature on every store page. You can customize the login button design to match your website’s theme and also insert an image in the login button field.
8. Free Banners Slideshow
The Free Banners Slideshow extension helps users to add and monitor banners with ease from the frontend in an image slider. The extension offers a number of configurable options such as banner resizing, transition effects, autoplay settings and other options to enhance the banner display.
9. Responsive Custom Menu
Responsive Custom Menu allows you to customize your website’s top menu drop downs and make them responsive. RCM enables you to display all subcategories of your menu at once and you can also easily customize the number of columns in the drop down.
10. PageCache
PageCache, integrated with Varnish Cache, helps your online store faster loading speed and response times. You can purge requests for content types and single stores from your website’s backend through the PageCache module. It also prevents customer information caching such as logins or shopping carts. There are more numberous free Magento extensions, each of them has its own features and beneficial aspects. It’s a wise choice to take full advantages of them and start improving your Magento store effectively.
Bài viết TOP 10 MAGENTO 2 ADVANCED EXTENSIONS SHOULD HAVE đã xuất hiện đầu tiên vào ngày Cowell Asia.
source https://co-well.vn/en/tech-blog/top-10-magento-2-advanced-extensions-should-have/
0 notes
Link
Article URL: https://lkml.org/lkml/2019/6/14/127
Comments URL: https://news.ycombinator.com/item?id=20313275
Points: 4
# Comments: 0
0 notes
Text
Guest page caching
So I have this in my config already: $config['cache']['enabled'] = true; $config['cache']['provider'] = 'Redis'; $config['cache']['config'] = [ 'host' => '127.0.0.1', 'password' => 'Boobs!' ]; Do I just need to simply add this in the end? $config['pageCache']['enabled'] = true; Continue reading...
source https://xenforoleaks.com/index.php?threads/guest-page-caching.2138/
0 notes
Text
New Post has been published on Themesparadise
New Post has been published on https://themesparadise.com/megatron-megaflexible-responsive-magento-theme/
MegaTron - Megaflexible Responsive Magento Theme
Check out MyShop Magento theme.
1.9.3 Compatible! VIP, LUXURY, POWERFUL, MODERN, FAST, EASY IN USE, CREATIVE – we don’t have enough words to describe our new magento Megatron theme. We have spent more than 6 monthes on its creation. MEGATRON is the latest HTML/ CSS technology and tricks, ecommerce synergy based on the hottest trends. This is the most flexible magento theme ever seen, we have put there all our development experience. Don’t hesitate – BUY IT!
GENERAL FEATURES
Fully responsive 100%. You can enable/disable responsive mode
Retina Ready. Optimizied images, icon font
Html5, CSS3
Blog ready
Real Transformer which will allow to control every pixel. Unlimited colours, backgrounds, textures, fonts etc.
Well structured and refactored code with usefull comments. No core files changed
Multilanguage support
One page checkout (default magento feature)
Ebay / Amazon integration ready
RTL support
Live chat ready
Rich snippets ready (you should buy this module separately from the theme)
Varnish PageCache compatible
MultiStore ready. You can save and configure predefined schemes and your own layouts
Fluid grid system base on Bootstrap framework
Included psd and html version
One click install including sample data
Already integrated most popular and useful magentoconnect extensions
Catalogue mode (without prices, buy now buttons, registration etc.)
Ajax add to cart, add to wishlist/compare, toolbar paging/sort. You can enable/disable this feature.
Google fonts
SEO Friendly Design and Layout Structure. Compatible with all Magento SEO features
Cross browser compatibility ((Chrome, Safari, Firefox, IE 9 +))
Icon animation (css3) on/off
Added cross sell products in shopping cart on/off
Product short attributes in hover preview (on/off)
Quick view option
Discount labels on sale products on/off
Count of products in categories menu
LAYOUT
8 predefined (different structures) layouts. Default, Creative, Background, Corporate, Left Column, Kids, Electronics, Foods
2 mega menu variants. You can adjust the number of columns.
Admin panel that will allow you to create/save different structure layouts.
Custom logout, checkout, 404 pages
Footer static/enable/disable modes
HOME PAGE
4 header variants including different sliders type (Revolution, Megatron custom, Simple)
Bestsellers, New, On Sale sliders in different views
Custom html blocks which can be simply edited with Magento editor
“New” and “Sale” badges
social widgets (Facebook, Twitter)
hide footer option
right vertical side bar
product hover choice option (hover or detailed view with the previews)
Fullwidth / boxed slider
Multistore sliders
Compare button @ home page
LISTING PAGE
Isotope product listing
Image slider option for each category
3,4,5,6 products per row
Setup sidebar (enable/disable). All blocks are sortable. You can enable/disable any block via admin panel
PRODUCT PAGE
Product color swatch ready
big/small product view
video option (just insert youtube url)
choice between cloudzoom (advanced payed + FREE), lightbox for big previews
related product slider turn on/off option
social bookmarks
custom html block, tab
Up-sell Products slider
Previous & Next functionality with the previews
You will get premium support using our support forum – http://etheme.tonytemplates.com/forum/ Please, don’t submit questions in the comments section. Our dedicated support can help you only using our support forum. Presale questions are without registration. Our support is available 10.00 – 20.00 GMT + 2 (Monday – Friday). We usually get back to you within 24 hours (except holiday seasons which might take longer).
84-pages user guide
PDF format
Updates
Version 1.5.0, 11 February
ADDED:reviews count in product page ADDED:Be the first to review this product in product view FIXED:Facebook fanbox FIXED:CSS refresh
Version 1.4.7, 22 December
FIXED:revolution slider errows in IE FIXED:Changed admin routers after Installing Security Patch Supee 6788
Version 1.4.6, 10 December
ADDED:fancybox popup in product page if cloudzoom disabled ADDED:footer logo for different stores ADDED:fancybox popup in product page if cloudzoom disabled_2 ADDED:added new facebook fan box ADDED:New Simple Slider with Banners FIXED:free cloudzoom in subthemes FIXED:rtl minor issues FIXED:free cloudzoom in rtl FIXED:gallery compatibility with magento 1.9.2.2
Version 1.4.5, 6 November
FIXED:registration in magento 1.9.2.2
Version 1.4.4, 6 November
ADDED:compatibility 1.9.2.2
Version 1.4.3, 20 October
ADDED:product images for grouped products FIXED:home page social popups FIXED:megamenu on small desctops
Version 1.4.2, 10 September
FIXED: Disappear quick basket on small resolutions (vertical position)
Version 1.4.1, 14 August
Minnor fixes
Version 1.4.0, 1 August
! ADDED: colors swatches FIXED: horizontal scroll on devices FIXED: quick view popup FIXED:buttons on product rollover move to left in RTL FIXED:mobile popup menu in RTL FIXED:removed second price on product page REMOVED:inline quick view style REMOVED:delete item in topcart
Version 1.3.4, 9 June
FIXED: 3columns layout FIXED: configurable swatches and product page fixed in electronic theme, kids, food FIXED: mobile menu in rtl version FIXED: php notice if free cloudzoom enabled
Version 1.3.3, 19 May
FIXED: replaced megatron-template.css
Version 1.3.2, 17 May
FIXED: account/wishlist count of products was only 3 FIXED: simple mobile slider FIXED: style for links in site map FIXED: megamenu was in two rows
Version 1.3.1, 5 May
- added Custom CSS multi-view - added Simple slider for devices - fixed RTL Mode - fixed Navbar mobile view weird jump - removed 'gdfdhjf' in mobile - fixed absent cart with sample data 1.9
Version 1.3.0, 31 December
- added default magento free cloudzoom - added new Revolution advanced slider - added support configurable swatches
Version 1.2.2, 1 November
hot fixes
- CloudZoom free fixed - RTL fixed - minor fixes
Version 1.2.1, 28 October
hot fixes
- 'cloudzoom_free' variable bug - js slider error
Version 1.2.0, 22 October
Fixed:
- font size bug - wordpress blog grid bug (grid mode can be only without right/left column in blog) -megamenu bug - rtl fixed - ssl addto cart on product page - pager not visible on mobile -left previews with free cloudzoom -product image disabled in mobile if main image excluded -logo retina -mobile category ( products before other blocks )
Added:
- option disable the page load animation - Compatibility with AMASTY SEARCH ext. (you should purchase extension separately) - Compatibility with AMASTY SOCIAL LOGIN ext. (you should purchase extension separately) - Compatibility with AMASTY COLOR SWATCH ext. (you should purchase extension separately)
Version 1.1.1, 14 October
- fix horizontal scroll issue on mobile
Version 1.1.0, 2 September
Fixed
-qr code enable/disable in quick view fixed -ssl add to cart and quicjk view bug -shopping cart Continue shopping fixed -clear comparation list -fixed blank screen when category created -footer fixed -product info full width -'{"status":"SUCCESS","message": in cart' removed -2checkout ext. conflict -product name coded in H1 tags. - change + fixed bg -simple menu and advanced header together -fixed width of labels -Calogue mode activated but account display on smartphone
Added
-kids layout -electronics layout -food layout -added to admin documentation section 'How Enable new sub-themes', 'How set columns for pages/categories?', 'How create info pages like in demo?' -enable / disable price bg in product info -ability change bg image for recent posts in admin panel -contact link in topmenu -enable / disable discount lable -for megamenu added event hover -for advanced search added animation on hover event
Version 1.0.1, 5 August
- fixed change color option - fixed change font option
Version 1.0.0, 18 July
- initial release
Extensions:
Rich Snippet feature based on Schema.org extension (commercial – you should purchase it separately). More info
PageCache powered by Varnish extension (free). More info
Premium Cloud Zoom (commercial – you should purchase it separately). – More info
Images
http://www.bigstockphoto.com/image-38536555/stock-photo-sexy-girl http://www.bigstockphoto.com/image-8242163/stock-photo-four-young-sexy-pole-dance-women http://www.bigstockphoto.com/image-48427574/stock-photo-sexy-woman-in-hot-lingerie-and-leather-jacket-posing-glamorous-against-grunge-wall http://www.bigstockphoto.com/image-44034322/stock-photo-two-sexy-women-wearing-mini-skirts http://www.bigstockphoto.com/image-12361223/stock-photo-food-for-a-balanced-diet-in-the-form-of-circle-isolated-on-white http://www.bigstockphoto.com/image-47947739/stock-photo-row-of-multiethnic-babies-sitting-side-by-side-looking-away-isolated-on-gray-background http://www.bigstockphoto.com/image-46044118/stock-photo-attractive-young-brunette-beauty-relaxing-in-bright-room
IMPORTANT * Images from demo are not included in theme files.
Purchase Now
0 notes
Text
PageCache powered by Varnish (Magento Enterprise Edition)
http://dlvr.it/PwwVBR
0 notes
Text
PageCache powered by Varnish (Magento Enterprise Edition)
http://dlvr.it/P95V4p
0 notes
Text
New Post has been published on Themesparadise
New Post has been published on http://themesparadise.com/megatron-megaflexible-responsive-magento-theme/
MegaTron - Megaflexible Responsive Magento Theme
1.9.3 Compatible!
VIP, LUXURY, POWERFUL, MODERN, FAST, EASY IN USE, CREATIVE – we don’t have enough words to describe our new magento Megatron theme. We have spent more than 6 monthes on its creation. MEGATRON is the latest HTML/ CSS technology and tricks, ecommerce synergy based on the hottest trends. This is the most flexible magento theme ever seen, we have put there all our development experience. Don’t hesitate – BUY IT!
GENERAL FEATURES
Fully responsive 100%. You can enable/disable responsive mode
Retina Ready. Optimizied images, icon font
Html5, CSS3
Blog ready
Real Transformer which will allow to control every pixel. Unlimited colours, backgrounds, textures, fonts etc.
Well structured and refactored code with usefull comments. No core files changed
Multilanguage support
One page checkout (default magento feature)
Ebay / Amazon integration ready
RTL support
Live chat ready
Rich snippets ready (you should buy this module separately from the theme)
Varnish PageCache compatible
MultiStore ready. You can save and configure predefined schemes and your own layouts
Fluid grid system base on Bootstrap framework
Included psd and html version
One click install including sample data
Already integrated most popular and useful magentoconnect extensions
Catalogue mode (without prices, buy now buttons, registration etc.)
Ajax add to cart, add to wishlist/compare, toolbar paging/sort. You can enable/disable this feature.
Google fonts
SEO Friendly Design and Layout Structure. Compatible with all Magento SEO features
Cross browser compatibility ((Chrome, Safari, Firefox, IE 9 +))
Icon animation (css3) on/off
Added cross sell products in shopping cart on/off
Product short attributes in hover preview (on/off)
Quick view option
Discount labels on sale products on/off
Count of products in categories menu
LAYOUT
8 predefined (different structures) layouts. Default, Creative, Background, Corporate, Left Column, Kids, Electronics, Foods
2 mega menu variants. You can adjust the number of columns.
Admin panel that will allow you to create/save different structure layouts.
Custom logout, checkout, 404 pages
Footer static/enable/disable modes
HOME PAGE
4 header variants including different sliders type (Revolution, Megatron custom, Simple)
Bestsellers, New, On Sale sliders in different views
Custom html blocks which can be simply edited with Magento editor
“New” and “Sale” badges
social widgets (Facebook, Twitter)
hide footer option
right vertical side bar
product hover choice option (hover or detailed view with the previews)
Fullwidth / boxed slider
Multistore sliders
Compare button @ home page
LISTING PAGE
Isotope product listing
Image slider option for each category
3,4,5,6 products per row
Setup sidebar (enable/disable). All blocks are sortable. You can enable/disable any block via admin panel
PRODUCT PAGE
Product color swatch ready
big/small product view
video option (just insert youtube url)
choice between cloudzoom (advanced payed + FREE), lightbox for big previews
related product slider turn on/off option
social bookmarks
custom html block, tab
Up-sell Products slider
Previous & Next functionality with the previews
You will get premium support using our support forum – http://etheme.tonytemplates.com/forum/ Please, don’t submit questions in the comments section. Our dedicated support can help you only using our support forum. Presale questions are without registration. Our support is available 10.00 – 20.00 GMT + 2 (Monday – Friday). We usually get back to you within 24 hours (except holiday seasons which might take longer).
84-pages user guide
PDF format
Updates
Version 1.5.0, 11 February
ADDED:reviews count in product page ADDED:Be the first to review this product in product view FIXED:Facebook fanbox FIXED:CSS refresh
Version 1.4.7, 22 December
FIXED:revolution slider errows in IE FIXED:Changed admin routers after Installing Security Patch Supee 6788
Version 1.4.6, 10 December
ADDED:fancybox popup in product page if cloudzoom disabled ADDED:footer logo for different stores ADDED:fancybox popup in product page if cloudzoom disabled_2 ADDED:added new facebook fan box ADDED:New Simple Slider with Banners FIXED:free cloudzoom in subthemes FIXED:rtl minor issues FIXED:free cloudzoom in rtl FIXED:gallery compatibility with magento 1.9.2.2
Version 1.4.5, 6 November
FIXED:registration in magento 1.9.2.2
Version 1.4.4, 6 November
ADDED:compatibility 1.9.2.2
Version 1.4.3, 20 October
ADDED:product images for grouped products FIXED:home page social popups FIXED:megamenu on small desctops
Version 1.4.2, 10 September
FIXED: Disappear quick basket on small resolutions (vertical position)
Version 1.4.1, 14 August
Minnor fixes
Version 1.4.0, 1 August
! ADDED: colors swatches FIXED: horizontal scroll on devices FIXED: quick view popup FIXED:buttons on product rollover move to left in RTL FIXED:mobile popup menu in RTL FIXED:removed second price on product page REMOVED:inline quick view style REMOVED:delete item in topcart
Version 1.3.4, 9 June
FIXED: 3columns layout FIXED: configurable swatches and product page fixed in electronic theme, kids, food FIXED: mobile menu in rtl version FIXED: php notice if free cloudzoom enabled
Version 1.3.3, 19 May
FIXED: replaced megatron-template.css
Version 1.3.2, 17 May
FIXED: account/wishlist count of products was only 3 FIXED: simple mobile slider FIXED: style for links in site map FIXED: megamenu was in two rows
Version 1.3.1, 5 May
- added Custom CSS multi-view - added Simple slider for devices - fixed RTL Mode - fixed Navbar mobile view weird jump - removed 'gdfdhjf' in mobile - fixed absent cart with sample data 1.9
Version 1.3.0, 31 December
- added default magento free cloudzoom - added new Revolution advanced slider - added support configurable swatches
Version 1.2.2, 1 November
hot fixes
- CloudZoom free fixed - RTL fixed - minor fixes
Version 1.2.1, 28 October
hot fixes
- 'cloudzoom_free' variable bug - js slider error
Version 1.2.0, 22 October
Fixed:
- font size bug - wordpress blog grid bug (grid mode can be only without right/left column in blog) -megamenu bug - rtl fixed - ssl addto cart on product page - pager not visible on mobile -left previews with free cloudzoom -product image disabled in mobile if main image excluded -logo retina -mobile category ( products before other blocks )
Added:
- option disable the page load animation - Compatibility with AMASTY SEARCH ext. (you should purchase extension separately) - Compatibility with AMASTY SOCIAL LOGIN ext. (you should purchase extension separately) - Compatibility with AMASTY COLOR SWATCH ext. (you should purchase extension separately)
Version 1.1.1, 14 October
- fix horizontal scroll issue on mobile
Version 1.1.0, 2 September
Fixed
-qr code enable/disable in quick view fixed -ssl add to cart and quicjk view bug -shopping cart Continue shopping fixed -clear comparation list -fixed blank screen when category created -footer fixed -product info full width -'{"status":"SUCCESS","message": in cart' removed -2checkout ext. conflict -product name coded in H1 tags. - change + fixed bg -simple menu and advanced header together -fixed width of labels -Calogue mode activated but account display on smartphone
Added
-kids layout -electronics layout -food layout -added to admin documentation section 'How Enable new sub-themes', 'How set columns for pages/categories?', 'How create info pages like in demo?' -enable / disable price bg in product info -ability change bg image for recent posts in admin panel -contact link in topmenu -enable / disable discount lable -for megamenu added event hover -for advanced search added animation on hover event
Version 1.0.1, 5 August
- fixed change color option - fixed change font option
Version 1.0.0, 18 July
- initial release
Extensions:
Rich Snippet feature based on Schema.org extension (commercial – you should purchase it separately). More info
PageCache powered by Varnish extension (free). More info
Premium Cloud Zoom (commercial – you should purchase it separately). – More info
Images
http://www.bigstockphoto.com/image-38536555/stock-photo-sexy-girl http://www.bigstockphoto.com/image-8242163/stock-photo-four-young-sexy-pole-dance-women http://www.bigstockphoto.com/image-48427574/stock-photo-sexy-woman-in-hot-lingerie-and-leather-jacket-posing-glamorous-against-grunge-wall http://www.bigstockphoto.com/image-44034322/stock-photo-two-sexy-women-wearing-mini-skirts http://www.bigstockphoto.com/image-12361223/stock-photo-food-for-a-balanced-diet-in-the-form-of-circle-isolated-on-white http://www.bigstockphoto.com/image-47947739/stock-photo-row-of-multiethnic-babies-sitting-side-by-side-looking-away-isolated-on-gray-background http://www.bigstockphoto.com/image-46044118/stock-photo-attractive-young-brunette-beauty-relaxing-in-bright-room
IMPORTANT * Images from demo are not included in theme files.
Purchase Now
0 notes