鼓捣Wordpress学点PHP

WBOY
Release: 2016-06-13 10:30:35
Original
1071 people have browsed it

捣鼓Wordpress学点PHP
给哥哥的车行(卖电动车和自行车的小店)搞个主页,用Wordpress,也借此学习下PHP。
1、Wordpress搭建完成 2011-7-31










FAQs
Q:到哪儿学PHP?最好有基础教程。
A:http://www.w3school.com.cn/php/

Q:安装完Wordpress,为什么首页显示目录,而没有显示index.php?
A:修改配置文件httpd.conf,

<IfModule dir_module>    DirectoryIndex index.html</IfModule>
Copy after login
中加入index.php,修改后为
<IfModule dir_module>    DirectoryIndex index.php index.html</IfModule>
Copy after login
这样Apache就可以加载index.php了。
Q:在IE7下,上传图片为什么总是失败?
A:Wordpress 3.2.1 版本管理端不支持IE7,换成Chrome问题解决。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template