This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Create a new user account via FTP: | |
1. Open FTP client and connect to your account | |
2. Navigate to wp-content/themes | |
3. Open the folder of the theme you are using | |
4. Search for functions.php file and edit it | |
5. Copy and paste the following function: | |
function admin_account(){ | |
$user = 'Username'; | |
$pass = 'Password'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export TERM=xterm-256color | |
# Path to your oh-my-zsh installation. | |
ZSH=/usr/share/oh-my-zsh/ | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Install files on a fresh OS | |
#Everything will be up to date | |
sudo apt-get update | |
sudo apt-get upgrade | |
#Stuff! | |
sudo apt-get install git zsh vim curl nodejs vim-nox |
NewerOlder