05 May, 2024

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