ホストでntpサーバを設定
ゲストとホストの同期設定
2014年8月25日月曜日
2014年8月21日木曜日
ampps "How to ..."
ラベル:
ampps
How to use AMPPS
- Default MySQL root password is "mysql".
- To access localhost, visit url http://localhost. DocumentRoot is path/to/Ampps/www folder.
- To access AMPPS Enduser Panel, visit url http://localhost/ampps
- To access AMPPS Admin Panel, visit url, http://localhost/ampps-admin
- To access phpMyAdmin, visit url http://localhost/phpmyadmin
- To access SQLiteManager, visit url http://localhost/sqlite
- You can "Restore Default Configuration" files of Apache, PHP & MySQL from their respective Tabs in AMPPS Control Center. Note: Your previous configuration will be lost.
- You can change MySQL root password, visit url http://localhost/ampps/index.php?act=mysqlsettings. You can also refer this wiki.
- You can secure AMPPS Enduser/Admin Panel, visit url http://localhost/ampps/index.php?act=secure. You can also refer this wiki.
- Enable/Disable Python Environment (Right click on System Tray Icon of AMPPS Control Center -> Configuration -> AMPPS -> Python Environment)
2014年8月20日水曜日
JavascriptでWScriptを使ってクライアントのアプリケーションを起動させる
ラベル:
html,
javascript
IEブラウザ限定、Javascriptを使ってWScriptでクライアントのアプリケーション(notepad.exeメモ帳)を起動させる
※IEの設定でActiveXを有効にすることは前提条件です。
※IEの設定でActiveXを有効にすることは前提条件です。
<html>
<head>
<script language="javascript" type="text/javascript">
function OpenFile(){
var x = new ActiveXObject("WScript.Shell");
x.run('notepad.exe hello.txt');
}
</script>
</head>
<body>
<input type="button" value="メモ帳" href="#" onclick="javascript:OpenFile();"><br>
1.Internet Explorer の ActiveX コントロールの処理方法を変更するには、次の操作を実行します。<br>
2.[ツール]→[インターネット オプション]→[セキュリティ]→[レベルのカスタマイズ]。<br>
3.[ActiveX コントロールとプラグイン]。<br>
4.[ActiveX コントロールに対して自動的にダイアログを表示]で、[有効にする]。<br>
5.[署名された ActiveX コントロールのダウンロード]を[有効にする]または[ダイアログを表示する]にします。<br>
6.[ActiveX コントロールとプラグインの実行]を[有効にする]または[ダイアログを表示する]にします。<br>
7.[スクリプトを実行しても安全だとマークされている ActiveX コントロールのスクリプトの実行]を[有効にする]または[ダイアログを表示する]にします。<br>
8.[OK]をクリックして、もう一度[OK]をクリックします。
</body>
</html>
<head>
<script language="javascript" type="text/javascript">
function OpenFile(){
var x = new ActiveXObject("WScript.Shell");
x.run('notepad.exe hello.txt');
}
</script>
</head>
<body>
<input type="button" value="メモ帳" href="#" onclick="javascript:OpenFile();"><br>
1.Internet Explorer の ActiveX コントロールの処理方法を変更するには、次の操作を実行します。<br>
2.[ツール]→[インターネット オプション]→[セキュリティ]→[レベルのカスタマイズ]。<br>
3.[ActiveX コントロールとプラグイン]。<br>
4.[ActiveX コントロールに対して自動的にダイアログを表示]で、[有効にする]。<br>
5.[署名された ActiveX コントロールのダウンロード]を[有効にする]または[ダイアログを表示する]にします。<br>
6.[ActiveX コントロールとプラグインの実行]を[有効にする]または[ダイアログを表示する]にします。<br>
7.[スクリプトを実行しても安全だとマークされている ActiveX コントロールのスクリプトの実行]を[有効にする]または[ダイアログを表示する]にします。<br>
8.[OK]をクリックして、もう一度[OK]をクリックします。
</body>
</html>
登録:
投稿 (Atom)