顯示具有 xampp 標籤的文章。 顯示所有文章
顯示具有 xampp 標籤的文章。 顯示所有文章

2013年5月30日 星期四

lampp security username


人是健忘的,win 使用慣了,改用 unix 家族

當你執行了
lampp security
之後,
如果你設定了存取頁面的密碼,

存取頁面時,會要求輸入使用者名稱與密碼,
使用者名稱為:
lampp

2012年9月25日 星期二

ubuntu xampp php cli


http://ubuntuforums.org/showthread.php?t=1224146

/opt/lampp/bin/php is the command-line php installed by Xampp, so you need to add this line to your .profile:

Code:
PATH="/opt/lampp/bin:$PATH"

2012年8月29日 星期三

xampp ubuntu 開機時自動啟動




xampp ubuntu 開機時自動啟動


ubuntu server (startup OR boot)xampp

http://ubuntuforums.org/showthread.php?t=1584852

1) Navigate to /etc/init.d
eg ' 
cd /etc/init.d/
'
2) Create a new file with nano eg 'nano'
sudo vi startup_lampp
3) Put the following into the file
#!/bin/sh
/opt/lampp/lampp start


4) Give execution permission to the file
eg '
sudo chmod +x startup_lampp
'
5) Check this by typing 'ls -l lampp' , the filename should be green if it worked
6) now use the following command to add it to startup runlevels
' 
update-rc.d -f startup_lampp defaults
sudo update-rc.d -f startup_lampp defaults
'


2012年8月27日 星期一

安裝 xampp 到 64 bit ubuntu


sudo tar xvfz download.php?xampp-linux-1.8.0.tar.gz -C /opt
我遇到一個問題:安裝 xampp 到 64 bit ubuntu

所以我使用以下的關鍵字:
64 bit ubuntu xampp

google 到一個網頁:
http://preprocess.me/how-to-run-xampp-on-64-bit-linux

網頁中看到了一個指令:
sudo apt-get install ia32-libs

指令執行結果:xampp 順利執行了