Aprenda a “encontrar coisas” pelo terminal Linux, com o comando FIND

Aprenda a “encontrar coisas” pelo terminal Linux, com o comando FIND Vinícius Vieira 31/07/2013 1 No post de hoje vamos abordar o uso do comando find. Ele é um incrível software de terminal que tem por finalidade “encontrar coisas” no nosso sistema. Vamos lá? Antes de mais nada, vamos consultar o manual do comando. Abra

Aprenda a “encontrar coisas” pelo terminal Linux, com o comando FIND Read More »

XenServer Dicas

Como finalizar uma VM travada no XenServer Sua VM travou e você não quer reiniciar o servidor para liberar a tarefa que não desliga, essa dica servirá para desligar a VM que está travada. Primeiro passo é saber o uuid da VM que está travada, no XenCenter só precisa clicar em cima da VM e

XenServer Dicas Read More »

Fixing integration issues of manually installed WordPress, MySQL, Php using IIS on Windows Servers

Your PHP installation appears to be missing the MySQL extension which is required by WordPress. image Fix: Enable MySQL Extension for Php via php.ini as shown below: ;;;;;;;;;;;;;;;;;;;;;; ; Dynamic Extensions ; ;;;;;;;;;;;;;;;;;;;;;; ; If you wish to have an extension loaded automatically, use the following ; syntax: ; ; extension=modulename.extension ; ; For example,

Fixing integration issues of manually installed WordPress, MySQL, Php using IIS on Windows Servers Read More »

Remove menus and submenus from the WordPress Dashboard

Sometimes you might need to remove posts, pages, plugins or other menus and submenus from the WordPress dashboard. Here’s two handy functions put together to remove all by Chris_O over at StackExchange. Simply add these to the functions.php file in your WordPress theme then delete or comment out whichever options you don’t wish to use.

Remove menus and submenus from the WordPress Dashboard Read More »

How to remove entire admin menu?

The correct hook to use is admin_menu and then create a function to remove the menus you want to remove. The following 2 functions remove all the menus. add_action( ‘admin_menu’, ‘remove_admin_menus’ ); add_action( ‘admin_menu’, ‘remove_admin_submenus’ ); //Remove top level admin menus function remove_admin_menus() { remove_menu_page( ‘edit-comments.php’ ); remove_menu_page( ‘link-manager.php’ ); remove_menu_page( ‘tools.php’ ); remove_menu_page( ‘plugins.php’

How to remove entire admin menu? Read More »