You can use following script to open programs on the right screen
Month: March 2022
the ‘information_schema global_status feature is disabled
If you want to import a MySQL dump in to your MySQL server 5.7 and you got following error
The 'INFORMATION_SCHEMA.SESSION_VARIABLES' feature is disabled; see the documentation for 'show_compatibility_56'
Login in to your mysql root console and send this command to your mysql server
set @@global.show_compatibility_56=ON;
SHOW VARIABLES LIKE '%compatibility%';
+-----------------------+-------+
| Variable_name | Value |
+-----------------------+-------+
| show_compatibility_56 | ON |
+-----------------------+-------+
1 row in set (0.00 sec)
Apache conf set X-Robots-Tag for all vHosts
Create a file under /etc/apache2/conf-enabled with following content
Header Set X-Robots-Tag “noindex, nofollow, noarchive, nosnippet”
Check your config with wget –server-response –spider example.com
ssh-agent add key error message
sometimes you got an error with ssh-agent mykey
Could not open a connection to your authentication agent.
then try this
exec ssh-agent bash
found here