美文网首页
Facemash-alike web site building

Facemash-alike web site building

作者: hchencoder | 来源:发表于2016-12-17 20:55 被阅读0次

2014/11/2 03:10

  1. Build LAMP(Linux + Apache + MySQL + PHP) environment.(According to baidu)
  2. Facemash alike script from http://blog.moefelt.dk/the-facemash-script/.
  3. 解压所下载的文件,并将所有文件权限设为对所有用户可读可写。
  4. 按照 _readme.txt 文件所述步骤进行设置:
    • 建立 images 文件夹,将所要用到的图片全考入 images/文件夹;
    • 在Mysql中建立数据库及数据表,可以新建一个.sql脚本如:“setsql.sql",将_readme.txt中第三步的代码复制进setsql.sql,并在开头加上建立数据库的sql语句 ,如:
      create database facemash;
      注意句尾的分号一定要加,然后在命令行运行
      $/usr/local/mysql/bin/mysql -u root -p <~/mywebs/sql/setsql.sql
      提示输入密码时直接回车。这样就建立好了数据库和数据表;
    • 链接数据库,打开mysql.php文件,在user处填"root",password处不填,dastabase处填之前建立的数据库名称,如facemash, host处填"localhost",然后保存关闭文件。
    • 将所有相关文件: index.php, functions.php, install_images.php, mysql.php, rate.php,及文件夹images强行考到网站根目录下:
      $sudo cp -rf . /usr/local/apache2/htdocs/
    • 修改apache配置文件使index.php为默认首页文件:
      $sudo vim /usr/local/apache2/conf/httpd.conf" <IfModule dir_module>
      下的文件改成"index.php",保存退出。并重启httpd服务:
      $sudo /usr/local/apache2/bin/apachectl restart
  5. 更换照片时只需更换images文件夹即可。

相关文章

网友评论

      本文标题:Facemash-alike web site building

      本文链接:https://www.haomeiwen.com/subject/jfhamttx.html