日本語
English
Français / French
Deutsch / German
Español / Spanish
Português / Portuguese
Italiano / Italian
Nederlands / Dutch
dansk / Danish
norsk / Norwegian
suomi / Finnish
svenska / Swedish
język polski / Polish
Ελληνικά / Greek
Български език / Bulgarian
Hrvatski / Croatian
čeština / Czech
limba română / Romanian
русский язык / Russian
اللغة العربية / Arabic
हिन्दी / Hindi
中文(簡体) / Chinese(Simplified)
中文(繁体) / Chinese(Traditional)
한국어 / Korean

Note to WordPress 2.8!

WP suddenly look like an official warning. Press APPUGUREDOBOTAN should not be automatic!

2.8 Matters to be Attended to do automatic upgrades - WP formula

WordPress 2.8 was released recently during the automatic upgrade to the phenomenon has been reported that the file is deleted on the server. According to the report, if you encounter this problem on the server and WordPress that other files will be deleted.

2.8 has been confirmed that there is a bug. This bug is fixed it without the automatic upgrade, please upgrade manually.

It's terrible. Recent entry into the screen and control "please update" We are now and always appears in guidance, and many people might have done accidentally. I hope it's safe to 1:00取RI下GERE? On how hard I guess.

Update the base from a backup! However, the full update each time we do not often put out there as a practical matter. WP and affect much more than the related files will usually unexpected.

The present moment is the upgrade manually (FTP overwrite) the corresponding user side, and wait for someone to come KONARE. And so the bug will be reduced in this way.


2009年6月15日(月) 12:23 コメント(0)   トラックバック(0)

Moving aside

Behind the scenes of a server transfer.

In fact, the behavior of the plug-in that way, so multilingual URL, sub-folders (domain.com /??/) from sub-domain (??. Domain.com /) I tried to change to ... ... the result was defeat . What to do, speaking of the Mod_Rewrite is.

If you have a simple introduction for those not aware, "Mod_Rewrite" is, URL rewrite, the URL it looks like the plug-in that allows users to freely access the actual destination. Users are aware that the public is the first I think, we should have at気DZUKANU benefit. For example, https: / /打TAZU to the domain name by typing a URL, and automatically https: / / been taken to an encrypted page that starts with, and work to improve the convenience.

However it is difficult to use this. If GUGURE, explanations and examples are a lot, been too掴MI behavior when combined with another rule.

Various reference sites
Module mod_rewrite - URL Rewriting Engine
Reference mod_rewrite - dawgsdk.org

URL is the final destination, "http://catswhiskers.jp/ article URL? Lang = language" has been confirmed.

So first, if it was the language specified in the sub-domain, for example, "http://en.catswhiskers.jp/" a "http://catswhiskers.jp/lang=en" must be converted. That will change the domain part is the key here, so even if only a sub-domain is treated as a server to another point. That is not to [P] internal proxies option, it appears to change the URL is redirected. Therefore, you can set the following: OK, I should ...

RewriteCond% (HTTP_HOST) ^ (en | fr | de .. ... .. | ja) 
RewriteRule (.*) http://catswhiskers.jp/ $ 1? Lang =% 1 [QSA,P] 

Why this result is "404 Not Found." Unlike the normal and 404, have been shown to reduce the sentence only (XREA server). 躓KIMASHITA suddenly here. [P] try to remove the option appears to be redirected to the normal and without problems. Rewrite rules that is not wrong but I Mod_Proxy ... ... XREA server may not be valid?

Oh, the SOREMASU the subject, [QSA] Another option is to take over the other query (eg other? Id = 1 if the TSUITETA). RewriteRule query is not included in the decision. When using a CMS, and note HAMARI so often forgotten. If you want to match something in the query part of the way, RewriteCond% (QUERY_STRING) Please allow me to determine.

But I digress. I tried [P] around options, it did not. 404換WAっhow to write and think If you know what they say and try to log RewriteLog RewriteLogLevel and I've set up, XREA this option is not used very much in the way ... just try and imagine that in , gave up as soon as we have been approaching the limits of spiritual loose.

Well, not so lightly in the end I said, I have to convert to the specified query language is not a subfolder. Than the setting.

RewriteCond% (REQUEST_URI) ^ / (en | fr | de .. ... .. | ja) 
RewriteRule ^ [-a-zA-Z] +/(.*) / index.php / $ 1? Lang =% 1 [QSA,L] 

The URL for this site-specific, / blog / under the category name / date / name of article. Html is a structure. And in fact the category name is to be displayed properly even without any. This is a change in the name of the category in the future, because the old URL to access the article. To achieve this, the entity has no name of the category (I know and see the image) and insert the name of the category links in the plugin, and internal processing. Rewrite rules for the ... ...

RewriteCond% (REQUEST_URI) ^ / (en | fr | de .. ... .. | ja) / blog / [^/] + / ( [0-9_] +/.*)$ 
RewriteRule (.*) / index.php / blog /% 2? Lang =% 1 [QSA,L] 

This (above) and this (below).

RewriteCond% (REQUEST_URI) ^ / blog / [^/] + / ( [0-9_] +/.*)$ 
RewriteRule (.*) / inde.php / blog /% 1 [QSA,L] 

Then continue further, Word Press standard rules (below) will be.

RewriteCond% (REQUEST_FILENAME)!-F 
RewriteCond% (REQUEST_FILENAME)!-D 
RewriteRule. / Index.php [QSA,L] 

I have quite a lot of confusion. Yeah, I'm confused (laughs). It is because of a lack of understanding I'm probably well渡SENAI rewrite the URL is the following rule. Originally, the "rewriting of the language specified" -> "rewrite the name of the category"渡SERE in order, I write more neatly. Eventually,

  1. Specified in the language and enter the URL Category Name
  2. In the language specified, and not the name of the category URL
  3. Any language, and enter the URL Category Name
  4. Any language, and not the name of the category URL

4 is a write up in separate rules of the road. To pursue the cause, RewriteLog may have only been tested up to get the test server. Enter a URL rewrite rule, and as a result there are long for a Web tool. .

Incidentally, WordPress "(.*)" rule rather than the standard RewriteRule "." I have done, personally, is very strange. This is "/ test.html" character is converted only the first access to "/ index.phpest.html" (RewriteRule the first / is not included in the decision) I have a feeling that ... ... I have seen this and actually look at the article, but it's not wrong.

This is the tentative completion by the end but very much the directory /終ENAI in the URL so that they reached on an error in the destination file is not accessible (with no extension), and finally / if to compensate for the or. ... Likely to have a certain impact on the rewrite.

The next step is to talk about specific XREA, PHP colors are many people working in safe mode or there is something to work with, CGI forms, called PHP mode is to move the fixture. It. Htaccess to "AddHandler application / x-httpd-phpcgi. Php" You have been described.

That, WordPress is a when a suspicious move. When used in combination with Mod_Rewrite, CGI PHP mode is losing out NARURASHIKU PathInfo information, articles by the URL format is individual articles見RENAKU (fiscal). After all, we are back in safe mode operation. To view the article is fine, or failed to upgrade automatically. Other limitations of PHP: Safe Mode - Manual Please help.

Oh, yeah. 直SHIMASHITA incidentally also get an error after the post comments (and perhaps finally ...). Because of the URL or form post, after post http:// ~ / / ~ a slash and are skipped over so that it addresses, including one in a row, I made a plug-in you just rewrite it ( wry smile all the way ...). If you know someone who is more fundamental Shina Tadashi Please m (_ _) m


2009年3月31日(火) 12:56 コメント(0)   トラックバック(0)

Google Adsense and Amazon Affiliate subtle relationship

Apparently even Google Adsense and Amazon affiliate He might have been using the iframe tag, and when I put something wrong with the behavior of the browser to your blog.

As for what's so funny Specifically, when you post a list (ie Home) is not an article yesterday in the Amazon affiliate for the iframe, Firefox Why is the Google ads. Meanwhile, Google Chrome for a few days ago Affiliate Product in the iframe (AirStation) has already been shown. The cache was still funny? Are normal. IE is normal.

The difference between Firefox and InternetExplorer appearance of

Click on the title, but both displayed correctly and do not appear in separate articles. In principle it is not okay. Well, I do have a cause?

Well, to begin a Valid XML iframe tag is incompatible with the WAKE, referred to in the article below and I'll object to the tag.

Ad Script object to read the tag - Asian moth Roh

See also TSUIDENI here, or find an article that followed on from here and all that.

Optimize Google Adsense to explore possible - TICKLER'S BUMNUM DAYS

By the way, "you really make money with Affiliate!" And so I did not help too much, I have put in place so as not to interfere as much as possible. Half what it was like trying things that are sought in the world, less than half the cost if it賄ERE. To forgive me a little bit.


2009年2月2日(月) 23:22 コメント(0)   トラックバック(0)

Spleen Permalink

Changed the article links. I thought the link on the street until it works has been quite a lot of trouble. Each search cache is waiting to become what the hell.

Specifically, what kind of link is that, "/ blog / category / y_m_d / postname.html" setting. First you have to represent my blog "blog" separated, then "category", and to date underscore the leash, "y_m_d" compartmentalization in the last article on the file name of the setting. This is the first classified as a natural form. By the way, Movable Type and Word Press is the real difference作りませんfiles, so the above is based on the view (and search engines to understand) treatment.

問題なfirst glance seems we are, then why the title "melancholy" I just say that if the server internal links identified by the name "/ blog / y_m_d / postname.html" to be. That "category". Because the category may change later. Tree has changed and also want to maintain links are permanent, I do not think it's good category. Then category from the first said no, but it's not good, but the search engine divided into the category I want to know what is.

In order to solve the dilemma, ModRewrite using "/ blog / category / y_m_d / postname.html" to "/ blog / y_m_d / postname.html" replace, but this setting is the most heinous of melancholy …… Described above in the Word Press file作りませんentity. Instead, using ModRewrite, PHP, "PATH_INFO" a mechanism to specify the article to appear in it. "PATH_INFO" is sometimes seen in the URL "~ xyz.php / path / info /" the guy. This is already set. Htaccess file to be written, not to interfere with this added to him. This blog is more multilingual as you know by Mashi Tei, it is also using ModRewrite. These three are all set to work. Htaccess file書かねas well as to set the description to have him in the head, were the particulars……

NANISE URL rewrite the system and say, running well, I do not know whether they look to, which set up there, and the settings are wrong, which I guess the only way. This exercise in futility and感たる! It is now running very high-handed set to be a flaw somewhere you would not come out in great fear of state orだっ. The simulator is a regular expression There are some (for example, this), ModRewrite simulator is not somewhere? (Hunger,

Now that the file name to a separate article to return to work when λ.. Popular products hall hall ...


2008年8月11日(月) 23:33 コメント(0)   トラックバック(0)

WordPress later from MovableType

Migrate to.

Apart from the MT is not bad, I really have advantages and disadvantages of WordPress, but the plug-in for making it so.

There are still defects, but I would like to resolve brother.


2008年7月27日(日) 17:44 コメント(0)   トラックバック(0)

In progress.

The situation is such KANJI.

Setting screen image
Image Results

Until you can still take a little bit.


2008年7月6日(日) 19:20 コメント(0)   トラックバック(0)

All your post are translate by us.

You can get top-secret project due to update the blog is stuck.
Speaking of design changes, is it?But do not let you skip it?
MovableType4.2 official version is displayed, along with a folder and change and configuration.
| ω・`) I am actuallyラWordPress back on the proposed changes a little off.
Do you have any last minute after the article was an increasing number of stealth, even though, please do not worry about (laughs).

You think you know the original title here.


2008年6月16日(月) 23:13 コメント(0)   トラックバック(0)

It passed the U-TA-beard NERU the entirety Mu

Is dubious to me (laughs).There was no dream, but I'm good.

Head of the doubt is not a good time might be a law of conservation of energy, given the first "and have to" get the word is done, right?Water is a universally exist on this planet that can be expected from a very stable material reasons.The upset the stability of the energy from outside is necessary for any reason."External water molecules + + molecular oxygen molecules of hydrogen energy →" If that is the case, but the "hydrogen-oxygen molecule → water molecule + + external energy" is broken up into.This means "water splitting" → "formation water" and I'll just start back to nothing.

It may seem obvious, as I heard, but surprisingly important.Water and electricity generated by the fuel cell is out of the same reasons.So, leaving only water from the fuel cell is environmentally friendly, is seen not only in the second half気づきます.Then the hydrogen and oxygen from where he did, to see that I do not know Eco.Thermal electric power plant and power, pounding the earth not to break it'll be tough.

Now hundred steps to let people, under water at room temperature catalyst to break down as part of the reaction was very mild.The car will run as the amount of oxygen and hydrogen to be generated and if you want to sincerely…… + catalyst in the ultra-efficient solar electrolysis to achieve!I told her, but it is believable.

Do not, but to the public what they are trying to see that point.The investment in the fund-raising and it would be easy to understand (laughs).Levant to sell a certain amount of the NANTENAI it will be the introduction of a sudden.One sample provided to me and I know試せbe the first time.

Incidentally doors, water batteries have become a thing of you.This is exactly the story of this relationship is not only set by the electrode and the water can be + / - ion is the melting of the principles of electricity will occur.Batteries to be stopped short of a step-like state and what benefits there is that "it is highly likely saved".The use of batteries to discharge a little at a time, when the need arises, you may not use it.Out of the batteries are old and I thought it might be faster.


2008年6月13日(金) 21:11 コメント(0)   トラックバック(0)

Google AJAX Language API

Friends tell me I got it from, Google AJAX Language API will be published had been too.

This makes it, anyone can make multi-lingual site!API might be…….May be, it is still precision-still the place.Although similar to other translation sites and objects, Javascript, anyone could use it is a great moment!

mycom articles in the sample source may be understandable, it is worrisome once please.API, I get a feeling of simplicity.

A gift from Google - Google AJAX Language API, easy to translate site

The above example to refer to the source, the blog <p> tag in the translation of the letter I tried to make a sample.Snaky translate into the design (laughs).After not too long is translated into a (possibly limit API).

Force of a little idiomatic to the public.


The sample script: please select the language.

arabicchinachina-CNchina-TWdutchfrancegermany
italyjapankoreanportugueserussiaspainusa