This installation of MySQL is already upgraded to 5.7.29, use –force if you still need to run mysql_upgrade E: dpkg was interrupted, you must manually run ‘dpkg –configure -a’ to correct the problem.

This installation of MySQL is already upgraded to 5.7.29, use –force if you still need to run mysql_upgrade E: dpkg was interrupted, you must manually run ‘dpkg –configure -a’ to correct the problem. The solution is: 1- Open this file for edit: /var/lib/dpkg/info/mysql-server-5.7.postinst 2- At line # 370, comment the echo ALTER statement which would…

Site Migration Risks (URL Change)

https://support.google.com/webmasters/answer/34437 https://support.google.com/webmasters/topic/6033102?hl=en&ref_topic=6029673 https://support.google.com/webmasters/answer/6033049?hl=en&ref_topic=6033084&visit_id=637156175388140145-3776646314&rd=1 https://www.searchviu.com/en/website-relaunch-seo-checklist/#awareness https://searchengineland.com/site-migration-seo-checklist-dont-lose-traffic-286880 https://www.geekytech.co.uk/website-migration-redesign-seo-checklist/ https://www.searchenginejournal.com/changing-url-structure/325249/#close https://moz.com/community/q/will-changing-a-url-negatively-affect-ranking https://moz.com/blog/should-i-change-my-urls-for-seo

Enable inheritance for Bulk Ad User (Active Directory)

Run below script to enable inheritance for Bulk AD user under specific OU (enable inheritance on all AD user accounts) $ADusers = Get-ADUser -ldapfilter “(objectclass=user)” -searchbase “OU=Students,DC=ukh,DC=edu,DC=krd” ForEach($user in $ADusers) { # Binding the users to DS $ou = [ADSI](“LDAP://” + $user) $sec = $ou.psbase.objectSecurity if ($sec.get_AreAccessRulesProtected()) { $isProtected = $false ## allows inheritance $preserveInheritance…

Exporting MySQL Dump GZIP

Exporting MySQL Table GZIP (MySQL Dump) mysqldump -u [username] -p[password] database_name tablename | gzip > /path/to/backup-name.sql.gz Exporting MySQL Database GZIP (MySQL Dump) mysqldump -u [username] -p[password] database_name | gzip > /path/to/backup-name.sql.gz

The action ‘Set-DistributionGroup’, ‘HiddenFromAddressListsEnabled’, can’t be performed on the object ‘Office of Vice Chancellor – Group’ because the object is being synchronized from your on-premises organization. This action should be performed on the object in your on-premises organization.

Error The action ‘Set-DistributionGroup’, ‘HiddenFromAddressListsEnabled’, can’t be performed on the object ‘Office of Vice Chancellor – Group’ because the object is being synchronized from your on-premises organization. This action should be performed on the object in your on-premises organization. When trying to edit (Hide this group from address lists) property using office365 exchange. You can…

Automatically Backup MySQL Databases on Windows

MySQL Command for backup all databases: mysqldump -uUSERNAME -pPASSWORD –all-databases > “D:/File_NAME_%date:~-4,4%-%date:~-10,2%-%date:~-7,2%-%time:~0,2%_%time:~3,2%_%time:~6,2%.sql” Example: Consider MySQL username = root and password = 123456 mysqldump -uroot -p123456 –all-databases > “D:/mysql_backup_%date:~-4,4%-%date:~-10,2%-%date:~-7,2%-%time:~0,2%_%time:~3,2%_%time:~6,2%.sql” The result will be a file name (mysql_backup_2017-10-21-20_29_54.sql) containing all databases. MySQL Command for one database databases: mysqldump -uroot -p123456 –databases mydatabasename > “D:/mysql_backup_%date:~-4,4%-%date:~-10,2%-%date:~-7,2%-%time:~0,2%_%time:~3,2%_%time:~6,2%.sql” We replaced –all-databases…

Rooting Samsung Galaxy S5 SM-G900H

Very thanks for https://desktop.firmware.mobi/ that helps me to Root my Android Galaxy S5 during 5 minutes, before trying that site, I tried several ways to root my android but I failed. Once you visited the website, it asks to submit your device model, and the it provides you all required files to root including clean…