您好,登录后才能下订单哦!
这篇文章主要讲解了“LAMP架构搭建网站商城的详细过程”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“LAMP架构搭建网站商城的详细过程”吧!
LAMP架构搭建网站商城
Linux+Apache+Mysql/MariaDB+Perl/PHP/Python一组常用来搭建动态网站或者服务器的开源软件,共同组成了一个强大的Web应用程序平台
安装需要的软件包
[root@w-163 ~]# yum install httpd
mysql-server mysql php php-mysql -y
启动LAMP相关服务
[root@w-163 ~]# service httpd start
[root@w-163 ~]# chkconfig httpd on
[root@w-163 ~]# service mysqld start
[root@w-163 ~]# chkconfig mysqld on
配置MySQL root密码
[root@xuegod64 ~]# /usr/bin/mysqladmin -u
root password "123456"
测试:登录mysql
[root@w-163 kaixin]# mysql -u root -p123456
测试网站是否支持PHP
[root@w-163 kaixin]# cd /var/www/html/
[root@stu003 html]# vim index.php
[root@stu003 html]# cat index.php
<?php
phpinfo();
?>
使用浏览器访问http://192.168.1.63/index.php,若出现PHP信息页即支持PHP
上传网站模板 ECShop
[root@w-163~]# unzip -d /usr/local/src/ecshop
ECShop_V2.7.3_UTF8_release0411.zip
[root@w-163 ECShop_V2.7.3_UTF8_release0411]# ls
docs upgrade upload
上传upload;修改权限:
chown apache:apache ecshop/ -R
网页安装
http://192.168.1.63/ecshop/install/index.php
安装时报错:
创建管理员帐号............失败
Warning: date(): It is not safe to rely on the system'stimezone settings. You are *required* to use the date.timezone setting or thedate_default_timezone_set() function. In case you used any of those methods andyou are still getting this warning, you most likely misspelled the timezoneidentifier. We selected 'Asia/Chongqing' for 'CST/8.0/no DST' instead in/home/babap/ecshop/includes/lib_time.php on line 28 OK
修改方法:
vimecshop/install/includes/init.php
1<?php
2 date_default_timezone_set('Asia/Shanghai');第二行插入此代码,设置时区
成功后点击进入网站首页
感谢各位的阅读,以上就是“LAMP架构搭建网站商城的详细过程”的内容了,经过本文的学习后,相信大家对LAMP架构搭建网站商城的详细过程这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是亿速云,小编将为大家推送更多相关知识点的文章,欢迎关注!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。