-
バックエンド
[WordPress] 現在表示しているページのテンプレートファイルを調べる(プラグインなし)
WordPressで作られたサイトで、現在表示されているページが、どのテンプレートファイルを使用しているか調べる方法です。このページのテンプレートを修正したいけど、ど... -
バックエンド
[GitHub] Personal Access Token の更新
[GitHub] Your personal access token (classic) is has expired という件名のメールが届いても、焦ることなく更新作業をすればよい、というお話し。 このメールはすで... -
バックエンド
wp-envでWordPressテーマのローカル開発環境を構築する
WordPress公式がリリースしている、@wordpress/envパッケージ(wp-env)を使用してWordPressテーマのローカル開発環境をセットアップする方法(※Mac用)です。 前提条件... -
フロントエンド
.htaccessでURL正規化(https強制、wwwあり・なし、index.html(php)なし)
.htaccessでURLの正規化をする方法です。 この記事はIT女子のお気に入りフォルダで2019年10月に公開していた記事を移植したものです。 設定するのは以下3つ httpsに強... -
バックエンド
本番環境でgit pullしたらエラーがでた(error: Your local changes to the following files would be overwritten by merge: *** Please, commit your changes or stash them before you can merge.)
本番環境でgit pullを行ったときにエラーが出ました。 error: Your local changes to the following files would be overwritten by merge: composer.json composer.loc... -
バックエンド
Laravelのバージョンを指定してLaravel Sail環境をつくる
以下のコマンドだと最新のLaravelがインストールされてしまいます。 $ curl -s "https://laravel.build/example-app" | bash 最新ではなく任意のバージョンで... -
バックエンド
既存Laravelプロジェクト(Laravel Sail)の開発環境をつくる【Mac】〜複数人で開発するときなど
Docker利用環境はあるものとします。また、Github等でプロジェクトファイルをホスティングしている前提です。 Githubリポジトリからクローン $ git clone https://githu... -
バックエンド
Githubの初回pushでエラー(error: src refspec main does not match any error: failed to push some refs to ‘github.com:*/*.git’)が出た時の対処法
Githubで新しいプロジェクトを作成して、存在するレポジトリを初めてpushするとき …or push an existing repository from the command line git remote add origin git@... -
フロントエンド
Vite + Vue 3 でGoogle Fontsを使う
Vite + Vue 3 でGoogle Fontsなど Webフォントを使えるように環境を整える方法です。プラグイン「Vite Plugin WebFont DL 」を使用し、vite.config.js で import する方... -
バックエンド
GitHubでremote: Invalid username or password. fatal: Authentication failed for 〜エラーが出た時の対処
GitHubリポジトリからコマンドでプルしたらエラーが出ました。 $ git pull remote: Invalid username or password. fatal: Authentication failed for 'https://git...
12