The error we encounter when generating CSV files primarily occurs on older versions of Magento. To address this, we typically need to manually execute either the cron or queue run to resolve the issue. Step 3Disable the the Add Secret…
Author: Arunlal
How to view uncomment lines in a file using python
Here we are taking the configuration file of Jupyter network.
DOCKER SAVE vs DOCKER LOAD
In the article, we are going to learn about the usage of docker save and docker load. Docker save is the comment used to save one or more images to a tar file Let’s pull some images first. Let’s try…
How to find DKIM through command line.
DKIM is a process to validate sending domain names associated to email messages through cryptographic authentication. DKIM creates two key for the this process. The private key is used to siginning the mail in the sender side for ensuring the…
Docker Environment variable
Mysql: MYSQL_ROOT_PASSWORDMYSQL_DATABASEMYSQL_USERMYSQL_PASSWORD WordPress: WORDPRESS_DB_HOSTWORDPRESS_DB_USERWORDPRESS_DB_PASSWORDWORDPRESS_DB_NAME
We need to check the existence of a file in a particular directory. If not found copy the file to that directory.
We consider file name as “ishan.txt” !/bin/bash if [ -e $1/ishan.txt ]; then echo “file is present” else cp -r ishan.txt $1 fi sh script.sh /path to the folder
Learn Spam and Learn Ham is not creating after enabling Bayesian Scanning Options
It’s mainly happens after the migration from cPanel to Interworx. After enabling the Bayesian scanning options all the newly created account have the folder “Learn spam” amd “Learn Ham”. However, migrated email account have issues with Bayesian Scanning Options. In…
How to check the PHP version of domains in cPanel
Please use the below command to get the information about PHP version of individual domains hosted in cPanel. [arunlal@lintechops ]# for i in awk ‘{print $2}’ /etc/trueuserdomains; do cd /home/$i/public_html ; echo $i – php -v| grep ^PHP | awk…
How to set file permissions to default in Linux?
In Linux file permissions are as follows. Files – 644Folders – 755 Sometimes files and folders found to be in full permissions. Please use the below commands to set it back to default permission For folders: find . -type d…
500 Internal Server Error in WordPress
We experiencing the 500 Error with WordPress sites mainly access themes/plugins in the wp-admin dashboard. This is mainly due to the issue with Memory Limit of WordPress. Adding the following line in the wp-config.php will resolve the issue. define(‘WP_MEMORY_LIMIT’, ’64M’);Just…