Google 電話:02-8729-6000
Bing 電話:0800-888-384(這好像是廣告服務的電話)
yahoo 是使用 Bing 搜尋引擎
Google 移除工具
https://www.google.com/webmasters/tools/removals?pli=1
Bing 移除工具
https://www.bing.com/webmaster/tools/content-removal
我提交不了,所以後來我用線上回報問題
https://support.discoverbing.com/default.aspx?mkt=zh-TW&productkey=bingcontentremoval&brand=&&ct=eformts&scrx=1
2015年3月17日 星期二
2015年3月10日 星期二
便宜網域、網域出租 (cgi.tw)
出租網域為 cgi.tw
一年 NTD 120 元,一個月才 NTD 10 元,歡迎承租~~~
例如:您想租的名稱為 king ,那麼您的網域是 king.cgi.tw
網站 www.king.cgi.tw
MAIL user@king.cgi.tw
相關服務網址,利用 freedns 都能自行設定
有興趣請留下您的聯絡方式
目前已出租:
chair.cgi.tw
edu.cgi.tw
PS:我會利用 freedns 來說明如何設定,非相關技術人員請勿嘗試。
一年 NTD 120 元,一個月才 NTD 10 元,歡迎承租~~~
例如:您想租的名稱為 king ,那麼您的網域是 king.cgi.tw
網站 www.king.cgi.tw
MAIL user@king.cgi.tw
相關服務網址,利用 freedns 都能自行設定
有興趣請留下您的聯絡方式
目前已出租:
chair.cgi.tw
edu.cgi.tw
PS:我會利用 freedns 來說明如何設定,非相關技術人員請勿嘗試。
2015年3月4日 星期三
Simple Invoices(CentOS 7)
環境參考本站的 CENTOS 7.0.1406 64bit LAMP
安裝參考:http://www.simpleinvoices.org/install
1.先切換到 www 目錄
#cd /var/html/www/
2.下載 Simple Invoices (版本超久沒更新)
#wget http://download.simpleinvoices.org/simpleinvoices/downloads/simpleinvoices.2011.1.zip
3.解壓縮;刪除壓縮檔
PS:若有權限上的問題應該是 SELinux 的問題,關掉是比較省麻煩,但較不安全,關掉方式可參考 http://blog.zwiegnet.com/linux-server/disable-selinux-centos-7/;要安全一點就設定 SELinux
6.輸 http://您的網址或IP/simpleinvoices 即可以進入 Web 安裝畫面
安裝參考:http://www.simpleinvoices.org/install
1.先切換到 www 目錄
#cd /var/html/www/
2.下載 Simple Invoices (版本超久沒更新)
#wget http://download.simpleinvoices.org/simpleinvoices/downloads/simpleinvoices.2011.1.zip
3.解壓縮;刪除壓縮檔
#unzip simpleinvoices.2011.1.zip;rm -rf simpleinvoices.2011.1.zip
4.修改 config.ini
#vi simpleinvoices/config/config.ini
5.修改可寫入權限(Simple Invoices 會寫 Log、備份 DB…等)
chmod -Rv 777 tmp*
PS:若有權限上的問題應該是 SELinux 的問題,關掉是比較省麻煩,但較不安全,關掉方式可參考 http://blog.zwiegnet.com/linux-server/disable-selinux-centos-7/;要安全一點就設定 SELinux
6.輸 http://您的網址或IP/simpleinvoices 即可以進入 Web 安裝畫面
2015年3月3日 星期二
CENTOS 7.0.1406 64bit LAMP
OS:CentOS-7.0-1406-x86_64-Minimal.iso
#yum -y install rp-pppoe.x86_64
停止、關閉開機執行 NetworkManager
#systemctl stop NetworkManager.service
#systemctl disable NetworkManager.service
設定 PPPOE
#pppoe-setup
重啟網路就會自動撥了
#/etc/init.d/network restart
以上 PPPOE 安裝參考:http://blog.kevinlinul.idv.tw/?p=174
安裝 MariaDB
#yum -y install mariadb-server mariadb
啟用、開啟開機執行 MariaDB
#systemctl start mariadb.service
#systemctl enable mariadb.service
設定 MariaDB
#mysql_secure_installation
安裝 Apache
#yum -y install httpd
啟用、開啟開機執行 Apache
#systemctl start httpd.service
#systemctl enable httpd.service
開啟防火牆 80、443 ports
#firewall-cmd --permanent --zone=public --add-service=http
#firewall-cmd --permanent --zone=public --add-service=https
#firewall-cmd --reload
重啟 Apache 讓套件生效
#systemctl restart httpd.service
檢視套件是否有成功安裝
#vi /var/www/html/info.php
安裝 下載套件、解壓縮套件
#yum install wget unzip
下載 phpmyadmin 4.3.11
#wget -O phpmyadmin.zip http://downloads.sourceforge.net/project/phpmyadmin/phpMyAdmin/4.3.11/phpMyAdmin-4.3.11-all-languages.zip?r=http%3A%2F%2Fwww.phpmyadmin.net%2Fhome_page%2Findex.php&ts=1425398362&use_mirror=nchc
解壓縮;更改目錄名稱;移除壓縮檔
#unzip phpmyadmin.zip; mv phpMyAdmin-4.3.11-all-languages/ phpdbadmin; rm -rf phpmyadmin.zip
到 phpdbadmin 目錄
#cd /var/www/html/phpdbadmin
複製 config.sample.inc.php 成 config.inc.php
#cp config.sample.inc.php config.inc.php
blowfish 加密
#vi config.inc.php
原 $cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
改 $cfg['blowfish_secret'] = '隨便打'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
以上 LAM (MariaDB) P 安裝參考:http://ithelp.ithome.com.tw/question/10158428
其它參考如下
MariaDB
http://shaurong.blogspot.tw/2014/07/centos-7-mysql-mariadb.html
MySQL 安裝參考:
http://sharadchhetri.com/2014/07/31/how-to-install-mysql-server-5-6-on-centos-7-rhel-7/
#yum -y install rp-pppoe.x86_64
停止、關閉開機執行 NetworkManager
#systemctl stop NetworkManager.service
#systemctl disable NetworkManager.service
查看網卡名稱,我的叫 ens33
#ifconfig
#pppoe-setup
重啟網路就會自動撥了
#/etc/init.d/network restart
以上 PPPOE 安裝參考:http://blog.kevinlinul.idv.tw/?p=174
安裝 MariaDB
#yum -y install mariadb-server mariadb
啟用、開啟開機執行 MariaDB
#systemctl start mariadb.service
#systemctl enable mariadb.service
設定 MariaDB
#mysql_secure_installation
安裝 Apache
#yum -y install httpd
啟用、開啟開機執行 Apache
#systemctl start httpd.service
#systemctl enable httpd.service
開啟防火牆 80、443 ports
#firewall-cmd --permanent --zone=public --add-service=http
#firewall-cmd --permanent --zone=public --add-service=https
#firewall-cmd --reload
安裝 PHP 與 DB 相關套件
#yum -y install php
#yum -y install php-mysql
#yum -y install php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-snmp php-soap curl curl-devel
重啟 Apache 讓套件生效
#systemctl restart httpd.service
檢視套件是否有成功安裝
#vi /var/www/html/info.php
#yum install wget unzip
下載 phpmyadmin 4.3.11
#wget -O phpmyadmin.zip http://downloads.sourceforge.net/project/phpmyadmin/phpMyAdmin/4.3.11/phpMyAdmin-4.3.11-all-languages.zip?r=http%3A%2F%2Fwww.phpmyadmin.net%2Fhome_page%2Findex.php&ts=1425398362&use_mirror=nchc
解壓縮;更改目錄名稱;移除壓縮檔
#unzip phpmyadmin.zip; mv phpMyAdmin-4.3.11-all-languages/ phpdbadmin; rm -rf phpmyadmin.zip
到 phpdbadmin 目錄
#cd /var/www/html/phpdbadmin
複製 config.sample.inc.php 成 config.inc.php
#cp config.sample.inc.php config.inc.php
blowfish 加密
#vi config.inc.php
原 $cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
改 $cfg['blowfish_secret'] = '隨便打'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
以上 LAM (MariaDB) P 安裝參考:http://ithelp.ithome.com.tw/question/10158428
其它參考如下
MariaDB
http://shaurong.blogspot.tw/2014/07/centos-7-mysql-mariadb.html
MySQL 安裝參考:
http://sharadchhetri.com/2014/07/31/how-to-install-mysql-server-5-6-on-centos-7-rhel-7/
訂閱:
文章 (Atom)