nslookup [IP]
查詢IP的domain name
2012年10月11日 星期四
2012年9月17日 星期一
Eclipse 出現 Password Required 視窗
在家中寫程式沒遇到這個問題,但是在公司確遇到了
解答:
Window ->Preference -> General -> Network Connections
Active Provider :Native 改成 Direct
(如圖)
Finish.
2012年9月12日 星期三
Apache and MySQL 重開指令(ubuntu)
Apache
MySQL
sudo /etc/init.d/mysql start
sudo /etc/init.d/mysql stop
sudo /etc/init.d/mysql restart
sudo /etc/init.d/apache2 start
sudo /etc/init.d/apache2 stop
sudo /etc/init.d/apache2 restart
sudo /etc/init.d/mysql start
sudo /etc/init.d/mysql stop
sudo /etc/init.d/mysql restart
2012年9月11日 星期二
LAMP 安裝
1.
Apache
sudo apt-get install apache2
sudo /etc/init.d/apache2 stop # 參數可以是 restart 或 start 等
PHP
sudo apt-get install mysql-server-5.0
sudo /etc/init.d/apache2 restart
MYSQL
sudo apt-get install php5
sudo mysqladmin -u root -p password <輸入您要的新密碼>
sudo /etc/init.d/mysql restart
sudo apt-get install phpmyadmin
2.
個別路徑
Apache2
/etc/apache2
Apache2 web
/var/www
PHP5
/etc/php5
MYSQL
/etc/mysql
Apache
sudo apt-get install apache2
sudo /etc/init.d/apache2 stop # 參數可以是 restart 或 start 等
PHP
sudo apt-get install mysql-server-5.0
sudo /etc/init.d/apache2 restart
MYSQL
sudo apt-get install php5
sudo mysqladmin -u root -p password <輸入您要的新密碼>
sudo /etc/init.d/mysql restart
sudo apt-get install phpmyadmin
2.
個別路徑
Apache2
/etc/apache2
Apache2 web
/var/www
PHP5
/etc/php5
MYSQL
/etc/mysql
WAMP安裝
1.
Windows 7 環境下
Apache 2.2xxx版本
http://httpd.apache.org/download.cgi
PHP 5.3
http://windows.php.net/download
MySQL(版本5.x版)
http://dev.mysql.com/downloads/
2.
以下參考版本
Apache Win32 Binary including OpenSSL 0.9.8t (MSI Installer)
PHP VC9 x86 Thread Safe 的Install
MySQL 5.x.x
3.
Apache C:\Apache
PHP C:\PHP
MySQL C:\Program Files (x86)\MySQL
4.
路徑:選擇Apache安裝的位置(C:\Apache)
5.
完成
Windows 7 環境下
Apache 2.2xxx版本
http://httpd.apache.org/download.cgi
PHP 5.3
http://windows.php.net/download
MySQL(版本5.x版)
http://dev.mysql.com/downloads/
2.
以下參考版本
Apache Win32 Binary including OpenSSL 0.9.8t (MSI Installer)
PHP VC9 x86 Thread Safe 的Install
MySQL 5.x.x
3.
Apache C:\Apache
PHP C:\PHP
MySQL C:\Program Files (x86)\MySQL
4.
路徑:選擇Apache安裝的位置(C:\Apache)
5.
完成
2012年5月15日 星期二
select 找值的陣列
在select 裡面 我們 選擇了一個值,但有時也需要知道它第在幾個位置
以下是找陣列的方式(不知道還有沒有更好的方式)
$array_number = "";
$("#test").children().each(function(i){
if($(this).val() == $("#test option:selected").val()){
$array_number = i;
}
});
以下是找陣列的方式(不知道還有沒有更好的方式)
$array_number = "";
$("#test").children().each(function(i){
if($(this).val() == $("#test option:selected").val()){
$array_number = i;
}
});
2012年5月14日 星期一
訂閱:
文章 (Atom)