By gnanaguru, 22 December, 2022

Google Analytics is a web analytics service offered by Google that tracks and reports website traffic.

There are numeros plugins available to insert Google Analytics code in the WordPress website. Here we are going to see that how Google Analytics script can be added via WordPress hooks.

WordPress hooks allow developers to change or extend WordPress' functionality without needing to edit the WordPress core code itself.

Tags

By gnanaguru, 22 December, 2022

Google Analytics is a web analytics service offered by Google that tracks and reports website traffic.

There are numeros plugins available to insert Google Analytics code in the WordPress website. Here we are going to see that how Google Analytics script can be added via WordPress hooks.

WordPress hooks allow developers to change or extend WordPress' functionality without needing to edit the WordPress core code itself.

Tags

By gnanaguru, 20 September, 2022

You may got error while installing new module via drush

for example:

When you try to install devel and devel_kint_module or any other module, will be getting similar error

Configuration objects(system.menu.devel) provided by devel already exist in active configuration.

Here is the solution to overcome this issue

drush config-delete <configuration object you wanted to delete>

In my case, I need to delete system.menu.devel.

drush config-delete system.menu.devel

By gnanaguru, 25 August, 2022

WinSCP is an open source free SFTP client, FTP client, WebDAV client, S3 client and SCP client for Windows. Its main function is file transfer between a local and a remote computer.It has lot of features.Here we are going to see, how to show hidden files.

Click on the preferences sub menu item which comes under the Options menu

Tags

By gnanaguru, 25 August, 2022

WinSCP is an open source free SFTP client, FTP client, WebDAV client, S3 client and SCP client for Windows. Its main function is file transfer between a local and a remote computer.It has lot of features.Here we are going to see, how to show hidden files.

Click on the preferences sub menu item which comes under the Option menu

Tags

By gnanaguru, 17 August, 2022

There are 2 ways to change the base url of the Drupal website

1. Using .htaccess file
Add a .htaccess on the parent directory, and put the following text to it,

RewriteEngine on

#index page
RewriteRule ^$ drupal_website_path/index.php [L]

#the other pages
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* drupal_website_path/$0 [L]

2. Using setting.php file

Tags