Windows10

ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード
cnetサイトからダウンロード

更新内容:

Fix of possible deadlock when ...

CentOS

操作方法
# sudo yum install make
================================================================================ ...

OpenSource

ダウンロード:
提供元サイトからダウンロード

更新内容:

*) Corrected docs/manual pages for new MergeTrailers directive and other ou ...

OpenSource

ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード
PSPad is a comprehensive text and code editor that provides n ...

Linux

設定内容:

#各IPのHTTP併発要求の最大値を設定

iptables -I INPUT -p tcp –dport 80 -m connlimit –connlimit-above 1 ...

Linux

firewallコード下記:
# 転送トルール
iptables -A FORWARD -d 192.168.1.34 -p tcp –dport 80 -j ACCEPT
iptables -A ...

Linux

firewallコード下記:

iptables -N httpd_in
iptables -A httpd_in -m time ! –weekdays Mon -m string –alg ...

Linux

# 192.168.1.69でfirewallを設定
iptables -A INPUT -p tcp –dport 80 -m time ! –weekdays Mon -m string ̵ ...

MySQL

1.システム要件:

1.1 Windows サーバー2台

1.2 MySQL5.5をインストール済み
mysql> select version();
+—— ...

Wordpress

1.エラーメッセージ:
Fatal error: Maximum function nesting level of…

2.解決対策:
vim php.ini
xdebug.r

Wordpress

PHPコード:
投稿数:
<?php $count_posts = wp_count_posts(); echo $published_posts =$count_posts->publish;?> ...

Wordpress

PHPコード下記:
<?php $posts = get_posts( “category=6&numberposts=5” ); ?>

<?php if( $po ...

Wordpress

方法1
<?php
$category_id = get_cat_ID( ‘Category名’);
$category_link = get_category_link( $ca ...

PHP

1.二分木について
二分木の中でも、全てのノードが「葉であるか、二つの子を持っている(次数が2であるという)」ものを、全二分木 (full binary tree) と呼ぶ。完全二分木 (perfect binary tree ...

Linux

1.注意事項:
Ubuntuのデフォルトrootのパスワードがランダムです、毎回PCが起動する時に新しいrootパスワード
を作成する

2.パスワードを取得する手順
startnews24_ubun ...

Linux

コマンド:
$sudo apt-get install openssh-server

Apache

1.xamppのインストール
tar xvfz xampp-linux-1.6.4.tar.gz -C/opt

xamppが起動
/opt/lampp/lampp start

xamppを停止 ...

Node.js

書式
変数名..collection(コレクション名).deleteMany(cond, function(err, obj)
使用例

var MongoClient = require('mongodb').M ...