$("form")[0].reset();Mac: Safari
$(‘html’).width() //1230
$(document).width() //1230
$(window).width() //1230
$(‘body’).width() //1230
$(‘#page’).width() //1230
$(‘html’).height() //2302 コンテンツ全体の高さ
$(document).height() //2302
$(window).height() //952 ブラウザの最大高さ
$(‘body’).height() //2302
$(‘#page’).height() //2286
Mac Firefox
$(‘html’).width() //1230
$(document).width() //1230
$(window).width() //1230
$(‘body’).width() //1230
$(‘#page’).width() //1230
$(‘html’).height() //2421 コンテンツ全体の高さ
$(document).height() //2421
$(window).height() //937 ブラウザの最大高さ
$(‘body’).height() //2421
$(‘#page’).height() //2405
Mac Chrome
$(‘html’).width() //1228
$(document).width() //1228
$(window).width() //1228
$(‘body’).width() //1228
$(‘#page’).width() //1228
$(‘html’).height() //2302 コンテンツ全体の高さ
$(document).height() //2302
$(window).height() //952 ブラウザの最大高さ
$(‘body’).height() //2302
$(‘#page’).height() //2286
Windows IE 8
$(‘html’).width() //1280
$(document).width() //1280
$(window).width() //1259
$(‘body’).width() //1259
$(‘#page’).width() //1259
$(‘html’).height() //569 ブラウザの最大高さ
$(document).height() //2410 コンテンツ全体の高さ
$(window).height() //565
$(‘body’).height() //2410
$(‘#page’).height() //2394
Windows Chrome
$(‘html’).width() //1263
$(document).width() //1263
$(window).width() //1263
$(‘body’).width() //1263
$(‘#page’).width() //1263
$(‘html’).height() //2344
$(document).height() //2344 コンテンツ全体の高さ
$(window).height() //673 ブラウザの最大高さ
$(‘body’).height() //2344
$(‘#page’).height() //2328
Windows Firefox
$(‘html’).width() //1263
$(document).width() //1263
$(window).width() //1263
$(‘body’).width() //1263
$(‘#page’).width() //1263
$(‘html’).height() //2421
$(document).height() //2421 コンテンツ全体の高さ
$(window).height() //662 ブラウザの最大高さ
$(‘body’).height() //2421
$(‘#page’).height() //2405
幅結果:
IE8のみ、幅の種類が2種類あり、一つは縦スクロールが含まれたブラウザ幅、もう一つはスクロールが含まれない幅
よって、window, body, #page が良い
高さ結果:
ブラウザによりまちまち、ネックはIE系。
よって、document, bodyが共通している
2012/10/16現在でJquery で共通のコンテンツの最大幅、高さ取得は
$(‘body’).width()
$(‘body’).height()
が良い。
ブラウザの最大幅、高さは
$(window).width()
$(window).height()
補足事項、$(‘#id’).click(function(){ ….})のようにすべてのコンテンツを読み込ませてからが確実
remove_script_host : false,
convert_urls : false,
を追加
http://bresink.de/osx/TinkerTool.html
iphone はiPhoto に読み込まれ、そのデータはデフォルトで
/Users/(ユーザー名)/Pictures/iPhoto Library 内に保存される
iPhoto Library を右クリックして、コンテンツを表示を選択するとその中にある。
環境設定ファイルの再作成
InDesign
http://helpx.adobe.com/jp/indesign/kb/cpsid_84654.html
http://helpx.adobe.com/jp/creative-suite/kb/cpsid_83722.html
環境設定ファイルの再作成
サポートデータベース URL : http://www.adobe.com/go/support_faq_jp
Dreamweaver
http://helpx.adobe.com/jp/dreamweaver/kb/231227.html
if ( preg_match( “/[\\x80-\\xFF]/”, $v[‘order_product_text’]) ) {
echo “全角含む<br>”;
} else {
echo “半角のみ<br>”;
}
http://www.dnsgoodies.com/
php5.ini
include_path = “.:/home/*****/*******/ZendFramework-1.12.0/library/”
とする。
サブドメインではなくメインのドメインのルートにiniファイルをアップロード
追加
ZF2 は PHP5.3以上
UTF-16に変換
カンマをタブに変換
CSVファイルをアイコンから右クリックしてエクセル選択
改行の設定も見直す
以上
php.iniに追加
include_path = “.:/Users/imac/Public/htdocs/attob.com.com/ZendFramework-1.12.0/library/”
.htaccessに追加
RewriteEngine on
RewriteBase /
RewriteRule !\.(js|ico|gif|jpg|png|pdf|css|swf|php|html|htm)$ index.php
php.ini に追加
テストをしてみる
localhost/index.php
require_once ‘Zend/Version.php’;
echo Zend_Version::VERSION;
バージョン情報が出力されればOK
indexという名前のURLを含めた場合、機能しない。
http://test.attob.com/test/は動くが、
http://test.attob.com/index/はページが存在しないと表示される
- Advertisement の Enlarge サイズは 417px x 550px
クライアントのアカウント
domainはクライアントが持ち、サーバーだけを管理する場合、クライアント側のA recordを変更する my godaddy account の IP addressと Dedicated IP Addressがあるが、 Dedicated IP addressをA recordに設定する
SSLの場合はIPアドレスのようだ。
My アカウント
domainを追加する。
test!
| 数値型 | 最小値 | 最大値 |
| tinyint | -128 | 127 |
| tinyint(unsigned) | 0 | 255 |
| smallint | -32768 | 32767 |
| smallint(unsigned) | 0 | 65535 |
| mediumint | -8388608 | 8388607 |
| mediumint(unsigned) | 0 | 16777215 |
| int | -2147483648 | 2147483647 |
| int(unsigned) | 0 | 4294967295 |
| bigint | -9223372036854775808 | 9223372036854775807 |
| bigint(unsigned) | 0 | 18446744073709551615 |
| decimal | decimal(整数の桁数,小数点の桁数)で指定。 | |
| 日付型 | 最小値 | 最大値 |
| date | 1000-01-01 | 9999-12-31 |
| datetime | 1000-01-01 00:00:00 | 9999-12-31 23:59:59 |
| time | -838:59:59 | 838:59:59 |
| timestamp | 1970-01-01 00:00:00 | 2037-12-31 23:59:59 |
| year(yyyy) | 1901 | 2155 |
| year(yy) | 1970 | 2069 |
| 文字列型 | 最小値 | 最大値 |
| char | 255 Byte | |
| varchar | 255 Byte | |
| tinytext | 255 Byte | |
| text | 65535 Byte | |
| mediumtext | 16777215 Byte | |
| longtext | 4294967295 Byte | |
| enum(data1,data2,… | 65535個 | |
| set(data1,data2,… | 64セット | |
Google Chromeをダウンロード
http://www.google.co.jp/chrome/intl/ja/landing_ff.html
その後、Google Chromeから下記リンクにアクセス
https://chrome.google.com/webstore/detail/pdnfnkhpgegpcingjbfihlkjeighnddk?hl=zh-CN
右上の青いボタンをクリックし、許可する
自己責任で行ってください。
当サイトは一切の責任を負いかねます。
JQuery
<script type=”text/javascript”>
$(function() {
$(window).unload(function() {
alert(‘Handler for .unload() called.’);
});
})
</script>
JavaScript
<script language=”javascript” type=”text/javascript”>
function doBeforeUnload() {
return “Leave the page before save?”;
}
</script>
<body onbeforeunload=”return popupBeforePageMove();”>
メルアドの再確認
mail 関数が存在しているかの確認
get_defined_functions
php.iniや .htaccessの確認をしてみる。
SMTP ブラブラみたいなコードが入っていたら要注意。
$(‘#iframe_id’, parent.document).height(height);
select count(*), DATE_FORMAT(date_field_name,"%Y-%m-%d") as created_day FROM table_name GROUP BY created_day
select count(*), DATE_FORMAT(date_field_name,"%Y-%m") as created_month FROM table_name GROUP BY created_month
select count(*), DATE_FORMAT(date_field_name,"%Y") as created_year FROM table_name GROUP BY created_year
※ %Y-%m-%d 等の部分はそのまま使い、数字などに変更しない。
他の方法
月別の取得
SELECT SUM(field) FROM table GROUP BY DATE_FORMAT(date_field, ‘%Y%m’);
日付別の取得
SELECT SUM(field) FROM table GROUP BY DATE_FORMAT(date_field, ‘%Y%m%d’);
曜日別の取得
SELECT SUM(field) FROM table GROUP BY WEEKOFDAY(date_field);
Test
http://www.google.com/analytics/ にアクセス
下記ページが開きます。

Sign inをクリック
2、メールでお渡ししたメールアドレスとパスワードを入力後にSign in ボタンをクリック

3,下記ページが開くと思いますので、赤枠を1、2を順にクリック

4、①でカレンダーを表示、②、で6月1日を設定、③はその日にち(今日の日付 ※今日の日付とは本日であり、この説明をした日にちではないです。)④をクリックして適用、⑤から⑦は順にクリック。

5、①の /song1.html は Omake1の事です。 /song2.html は Omake2 です。3から9まで同様です。 /song0.html は Omake no Omake です。②のページビュー数で、何人アクセスされたかが判ります。

ipodme_v2.4
全てじゃないけど、わりと消せる。
appCleaner
Facebookにアップできるのでしょうか。
RSS Graffiti 2.0 Betaの場合
string.join(‘/’);


