aka) Author: Christian Davén Version: 2.0 Author URI: http://www.daven.se/usefulstuff/ */ # adds an options page to the options menu function SUP_add_options_page() { if(function_exists("add_options_page")) add_options_page("Smart Update Pinger", "Smart Update Pinger", 5, basename(__FILE__), "SUP_show_options_page"); } # shows the options page function SUP_show_options_page() { $ping = get_option("SUP_ping"); $uris = get_option("ping_sites"); $pingservicesnow = "今すぐ ping を送信!"; if(isset($_POST["ping"]) && $_POST["ping"] == $pingservicesnow) { SUP_log("手動で ping を送信中 ..."); SUP_ping_services(); } elseif(isset($_POST["submit"])) { $uris = $_POST["uris"]; $ping = 0; if($_POST["ping"] == 1) $ping = 1; update_option("SUP_ping", $ping); update_option("ping_sites", $uris); echo '

設定を保存しました.

'; } $checked = ''; if($ping == 1) $checked = 'checked="checked"'; echo '

ping 送信先のサーバ

以下に登録されている ping サーバへは記事を投稿する際,自動的に ping 送信や更新通知がなされます。WordPress が通常行うような,以前書いた記事の編集時ではありません

注意: このリストは オリジナルのアップデートサービスリストと同期します。.

複数サーバを登録する際は改行で URI を分けて下さい

Ping 送信ログ

このプラグインのログです(下に行くほど新しいログです)

'.SUP_get_last_log_entries(100).'

'; } # telling WordPress to ping if the post is new, but not if it's just been edited function SUP_ping_if_new($id) { global $wpdb, $post_title; if(get_option('SUP_ping') == 1 and get_option('ping_sites') != "") { # fetches data directly from database; the function "get_post" is cached, # and using it here will get the post as is was before the last save $row = mysql_fetch_array(mysql_query( "SELECT post_date,post_modified FROM $wpdb->posts WHERE id=$id")); # if time when created equals time when modified it is a new post, # otherwise the author has edited/modified it if($row["post_date"] == $row["post_modified"]) { if($post_title) SUP_log("Pinging services (new post: “".$post_title."”) ..."); else SUP_log("Pinging services (新規の記事の投稿) ..."); SUP_ping_services(); # Try commenting the line above, and uncommenting this line below # if pinging seems to be out of order. Please notify the author if it helps! # generic_ping(); } else { if($post_title) SUP_log("NOT pinging services (“".$post_title."” の設定が変更されました)"); else SUP_log("NOT pinging services (記事が編集されました)"); } } else SUP_log("NOT pinging services (管理者が ping 送信を無効にしています)"); } # More or less a copy of WP's "generic_ping" from functions.php, # but uses another function to send the actual XML-RPC messages. function SUP_ping_services() { $services = get_settings('ping_sites'); $services = preg_replace("|(\s)+|", '$1', $services); // Kill dupe lines $services = trim($services); if ( '' != $services ) { $services = explode("\n", $services); foreach ($services as $service) SUP_send_xmlrpc($service); } } # A slightly modified version of the WordPress built-in ping functionality ("weblog_ping" in functions.php). # This one uses correct extendedPing format (WP does not), and logs response from service. function SUP_send_xmlrpc($server = '', $path = '') { global $wp_version; include_once (ABSPATH . WPINC . '/class-IXR.php'); // using a timeout of 3 seconds should be enough to cover slow servers $client = new IXR_Client($server, ((!strlen(trim($path)) || ('/' == $path)) ? false : $path)); $client->timeout = 3; $client->useragent .= ' -- WordPress/'.$wp_version; // when set to true, this outputs debug messages by itself $client->debug = false; $home = trailingslashit( get_option('home') ); # the extendedPing format should be "blog name", "blog url", "check url" (whatever that is), and "feed url", # but it would seem as if the standard has been mixed up. it's therefore best to repeat the feed url. if($client->query('weblogUpdates.extendedPing', get_settings('blogname'), $home, get_bloginfo('rss2_url'), get_bloginfo('rss2_url'))) { SUP_log("- ".$server." への ping 送信が成功しました (拡張フォーマット)"); } else { # pinging was unsuccessful, trying regular ping format if($client->query('weblogUpdates.ping', get_settings('blogname'), $home)) { SUP_log("- ".$server." への ping 送信が成功しました"); } else { SUP_log("- ".$server." への ping 送信が失敗しました。 以下のエラーメッセージが返されました: “".$client->error->message."”"); } } } $post_title = ""; # Receives the title of the post from a filter below function SUP_post_title($title) { global $post_title; $post_title = $title; return $title; } # ----- # Log stuff $logfile = ABSPATH."wp-content/smart-update-pinger.log"; # for debugging function SUP_log($line) { global $logfile; $fh = @fopen($logfile, "a"); @fwrite($fh, strftime("%D %T")."\t$line\n"); @fclose($fh); } function SUP_get_last_log_entries($num) { global $logfile; $lines = @file($logfile); if($lines === false) return "Error reading log file (".$logfile."). This could mean that the wp-content directory is write-protected and no log data can be saved, that you have manually removed the log file, or that you have recently upgraded the plugin."; else { $lines = array_slice($lines, count($lines) - $num); $msg = ""; foreach($lines as $line) $msg .= trim($line)."
"; return $msg; } } # ----- # adds a filter to receive the title of the post before publishing add_filter("title_save_pre", "SUP_post_title"); # adds some hooks # shows the options in the administration panel add_action("admin_menu", "SUP_add_options_page"); # calls SUP_ping whenever a post is published add_action("publish_post", "SUP_ping_if_new"); # calls SUP_ping_draft when changing the status from private/draft to published # add_action("private_to_published', 'SUP_ping_draft'); # removes the "WordPress official" pinging hook remove_action("publish_post", "generic_ping"); # activates pinging if setting doesn't exist in database yet # (before the user has changed the settings the first time) if(get_option("SUP_ping") === false) { update_option("SUP_ping", 1); } ?> 浦安の美容室 Amour Pico Staff ブログ » 平田ブログ http://www.amour-pico.com/blog 浦安駅から徒歩2分の美容室「アムールピコ」からのお知らせや日常のあれこれを綴ります。 Fri, 04 May 2012 03:06:37 +0000 ja hourly 1 http://wordpress.org/?v=3.0.1 見てきました http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e8%a6%8b%e3%81%a6%e3%81%8d%e3%81%be%e3%81%97%e3%81%9f/ http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e8%a6%8b%e3%81%a6%e3%81%8d%e3%81%be%e3%81%97%e3%81%9f/#comments Fri, 02 Dec 2011 07:33:47 +0000 pico-amour http://www.amour-pico.com/blog/?p=2282 どんどん寒くなってきましたんね(>_<、)

  

  

お休みの日に映画を見に行きました。

  

  

                見た映画はこれです ↓↓↓

  

         

   

   

ホラー映画を映画館で見たのは初めてで、そんなに怖くないと思っていたのですが、結構ビビってしまいました(;゚Д゚)!!  

後ろに人がいるのに  「わっ!!」   とか言ってたので結構うるさい客だったかと。。。   大人しくし見れなかったです。。。

  

甘く見てました!ビビった自分に悔しーい(´Д`)!!

  

今日は夜眠れないなぁ、、、なんて思っていたらメチャクチャ熟睡(-_-)゜zzz…

そんなに繊細ではなかったみたいです(*´∀`*)

  

  

あとUFOキャッチャーを久しぶりにしたんですが、やっぱり一回では取れないですね。。。あと少しで取れそうなんですけど、なかなか落ちてくれないんです(>_<、)

  

  

                

  

   

なんとしても取りたいと思ってやってたらついに・・・    GET!!!

今回は5回で取ることが出来ました(-^〇^-)

  

 

               【クマさんのぬいぐるみ】     カワイイ~~(*´∀`*)/

   

  

                 

   

  

誰かUFOキャッチャーの取るコツを私に教えてくださ~~い\(^o^)/

   

  

]]>
http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e8%a6%8b%e3%81%a6%e3%81%8d%e3%81%be%e3%81%97%e3%81%9f/feed/ 0
もうすぐ http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e3%82%82%e3%81%86%e3%81%99%e3%81%90/ http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e3%82%82%e3%81%86%e3%81%99%e3%81%90/#comments Mon, 28 Nov 2011 07:02:07 +0000 pico-amour http://www.amour-pico.com/blog/?p=2268 最近寒くて朝が更に起きれなくなってしまった平田です。。。

  

  

  

  この前の休みの日にお出かけをしたんです(#^.^#)

  

  

  

               【原宿】    まで行ってきました(^^♪

   

          

  

  

  メチャクチャ人がいっぱい!!     定番の竹下通りを歩いたんですが、人にぶつからないように歩くのに必死・(>0<)      少しの距離なのにこんなに歩くのが大変なの~~゚(゚´Д`゚)゚

と思いながらお店を見回りました。

 

  

   歩いていたら        【イルミネーション発見!!】 

  

 

       

   

   

 

    アッ!!      もうすぐクリスマスなんですね(#^.^#)     綺麗ですねヽ(*´∀`)ノ

                     

   

  

   今年のクリスマスはケーキを食べるぞー!!

  

  

 

 

 

]]>
http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e3%82%82%e3%81%86%e3%81%99%e3%81%90/feed/ 0
http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/2223/ http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/2223/#comments Mon, 14 Nov 2011 08:05:12 +0000 pico-amour http://www.amour-pico.com/blog/?p=2223 ついに・・・・・わたくし     【IPhone】    に変えましたヽ(*´∀`)ノ

  

  

             

  

 

化石携帯と呼ばれていましたが、これで現代っ子の仲間入りだぁぁーー\(^o^)/

 

   

 

と思っていたのですが...全くもって使いこなせませーーん゚(゚´Д`゚)゚

 

  

  

  メールを打ってたらいつの間にか送信してて「空メールですけど何?」と言われ、、、電話をかけようと思ったら全然違うところにかけてしまい。。。アプリなんてどうやって使うのーーー(>_<、)??

  

  

と只今苦戦しながら使っています(;一_一)

  

 

  

こんなにも難しいものとは思っていなかったぞーー( ̄Д ̄)ノ        おそるべし   【IPhone】

  

まだ私には化石携帯が良かったような。。。。。

   

  

  そんなことない!!これからさくさくメール打って、電話したり、アプリを使いこなしてやるーーーー(´ε` )

    

   

  

   初めて     【IPhone】    のカメラで撮った写真

  

  

                    【カメだ!三兄弟】

  

              

   

  

                    【熱帯魚さん達】

  

              

 

 

                     【ウーパールーパー】

  

               

     みんな元気でーす(-^〇^-)♫♫

  

   

  

]]>
http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/2223/feed/ 0
ふぐたろう http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e3%81%b5%e3%81%90%e3%81%9f%e3%82%8d%e3%81%86/ http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e3%81%b5%e3%81%90%e3%81%9f%e3%82%8d%e3%81%86/#comments Mon, 10 Oct 2011 08:42:14 +0000 pico-amour http://www.amour-pico.com/blog/?p=2073 水槽掃除完了。

ちなみに、店長が掃除したんですけどね(^^)  私は見てるだけぇ~(゜゜)

  

  

  

あッ!最近仲間入りした『ふぐたろうくん』が今自分のお気に入りなんです♪♪ミニミニでかわいい~☆

そのふぐたろうを写メしようとしたらカメラを向けた瞬間逃げやがる!!恥ずかしがり屋さんなんだなと思ったら店長のカメラには写ってるーー(゜Д゜)

それどういうことーー!!私のカメラには写りたくないと!?なんてやつ(>0<)

  

  

仕方ないから少し離れて      パシャリ!!

  

右側になんとなくいる『ふぐたろう』

  

 

  

  

]]>
http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e3%81%b5%e3%81%90%e3%81%9f%e3%82%8d%e3%81%86/feed/ 0
前の休み http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e5%89%8d%e3%81%ae%e4%bc%91%e3%81%bf/ http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e5%89%8d%e3%81%ae%e4%bc%91%e3%81%bf/#comments Fri, 07 Oct 2011 06:29:28 +0000 pico-amour http://www.amour-pico.com/blog/?p=2068 今日は天気がいいですね♪ 太陽が眩しいです!!

あッ!前の休みの日にカラー講習に行ってきたんです。始めに毛髪の事を教わり、次にカラーについて聞きました。『へぇー』と思うことや『知ってるな』と思うこともあり面白かったです。

今は本当に勉強することがいっぱいあって楽しいです。解らないこともありますが、講習に行ったり、店長に教わったりしてこれからもっともっと頑張らなきゃいけないなと思いました!!

  

     

講習に行ったときの風景  『休憩中』

あぁーー(>。<)なんて画質が悪いんでしょう↓↓  携帯が古くてキレイに写りません(--;)

早く携帯替えなきゃ!!っと思いつつも今使ってるのが使い慣れてなかなか替えれてません・・・

店長に化石携帯と呼ばれてます(・Д・)

もう少し頑張れ わたしの携帯!!!

]]>
http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e5%89%8d%e3%81%ae%e4%bc%91%e3%81%bf/feed/ 0
くしゃみと鼻水が・・・・・・ http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e3%81%8f%e3%81%97%e3%82%83%e3%81%bf%e3%81%a8%e9%bc%bb%e6%b0%b4%e3%81%8c%e3%83%bb%e3%83%bb%e3%83%bb%e3%83%bb%e3%83%bb%e3%83%bb/ http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e3%81%8f%e3%81%97%e3%82%83%e3%81%bf%e3%81%a8%e9%bc%bb%e6%b0%b4%e3%81%8c%e3%83%bb%e3%83%bb%e3%83%bb%e3%83%bb%e3%83%bb%e3%83%bb/#comments Mon, 03 Oct 2011 08:16:08 +0000 pico-amour http://www.amour-pico.com/blog/?p=2050 今日は、朝からくしゃみと鼻水が止まらない平田です。

最近寒くなってきましたね。そのせいで鼻水が止まらないのか!?それともただの鼻炎なのか!?(>Д<) 

そんな事をお客さんに話しをしたらいい漢方の薬があるよ。と教えてくれました(^^)

早速購入して試してみます。効くといいな~(^0^)

     

    

明日は、お休みだー!!やったーー☆まず歯医者さんに行こう。そしてイクスペアリ?に行って来まーす。一回行ってきたんですが、人の多さにビックリ(゜Д<)まわらずにすぐに退散 三З 明日はちゃんとまわってきまーす。

文章力がなくてすみません。。。読んでくれた皆様ありがとうございま~す!!

]]>
http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e3%81%8f%e3%81%97%e3%82%83%e3%81%bf%e3%81%a8%e9%bc%bb%e6%b0%b4%e3%81%8c%e3%83%bb%e3%83%bb%e3%83%bb%e3%83%bb%e3%83%bb%e3%83%bb/feed/ 0
初めまして http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e5%88%9d%e3%82%81%e3%81%be%e3%81%97%e3%81%a6-4/ http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e5%88%9d%e3%82%81%e3%81%be%e3%81%97%e3%81%a6-4/#comments Sun, 18 Sep 2011 07:27:41 +0000 pico-amour http://www.amour-pico.com/blog/?p=2014 ハイサーイ!

  

  

今月の16日から入りました。平田です。

   

  

まだまだ出来ないことがありますが、アムールピコの一員として頑張っていきますので

よろしくお願いします(^^)/

  

  

ちなみに、沖縄から来ました。まだ浦安にきて1ヶ月も経っていませんので、いろいろと教えて下さい。

   

   

これからよろしくお願いします。

  

   

]]>
http://www.amour-pico.com/blog/%e5%b9%b3%e7%94%b0%e3%83%96%e3%83%ad%e3%82%b0/%e5%88%9d%e3%82%81%e3%81%be%e3%81%97%e3%81%a6-4/feed/ 0