- Chroot into your linux instalation
- The easiest way is with
mhwd-chroot
- Install it
yaourt -S mhwd-chroot
- Run it
sudo mhwd-chroot
- DONE, you have chrooted into your linux installation (open a root console of your installed linux OS, is like just open a console with root access)
- Install it
- The easiest way is with
- Restore your GRUB
- Install a new GRUB bootloader with
grub-install /dev/sda
- Install a new GRUB bootloader with
- Recheck to ensure the that installation has completed without any errors
grub-install --recheck /dev/sda
The find
command helps to find files in a directory. It returns the relatives path of the files found. If you want to create symbolic links of all found files you will need the absolute path of them.
This is the right way to create symbolic links using find
.
find some_path -type f -name '*.file_extension' -exec ln -s -t 'path_to_put_the_created_links' "$(readlink -f "{}")" \;
Do you wonder why some users at WooCommerce enabled site have access to the top admin bar and WordPress admin dashboard, but some users don’t?
It is by design: WooCommerce plugin developers decided for us for whom they allow access to WordPress admin dashboard and for whom they prohibit it. But thanks them for the professionalism – it is possible to change that default WooCommerce logic via special filters.
Garagulya, V., (2015) Woocommerce Admin Bar Access
Put this function on the main php file of your dependent plugin and call it with the rigth parameters.
/**
* Verify if a plugin is active, if not deactivate the actual plugin an show an error
* @param [string] $my_plugin_name
* The plugin name trying to activate. The name of this plugin
* Ex:
Put this on your wp-config.php
/* That's all, stop editing! Happy blogging. */
define('FS_METHOD', 'direct');
<?php
print( '<pre>'.print_r($var,true).'</pre>' );
Written with StackEdit.
g++ m.cpp -o app `pkg-config --cflags --libs opencv` |
{ | |
"always_show_minimap_viewport": true, | |
"color_scheme": "Packages/User/SublimeLinter/Agila Oceanic Next (SL).tmTheme", | |
"dictionary": "Packages/Language - English/en_US.dic", | |
"font_size": 12, | |
"gutter": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], |