怎麼在excel中把IP轉長整數

為什麼要在excel中把IP轉成長整數

php中有很多先進開發了這樣的工具,例如說ip2long,另外,也有人寫IP V6的轉換工具。

但是我要做批次匯入,從網路上下載了IP對照國別的資料,要做網址轉跳判別使用,我整理完後,需要的IP資料大約十多萬行。 Read more

Google 不為惡 第三彈?

最近看到美國nextag的消息,我不知道為什nextag的流量排名會掉,Google的演算法有其營業秘密,也是企業營運的核心,所以不可能公開,看待這件事,我有幾個想法。

當Google成為主宰者時,要玩掉Nextag或是更大的ebay都是可能的,但是必須提出證明。nextag排名掉了,在這邊提出觀點來和大家分享。 Read more

php 301 redirect

為了避免連結中斷,合法的SEO手法是使用301轉址,在PHP中是這麼使用的。網站搬家,網頁重新設計,通通都可使用301轉址。這個手法是合法的轉址,而不會被視為惡意引導或是欺騙引導,可以放心使用。

<?php
// Permanent redirection
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.somacon.com/");
exit();
?>

垃圾留言機器人程式真的是無所不同其極

我有一個站,最近被垃圾留言機器人攻擊,一共留了260篇的留言給我,針對網站中每一篇文章都留言,沒有一篇放過,我想他們要的就是網站的外部連結(SEO用),所以才用這種方式來進行攻擊。

當然我想這可能是賣鞋子網站包給別人的外包行為,所以才會這樣,不然一般公司為了商譽,是不能做這樣的事。 Read more

部落閣人人會架,巧妙有所不同

最近看到一堆網站,都在推wordpress,而且還有wordpress站長一日速成班,使用的是xampss在上課。

一堆人都在上課,做網路行銷,我看過他們的網站,有的連2分都沒有,自己的網站連google page ranking都沒有了,在教別人網路行銷,似乎好像應該也許可能怪怪的吧?

Read more

the bad service level on StartLogic

I order a service plan on StartLogic , $95.4 USD per year, and $9.99 for domian name.I last year, My customer don’t want to use their site service any more, So that I contact Startlogic, and let them to delete my credit card data, I use another mail account to recive their service mail, I just check the mail, StartLogic charge me for $95.4 USD.

My Issue
1.I let their service engineer remove to cridet card data, they forget remove it, and domain name does not pay any more, and site service charge me $95.4.
2.They charge me site service without domain name, I can not use their any service. They do not know this?
3.The bull shit customer protect policy, they don’t think about the customer ues or not , they just need you pay the service fee.

Why I don’t use their any service but I still need pay? I don’t know the reason they could charge me.

I use their service for 2 year, I have several think.
1.Their site techology is not good enough, I can not use Chinese file name, but other hosting site.
2.Their site speed is not stateable. I think they over sell to many customer, do you want your site is slow?
3.Their engineer does not have well

In last, I cancel my account, And they deduct my $35 for early stoping service. God , I need to pay the credit card service fee for the oversea order, and $35 deduct.

Totaly I lost for $40 USD, Do you want to a hosting plan, I will not suggestion you to order Startlogic hosting plan.

死老外,服務沒有做好,還要跟我收錢,請千萬不要買StartLogic的網站方案,不然您遇到我這個沒有用服務還要扣錢的鳥事的時候,真的會很幹。

2012/01/09 再回來看這篇,StartLogic和他們的相關網站都有發信叫我搬回去,價格更低,而且宣稱服務改善,我怎麼看,網路上還是一堆人在罵,老實說,這個服務用一次就好,沒有必要把自己辛苦經營的成果拿回去賭看看。那樣的主機,只會吸引到不好的客服,如果你注重SEO,還是付多一點點的錢,買好一點的主機吧。

2017/02/07 五年後回來看這篇,目前我們自己架主機,自己管理,不用再受主機商的鳥氣。不要以為國外的主機商鳥,台灣的主機商也很鳥,比如說智邦、匯知、捕夢網數位科技,都一樣啦。

wordpress 新版功能

之前版本的wordpress,在category(文章分類)和tag(文章標籤)上都是使用slug做為顯示內容,而slug其實也不是什麼特別的東西,就是經過url編碼的tag和category,當然,這沒有什麼特別的,但是很多的網站都不支援這樣的功能,因為分類要在網址上顯示,當然對於不支援非英語系國家來說會有一些的問題。常常出現的就是internal error 500,其實,有很多的外掛針對這個問題做出理,不外乎是使用字典翻譯或是羅馬拼音,都是避免非英語系國家語言編碼所造成的問題。

Read more