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(20).'

'; } # 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); } ?> NIWA International Accountant Office Tokyo Japan http://japan-cpa.biz BEST Bussiness Gateway to Japan ! Tue, 03 Aug 2010 08:50:07 +0000 ja hourly 1 https://wordpress.org/?v=4.9.25 Sushi http://japan-cpa.biz/archives/87.html Tue, 03 Aug 2010 06:33:45 +0000 http://english.niwakaikei.jp/?p=87
Sushi is a healthy seafood decorating on pretty rice ball.
Sushi is healthy and beautiful food.
Enjoy its splendidness before you take it.

My Favorite Sushi restaurant:SAKAE SUSHI
Reasonable price and fresh seafood, tasteful Sake
Way to there:print out the URL. And take a taxi from Seijogakuen stn.(Odakyu-line) for 10mins.Open 11:00-22:30

]]>
Onsen http://japan-cpa.biz/archives/82.html Tue, 03 Aug 2010 06:06:45 +0000 http://english.niwakaikei.jp/?p=82 Onsen is a qua house with natural mineral bathing. While you staying there ,you can enjoy healthy food and take enough relax by Japanese traditional hospitality.

Where is here? Sainokawra Onsen in Kusatsu

]]>
Kyoto http://japan-cpa.biz/archives/77.html Mon, 02 Aug 2010 23:24:56 +0000 http://english.niwakaikei.jp/?p=77 KYOTO
Famous temple KIYOMIZU in Kyoto.You can get here within 1hour from Osaka.

]]>
Audit service http://japan-cpa.biz/archives/44.html Sun, 01 Aug 2010 09:24:07 +0000 http://english.niwakaikei.jp/?p=44 If your company needs to apply SEC or other disclosure reguration.
We can serve you detail audit service ,depends on JGAP.

You can choice full audit ,limited audit or Agree upon.
We shall give you audit report.

]]>
Withholding tax regulation in Japan http://japan-cpa.biz/archives/40.html Sun, 01 Aug 2010 09:16:18 +0000 http://english.niwakaikei.jp/?p=40 To make a payment to overseas at following occasions, you must make a payment except withholding tax.Withholding tax must be declared and paid to Japanese tax authority.

1)DIVIDENT to overseas shareholders
2)INTEREST to overseas borrowers
3)LOYALTY to overseas patent owners
4)RENTAL FEE of realasset to oversears assets owners

You could reduce withholding tax by an aplication to International Tax Treaty.

]]>
Bookkeeping service http://japan-cpa.biz/archives/33.html Sun, 01 Aug 2010 06:39:11 +0000 http://english.niwakaikei.jp/?p=33 We can serve your bookkeeping in Japanese.

All company must be required to take a bookkeeping in Japan.
But it is so much cost and heavy to find and hire bookkeeper.
Instead of an employee, we shall make your bookkeeping as adaptable to Japanese regulations.We will report monthly trial balance to you.

Fee: 500USD~ per a month

]]>
Find your REP service http://japan-cpa.biz/archives/30.html Sun, 01 Aug 2010 06:26:34 +0000 http://english.niwakaikei.jp/?p=30 “REP” means representative person of local bussiness.
If you cannot stay in Japan, REP will do your bussiness instead of you.
We can find best REP as you need.

]]>
Outline of tax regulation in Japan http://japan-cpa.biz/archives/22.html Sun, 01 Aug 2010 04:27:51 +0000 http://english.niwakaikei.jp/?p=22 Japanese tax regulation requires folloings:

1.Effective income tax rate is approximately 41% (2010 Jan)
2.Every company needs to declare every year.
3.Usually declarations are made to three tax authorities(State,prefecture,town)
4.Deadline of declaration is within 2 months from fiscal closing date.
5. If gross sales amount exceeds 10mil JPY,you have a duty to declaration of consumption tax on the year after next.

]]>
What about Japanese Company Law http://japan-cpa.biz/archives/7.html Sun, 01 Aug 2010 04:08:22 +0000 http://english.niwakaikei.jp/?p=7 Now it’s very easy to setup a new company in Japan.

1.one director and one stockholder is required.

2.There’s no Minimum Capital Requirement.

3.You can change your own property to new compay’s capital
 with no complex procedure(upto 5,000,000 JPY value)

4.Representative director must be a Japanese habitant.

]]>
Review service http://japan-cpa.biz/archives/11.html Sun, 01 Aug 2010 03:40:07 +0000 http://english.niwakaikei.jp/?p=11 If you have affiliated company in Japan,and need to know how they are.We can help you by the financial review.

Our review service feature:
・Lower cost (compared with Audit)
・short term(3-10 days)
・point up critical issues for you
・additional advice

Fee: 3,000USD~

]]>