September
28th
2007

Test Your Knowledge of PHP

电脑技术 没有评论

评分: 很差劲不怎样还可以还不错太棒了
Loading ... Loading ...

by Emmett Dulaney
From: http://www.unixreview.com/documents/s=10130/ur0705d/

Increasingly, PHP seems to be the tool/language that is used to make Web sites dynamic. While it is far from the only open source scripting language available, PHP’s abilities and features are quickly making it not only a must-have in the Web world but also a topic on many certification exams. Following are fifty questions on PHP at the knowledge level found on beginning/intermediate certification exams. Good luck (answers are at the end of the article)!


January
13th
2007

Apache2, SSL, Mysql, PHP and OpenLDAP Installation Guide

电脑技术 3条评论

1次评分, 平均分: 1 vote, average: 5.00 out of 51 vote, average: 5.00 out of 51 vote, average: 5.00 out of 51 vote, average: 5.00 out of 51 vote, average: 5.00 out of 5
评分: 很差劲不怎样还可以还不错太棒了
Loading ... Loading ...

1. Install Mysql

  1. #groupadd mysql
  2. #adduser mysql -g mysql -s /nologin
  3. #cd mysql-VERSION/
  4. #./configure --prefix=/usr/local/mysql
  5. #make && make install
  6. #scripts/mysql_install_db
  7. #chown -R root:mysql /usr/local/mysql
  8. #chown -R mysql /usr/local/mysql/var
  9. #/usr/local/mysql/bin/mysqld_safe --user=mysql
  10. #mysql -uroot
  11. >use mysql;
  12. >update user set password=password('XXX') where user='root';
  13. >flush priviledges;