sophosの初期パスワード、リセット方法
sophosの初期パスワード
admin
sophosのパスワードリセット
パスワード入力画面で「RESET」を入力
パソコンや開発、Linuxやデータベースのことなど
centos8で.htmlや.htmのファイルでphpを動かす
htmlのファイルにphpを書いて
次のファイルを開こうとしています、と出る場合。
phpの設定ミスです。
モジュール版phpからfpm版phpになったようです?
centos7までの方法ではなく、centos8では/etc/http/conf.d/php.confの
<FilesMatch \.(php|phar)$>
SetHandler application/x-httpd-php
</FilesMatch>
の部分を、
<FilesMatch \.(php|phar|html|htm)$>
SetHandler application/x-httpd-php
</FilesMatch>
に書き換えたら.htmlや.htmのファイルにphp組み込みでもphpが動作するようです。
自己責任で。
htmlのファイルにphpを書いて
次のファイルを開こうとしています、と出る場合。
phpの設定ミスです。
モジュール版phpからfpm版phpになったようです?
centos7までの方法ではなく、centos8では/etc/http/conf.d/php.confの
<FilesMatch \.(php|phar)$>
SetHandler application/x-httpd-php
</FilesMatch>
の部分を、
<FilesMatch \.(php|phar|html|htm)$>
SetHandler application/x-httpd-php
</FilesMatch>
に書き換えたら.htmlや.htmのファイルにphp組み込みでもphpが動作するようです。
自己責任で。
git rmで怒られた場合
git rm ファイル名 で error: the following file has local modifications と怒られた場合
git rm --cached ファイル名
git rm ファイル名 で error: the following file has local modifications と怒られた場合
git rm --cached ファイル名