LAMP Discuz搭建論壇

2021-08-28 16:35:31 字數 1716 閱讀 8683

安裝 php

yum –y install php*

配置 php

vi /etc/php.ini

修改date.timezone = prc

新增禁用的函式,需要使用時再放開

disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,ini _alter,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_s erver,escapeshellcmd,dll,popen,disk_free_space,checkdnsrr,checkdnsrr,getservbyname,gets ervbyport,disk_total_space,posix_ctermid,posix_get_last_error,posix_getcwd,posix_getegid, posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin, posix_getpgid,posix_getpgrp,posix_getpid,posix_getppid,posix_getpwnam,posix_getpwuid, posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid, posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_tim es,posix_ttyname,posix_uname

支援php短標籤

short_open_tag = on

設定表示允許訪問當前目錄(即php指令碼檔案所在之目錄)和/tmp/目錄,可以防止php木馬跨站,如果改了之後安裝程式有問題,可以登出此行,或者直接寫上程式的目錄

open_basedir = .:/tmp/

重啟服務

進行php頁面測試

在客戶端瀏覽器輸入伺服器ip位址,可以看到相關的配置資訊

cd /var/www/html

vi index.php

<?php phpinfo(); ?>

安裝 discuz

yum -y install wget

wget

yum -y install unzip

unzip discuz_x3.2_sc_utf8.zip

將 upload 目錄轉移到web請求目錄下

cp -r ./upload /var/www/html

進去upload給予幾個目錄許可權訪問

chown apache:apache -r /var/www/html/upload

cd /var/www/html/upload

chmod -r 777 data

chmod -r 777 uc_client

chmod -r 777 uc_server

開啟瀏覽器開始安裝論壇

discuz論壇搭建

只有自己實踐的才是真理,在這裡說一下discuz搭建步驟,本次解說的是apache mysql php 整合安裝包 2 雙擊安裝包,直接解壓到d usr預設目錄,不要改變解壓目錄 3 進入d usr 雙擊install.bat 啟動mysql以及apache服務 2個服務必須啟動成功 5 訪問 ht...

搭建bbs論壇

1.安裝軟體包 root svr7 yum y install mariadb server mariadb php php mysql2.配置mysql root svr7 systemctl restart mariadb root svr7 systemctl enable mariadb r...

搭建Discuz論壇

welcome to fofade s blog 這裡是linux 搭建論壇的一些命令記錄 安裝環境 php apache2 mariadb 類mysql php xml 測試環境 瀏覽器檢視tomcat頁面是否正常,並簡易編寫乙個php頁面測試 資料庫操作 create user name sta...