Things to remember when setting up a WordPress site on an Apache server
/etc/hosts add local url to 127.0.0.1
/etc/apache2/extra/httpd-vhosts.conf add vhost config for site
- If Wordpress/bedrock the path needs to be the projectfolder/web
Things to remember when setting up a WordPress site on an Apache server
/etc/hosts add local url to 127.0.0.1
/etc/apache2/extra/httpd-vhosts.conf add vhost config for site
- If Wordpress/bedrock the path needs to be the projectfolder/web
| {"lastUpload":"2019-04-03T15:00:53.348Z","extensionVersion":"v3.2.7"} |
| # gem install bitbucket_rest_api | |
| # gem install octokit | |
| require 'bitbucket_rest_api' | |
| require 'octokit' | |
| task :migrate do | |
| bitbucket = BitBucket.new login: '', password: '' | |
| bitbucket_owner = '' | |
| github = Octokit::Client.new login: '', password: '' | |
| github_org = '' |
| package com.xxx.xxx.preference; | |
| import java.text.DateFormat; | |
| import java.text.ParseException; | |
| import java.text.SimpleDateFormat; | |
| import java.util.Date; | |
| import java.util.Locale; | |
| import android.content.Context; | |
| import android.content.res.TypedArray; |
| @rem Do not use "echo off" to not affect any child calls. | |
| @setlocal | |
| @rem Get the abolute path to the parent directory, which is assumed to be the | |
| @rem Git installation root. | |
| @for /F "delims=" %%I in ("%~dp0..") do @set git_install_root=%%~fI | |
| @set PATH=%git_install_root%\bin;%git_install_root%\mingw\bin;%PATH% | |
| @if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH% | |
| @if not exist "%HOME%" @set HOME=%USERPROFILE% |