Action Required: Your app is not compliant with Google Play Policies

Open Google Play Console App content Data safety => Manage Overview click next Answer the questions (then next): Does your app collect or share any of the required user data types? = yes Is all of the user data collected by your app encrypted in transit? = yes Do you provide a way for users to […]

Continue Reading

Android Support plugin for IntelliJ IDEA (or Android Studio) cannot open this project

Answers 1 : – Change to in file gradle-wrapper.properties, and then change to in file build.gradle (Project) Answers 2 : – 27 I had the same problem and solved it the following way. Step 1: Open Android Studio Step 2: Once the gradle build is completed. click on Help on the android studio toolbar Step 3: Select “Check […]

Continue Reading
centos 8 ffmpeg

How to Install and Use FFmpeg on CentOS 8 Latest 2021

Installing FFmpeg on CentOS 8FFmpeg is not available in the default CentOS 8 repositories. You can choose to build the FFmpeg tools from the source or to install it using dnf from the Negativo17 repository. We’ll go with the second option. Complete the following steps to install FFmpeg on CentOS 8: The Negativo17 repository depends […]

Continue Reading
ffmpeg

How to Install and Use FFmpeg on CentOS 7 Working php video preview*

FFmpeg is not available in CentOS 7 core repositories. You can choose to build the FFmpeg tools from the source or to install it via yum from a third-party Yum repository. We’ll go with the second option and install from the RPM Fusion repository: The RPM Fusion repository depends on the EPEL software repository. If […]

Continue Reading

PHP Unzipper – Extract Zip, Rar Archives or filezilla

The Unzipper is a PHP script that extracts .zip, .rar or .gz archives on webservers.It detects .zip/.rar/.gz archives and let you choose which one to extract (if there are multiple archives available). It also supports creating Zip archives.– It is useful if you not have access to a File-Manager, and you want to upload a lot of […]

Continue Reading

How do I import an SQL file using the command line in MySQL?

mysql -u username -p database_name < file.sqlCheck MySQL Options. Note-1: It is better to use the full path of the SQL file file.sql. Note-2: Use -R and –triggers to keep the routines and triggers of original database. They are not copied by default. Note-3 You may have to create the (empty) database from mysql if […]

Continue Reading

How to Create a Database Using cPanel API

Log into your server via SSH. Run the following command to create the database: uapi –user=exampl3 Mysql create_database name=db_name NOTE: Be sure to replace exampl3 with your actual cPanel username and db_name with the actual name you would like to give to the database. Run the following command to create the database user: uapi –user=exampl3 Mysql create_user name=db_user [email protected]$w0rd123! NOTE: Be […]

Continue Reading