17 May, 2024
A key idea in software development is the singleton design pattern, which offers a straightforward method of guaranteeing a class has a single instance and a global access point. This…
Within the profession of software engineering, design patterns are essential resources that help architects as well as developers effectively address common issues. The Factory Design Pattern is one such pattern…
Ensuring that your Laravel application’s backend is secure is crucial in the modern API-driven environment. An appealing solution that provides a simple method for API permission and authentication is Laravel…
Docker containers are used in the Laravel Sail development environment for Laravel applications. It offers a practical and standardized method for configuring and overseeing your Laravel applications, guaranteeing a smooth…
Docker, which makes it possible to create and run applications in separate containers, has grown to be a vital tool for system administrators and developers. In order to take advantage…

How to use Banner Slider in Magento

I am showing you to use banner slider extension in magento. It’s really very simple.After installation, please go to CMS >> Manage Page, choose your cms homepage, and add following line of code to where you want to show banner slider. {{block type=’bannerslider/bannerslider’ template=’bannerslider/bannerslider.phtml’}}   After set this line of code, we have to upload […]

Share your Love
1 min read

Magento add manufacturer

–> To add manufacture attributes Login to admin panel goto Catalog >> Attributes >> Manage Attributes from the list of pages. Select Manufacture Attributes, and you can set Manufactures form there. Manufacturer attribute should be assigned to a product attribute. If Magento manufacturer attribute is created, we can add new manufactures name. For Logo Make […]

Share your Love
1 min read

Magento Show Product On Home Page

There are so many ways to show products on our Magento home page. Login to admin panel goto CMS >> Manage Pages >> Home Page from the list of pages. New Products Use below code to show “new Products” on our front page {{block type=”catalog/product_new” name=”home.catalog.product.new” alias=”product_homepage” template=”catalog/product/new.phtml”}} For All Products Login to admin panel […]

Share your Love
1 min read

MySQL PHPMyAdmin: Increase Upload Limit

MySQL PHPMyAdmin is a popular web-based database management tool that allows users to interact with MySQL databases through a user-friendly interface. While PHPMyAdmin is a versatile tool, it does come with certain limitations, one of which is the default upload limit for importing databases. In this article, we will guide you on how to increase […]

Share your Love
2 mins read

Power full way to Restart Apache2 server in Ubuntu

Restarting the Apache2 server is a regular procedure when operating an Ubuntu web server that could be required following updates or configuration changes. This tutorial will show you how to use the systemctl or service command to restart the Apache2 server on Ubuntu. Using systemctl to Restart Apache2 For Ubuntu 16.04 and later, use the […]

Share your Love
1 min read

Enabling Ubuntu Apache Htaccess Files

To make .htaccess files work as expected, you need to edit this file: /etc/apache2/sites-available/default Look for a section that looks like this: <Directory />    Options FollowSymLinks    AllowOverride None</Directory><Directory /var/www/>    Options Indexes FollowSymLinks MultiViews    AllowOverride None    Order allow,deny    allow from all</Directory> To <Directory />    Options FollowSymLinks    AllowOverride all</Directory><Directory /var/www/>    Options Indexes FollowSymLinks MultiViews    AllowOverride all    Order […]

Share your Love
1 min read

Magento theam blocks and layouts details

Here are some description of tools we need to remember to be a successful design in Magento Structural Blocks Content Blocks Layout         Structural Blocks This blocks are using for the assigning visual structure of a page such as header, left column, main column and footer. Content Blocks These blocks are showing the actual content […]

Share your Love
1 min read