Skip to main content

Install Drupal 7 into the lampp


ပထမဆံုး ကုိ drupal ကုိ သြင္းမယ့္ဖုိင္ထဲကုိ Terminal ထဲကေနအရင္သြားလုိက္ပါ။

ေရာက္ျပီဆိုရင္ ေအာက္က ကြန္မန္းကုိ ကူးျပီး terminal ထဲမွာ paste လုပ္ျပီး durpal 7 ကုိ ေဒါင္းလုပ္ဆြဲလုိက္ပါ။

wget http://ftp.drupal.org/files/projects/drupal-7.21.tar.gz 

ေဒါင္းလုပ္ျပီးရင္ေအာက္ ေအာက္က ကြန္မန္းနဲ့ tar ဖိုင္ကုိ ျဖည္ပါ။

sudo tar -xvzf drupal-7.21.tar.gz

 ျပီးရင္ druapl အတြက္ database ကုိ ေအာက္က ကြန္မန္းသံုးျပီးလုပ္လုိက္ပါ။


mysqladmin -u root -p create drupal_database_name

ျပီးရင္ေတာ့ durpal ဖိုင္ေတြကို permission ေပးဖုိ့အတြက္ ေအာက္ကကြန္းေတြတေၾကာင္းျခင္းထည့္ပါ။

sudo chmod a+rx drupal-7.21

ျပီးရင္ေတာ့ drupal အတြက္ config ဖိုင္ေတြအလုပ္လုပ္ဖုိ့အတြက္ေအာက္က ကြန္မန္းေတြနဲ့ဖုိင္လုပ္ပါ။

mkdir sites/default/files

chmod a+w sites/default/files
sudo cp /var/www/drupal/sites/default/default.settings.php /var/www/drupal/sites/default/settings.php
sudo chmod a+w drupal/sites/default/settings.php
ျပီးရင္ေတာ့လုပ္ေနၾကအတုိင္းပဲ http://localhost/ ေနာက္မွာ drupal ဖုိင္ထားထားနဲ့ေနရာကုိသံုးျပီး လိုအပ္တာျဖည့္လုိက္ရင္ဆင္ေျပပါျပီ။ 

Comments

Popular posts from this blog

Learning English Through Laughter : 3

Mr.Green went to Germany, because he had some work there.He came back last Monday, and his young wife met him at the airport. They walked to their car and passed a tall, pretty air-hostess. Mr. Green said to her , ' Goodbye, Miss Harris, ' and the air-hostess smiled and said, 'Good bye' too. Mrs. Green stopped and looked at the air-hostess .Then she said to her husband, 'How did you know her name?' 'That was easy,'answered Mr.Green. 'The names of the captain and all the screw were on a piece of paper in front of our seates.' 'What was the name of the captain?' Mrs. Green asked with a smile. Mr.Green launged and answered ,'I don't remember any of the other names.' 4/\/\@

Install Laravel installer in ubuntu

Terminal ဖြင့္ပီးေတာ့ ေအာက္က ကြန္မန္းထည့္ run ရပါတယ္။ composer global require "laravel/installer" ျပီးရင္ terminal ထဲမွာ laravel ဆိုပီး ရိုက္ၾကည့္ပါ။ေအာက္ကအတုိင္းေပၚရင္ေတာ့ အလုပ္လုပ္ပါျပီ။ တကယ္လုိ ့ laravel: command not found ဆိုပီးျပေနရင္ေတာ့ ေအာက္က Command ထပ္ရိုက္ထည့္ျပီး ျပန္စမ္းၾကည့္ပါ။ ဒါဆိုဆင္ေျပသြားမွာပါ။ export PATH="~/.composer/vendor/bin:$PATH"

Install node.js in ubuntu

ပ ထမဆံုး http://nodejs.org/ မွာ သြင္းမယ့္ ဖိုင္ကုိအရင္ေဒါင္းလိုက္ပါ။ ျပီးရင္  dependencie လိုအပ္တာေတြကုိ ေ အာက္က  ကြန္မန္းနဲ့ ႏွစ္ခုသြင္းပါ။ sudo apt-get install g++ curl libssl-dev apache2-utils sudo apt-get install git-core ျပီးရင္ေတာ့ ေအာက္က ကြန္မန္းနဲ့တဆင့္ျခင္းသြင္းရင္ ဆင္ေျပပါျပီ။ cd node { download ဆြဲထားတဲ့ဖိုင္ကုိ ျဖည္ျပီးေတာ့ အဲဒီဖိုင္ထဲဝင္ } ./configure make sudo make install ရမရစမ္းဖုိ့အတြက္က ေအာက္က tut ေလးစမ္းျပီးသိႏုိင္ပါတယ္။ ေအာက္က ကုတ္ေတြကုိ test.js ဆိုျပီးတခုခုေပးပီး တေနရာရာသိမ္းလုိက္ပါ။ var http = require ( 'http' ); http . createServer ( function ( req , res ) {   res . writeHead ( 200 , { 'Content-Type' : 'text/plain' });   res . end ( 'Hello Node.js\n' ); }). listen ( 8124 , "127.0.0.1" ); console . log ( 'Server running at http://127.0.0.1:8124/' ); သိမ္းျပီးရင္ Terminal ထဲကေန node test.js ဆိုျပီးေခၚရင္   Server running at http://127.0.0.1:8124/ ဆိုျပီးေပၚေ...