I finally figured out how to make Google Translate work with the Drupal 8 site! I kept getting a 403 forbidden message whenever I change the language. This is because of the Drupal security directive in place in the .htaccess file.
Using git-format-patch
exports commits as patch files. You can then send these to your colleagues to be applied on another branched or cloned repository of the project. These patch files can contain one or more commits and Git replays that commit when you apply it.
I just signed up in the Amazon Associate Program where I can earn from qualifying purchases through links of any eligible products from amazon.ca which uses my own special tag. Follow the steps below to use my tag!
1. Click on the banner below.
2. Search any product you want to buy.
3. Click on the add to cart button and complete your order!
Learning a new programming language is not easy. I've always been wanting to get myself into learning Objective-C and create apps for iOS, Apple's mobile operating system, but thankfully, they've made it easy by creating the Swift programming language and even easier by creating SwiftUI for building interfaces!
The Apple Developer website has this awesome tutorial in Introducing SwiftUI to learn the basics and concepts of creating beautiful and dynamic apps.
It's now a new normal to meet online using video conferencing software for just about everything, because of this COVID-19 pandemic. With millions of things you can possibly do online, you may need to legally protect yourself and or your organization when broadcasting by adding a copyright disclaimer at the bottom of your video.
With recent updates to Webex Meetings desktop app, using a third-party virtual camera app has been restricted. However, you are able to use the virtual camera with the Webex Meeting web app in a Firefox browser. At the time of writing, I was able to make this work using the CamTwist app, Firefox browser on my MacOS Catalina.
Drupal 9 is here! I’ve been working with Drupal for the past seven years now and have grown to love it. I started out with Drupal 7 and although it was a steep learning curve from what I was use to building sites with, it got easier once I got deeper into the code and understood the architecture of the software and API, especially with Drupal 8.
There are multiple ways to update your Drupal 8 installation but I prefer using composer for ease of use. However, if you have multiple PHP installations on your system, composer may use the wrong PHP version. Typically, you would update your Drupal 8 installation like this:
With everyone staying at home due to the current COVID-19 pandemic, communication through the internet has certainly increased greatly, either through video, email or text messages. I use text messages a lot and have grown fond of Telegram Messenger app to chat with family and friends. One of my favorite features of Telegram is stickers, and as an iPhone user, I created my own memoji and use it within Telegram, but I thought it would be more fun to make my memoji as stickers! Here's how I did it.
When logged in to a Webex Meeting, it is important to have a correct profile name to be identified and addressed properly. Follow the steps below to change your profile name.
Note: You must have an active Webex Account. If you don't have an account yet, you can Sign-up for a free Webex account.
File and folder permissions can be a problem sometimes and can cause errors when not set properly on your server.
For WordPress installations, you can set the proper permissions with the following commands:
Set all directory permissions:
find . -type d -exec chmod 755 {} \;
Set all file permissions:
find . -type f -exec chmod 644 {} \;
The Sequel Pro app only allows a single .sql or a compressed .sql.gz file to be imported, but what if you have hundreds of .sql files to import from your Drupal or WordPress backup?
The solution is to combine the .sql file into one using the cat command.