I consider to use a web hosting service as well, what is your general appreciation on dreamhost? I why did you choose it rather than others such as bluehost? Thanks for giving some advise.
[quote comment="12224"]I consider to use a web hosting service as well, what is your general appreciation on dreamhost? I why did you choose it rather than others such as bluehost? Thanks for giving some advise.[/quote]
Tinyau, I got a little problem when transferring my old wordpress database into the one provided by dreamhost. after the transfer, all chinese characters could not be displayed showing ??? while correctly displayed using phpMyadmin. I tried to inverse the process by creating a new chinese article, and this time, the content was displayed properlyon the web but garbage on phpAdmin, do you have any glue?
they are already in utf8_general_ci after the database restore. Even if I write a new post in wordpress, and then save it., the characters appear in garbage in phpmyadmin table viewer while correctly displayed on the web and using a sql query in the terminal. I suspect that it is related to phpMyadmin
[quote comment="12287"]they are already in utf8_general_ci after the database restore. Even if I write a new post in wordpress, and then save it., the characters appear in garbage in phpmyadmin table viewer while correctly displayed on the web and using a sql query in the terminal. I suspect that it is related to phpMyadmin[/quote]
waoo.. it works! I didn't need to set 'utf8_general_ci' as they are all there already.. anyway thanks you.. Do you mind to give a little explanation? this line is a temporary fixe or will be included in later version?
200Gb storage, 真係唔知點用丫……
厲害,哪裡找來的promo code :clap:
去年我是用前年七週年慶的 promo code 777 來申請的
今年的 promo code 看起來沒那麼優了 :bye2:
[quote comment="12219"]厲害,哪裡找來的promo code :clap:
去年我是用前年七週年慶的 promo code 777 來申請的
今年的 promo code 看起來沒那麼優了 :bye2:[/quote]
我都是前年用 "777" 登記的,而這次的 "9999" 是從 DreamHost 官方網頁得來的,沒記錯前年的優惠是 US$97,這次應該是更好,只不過優惠得一天而已。
I consider to use a web hosting service as well, what is your general appreciation on dreamhost? I why did you choose it rather than others such as bluehost? Thanks for giving some advise.
[quote comment="12224"]I consider to use a web hosting service as well, what is your general appreciation on dreamhost? I why did you choose it rather than others such as bluehost? Thanks for giving some advise.[/quote]
前年最初選擇 DreamHost 最主要的原因是有 7 周年的 US$97 優惠,當然還有以下的原因。
1. Full UNIX Shell,那時不是太多 hosting 公司有 shell access
2. 支援 SSH 及 SFTP
3. Crontab support,可以用 cron job backup database 及 blog,那時很多 web hosting 公司都不支援的
4. Host 很多 sub-domain 及 domain,現在已經是無限 sub-domain 及 domain
5. 每星期自動增加的 storage 及 bandwidth
6. 無限 MySQL databases
7. Email support 方面,反應都算快,當然有些人覺得支援不太好,但我覺得不錯
I suppose that you are located in Hong Kong too, how is it when you are using their web management tool, is it smooth?
[quote comment="12227"]I suppose that you are located in Hong Kong too, how is it when you are using their web management tool, is it smooth?[/quote]
沒錯,我是在香港居住的,DreamHost 並不是用一般 Web Hosting 公司使用的 cPanel,而是使用自家編寫的 Web Admin. tool,我覺得都頗清晰及易用,我估計一般使用者應該都沒有難度的。
你好!看到這個消息我最近遇到了一個問題
就是我的domin下面的ftp文件夾用到了100%
那麽以後我還想上傳文件要怎麽辦呀?
雖然可以作75個,但是不知道怎麽結合在一起用
可以指點一下嗎
貓:我不太明白你說什麼?
Hey, I just sign up dreamhost for a two-years plan using the anniversary promo code. It is still valid! Thanks for your info.
User--〉Manage Users那個欄目
Users on "meow's Account" (1 / 75 users)
這個樣子的。但是這個account我用到了100%
是說以後我要上轉東西要把以前的東西消除才可以繼續用嗎?
但是(1 / 75 users)又是什麽意思呢?....
shen:不用客氣。 :happy:
貓: :crazy: 你居然用了 100% storage?足足 200GB storage 你都用盡?(1 / 75 users) 的意思是你的 DreamHost 戶口可以新增最多 75 個 shell / FTP users。
Tinyau, I got a little problem when transferring my old wordpress database into the one provided by dreamhost. after the transfer, all chinese characters could not be displayed showing ??? while correctly displayed using phpMyadmin. I tried to inverse the process by creating a new chinese article, and this time, the content was displayed properlyon the web but garbage on phpAdmin, do you have any glue?
我估計你之前是使用舊版本的 MySQL,由 MySQL 4.1 版本以後,UTF-8 中文的處理較為麻煩,所以有些設定要做的:
1. 在 phpMyAdmin 中,將 database 及所有 tables 的 collation 轉為 "utf8_general_ci"
2. 在 wp-includes/wp-db.php 中,在這句
$this->dbh = @mysql_connect($dbhost, $dbuser, $dbpassword);之後加入
$this->query("SET NAMES UTF8");便可。
they are already in utf8_general_ci after the database restore. Even if I write a new post in wordpress, and then save it., the characters appear in garbage in phpmyadmin table viewer while correctly displayed on the web and using a sql query in the terminal. I suspect that it is related to phpMyadmin
[quote comment="12287"]they are already in utf8_general_ci after the database restore. Even if I write a new post in wordpress, and then save it., the characters appear in garbage in phpmyadmin table viewer while correctly displayed on the web and using a sql query in the terminal. I suspect that it is related to phpMyadmin[/quote]
我上述的第二個步驟是必須做的,你有否修改了 wp-db.php?
waoo.. it works! I didn't need to set 'utf8_general_ci' as they are all there already.. anyway thanks you.. Do you mind to give a little explanation? this line is a temporary fixe or will be included in later version?
shen:你可參考桑林志 » MySQL 4.1x 中文乱码问题,內裡有解釋原因的,至於這句在可見將來的 WordPress 版本都不會包括在內,所以暫時每次升級都需要作出這個修改。