Xampp Warning: Module ‘openssl’ already loaded in line 0
April 24, 2019
The warning “Module ‘openssl’ already loaded in line 0” is a common issue encountered by XAMPP users, signaling that the OpenSSL module is being loaded… Read More →
April 24, 2019
The warning “Module ‘openssl’ already loaded in line 0” is a common issue encountered by XAMPP users, signaling that the OpenSSL module is being loaded… Read More →
April 24, 2019
After installtion magento 2 you can see a error like MIME type not supported. To fix this: Use 2 comment: php bin/magento setup:static-content:deploy -f -s… Read More →
Mastering the use of widgets is a fundamental skill for any WordPress user, and the footer area represents prime digital real estate. Unlike static content,… Read More →
January 19, 2019
WordPress is a popular content management system used to build websites of all kinds. It provides a user-friendly interface and a wide range of features… Read More →
Put the following code at the top on style.css /* Theme Name: your theme name Theme URI: https://wordpress.org/themes/twentyseventeen/ Author: the WordPress team Author URI: https://wordpress.org/… Read More →
December 10, 2017
Install ‘Varnish’ On Debian and Ubuntu aptitude update && aptitude install varnish On RHEL, CentOS and Fedora yum update && yum install varnish Enter the… Read More →
November 2, 2017
You can follow the code : <?php ob_start(); ini_set(‘max_execution_time’, 0); set_time_limit(0); ignore_user_abort(true); require_once ‘/chroot/home/powerme1/powermedicalsupplies.com/html/app/Mage.php’; Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID); $_write = Mage::getSingleton(‘core/resource’)->getConnection(‘core_write’); $_read = Mage::getSingleton(‘core/resource’)->getConnection(‘core_read’); $collection = Mage::getModel(‘catalog/product’)->getCollection()->addAttributeToFilter(‘attribute_set_id’,9)->addAttributeToFilter(‘brand’, array(‘eq’… Read More →
October 26, 2017
Here you just need bellow code for get list page product limit range get. $allowedValues = Mage::getStoreConfig(‘catalog/frontend/grid_per_page_values’); $grid_per_page_values = explode(“,”, $allowedValues); foreach($grid_per_page_values as $gridperpage){ echo… Read More →