当前位置:首页 > CMS教程 > phpcms > 列表

【phpcms-v9】怎样给网站前台的个别页面更换新的模板?

添加日期:2014-10-23 09:13:37 发布:smiling 
1 第一步:将美工新设计的模板放置到phpcms templates default 模块目录名 模板文件名 html 如:phpcms templates default content category_new html如:phpcms templates default content category_ ...

【phpcms-v9】缓存目录caches下的各个文件的作用

添加日期:2014-10-23 09:07:36 发布:smiling 
第一:caches caches_commons目录下缓存文件:1 caches caches_commons caches_data category_content cache php: 所有栏目对应的站点ID 2 caches caches_commons caches_data category_content_1 ...

【phpcms-v9】header.html文件编译前后对比

添加日期:2014-10-23 08:58:25 发布:smiling 
编译前:<head><metahttp-equiv="Content-Type"content="text html;charset=utf-8" ><metahttp-equiv="X-UA-Compatible"content="IE=7" ><title>{ifisset($SEO[& 39;title& 39;])&&!empty($SEO[& 39 ...

【phpcms-v9】前台content模块控制器index.php文件分析-内容详情页

添加日期:2014-10-23 08:55:52 发布:smiling 
【phpcms-v9】前台content模块控制器index php文件分析-内容详情页代码分析 内容页:文章内容详情页、图片详情页、下载详情页走的都是show()方法 路径:phpcms modules content index php控制器 ...

【phpcms-v9】content_output.class.php文件分析-前台内容详情页显示

添加日期:2014-10-23 08:54:00 发布:smiling 
【phpcms-v9】content_output class php文件分析-前台内容详情页显示数据的过滤<?php 路径:caches caches_model caches_data content_output class php 在phpcms modules content index php控制 ...

【phpcms-v9】index.php文件分析-前台列表页代码分析

添加日期:2014-10-23 08:52:01 发布:smiling 
路径:phpcms modules content index php控制器 列表页:文章列表页、图片列表页、下载列表页执行的都是这段程序publicfunctionlists(){$catid=intval($_GET[& 39;catid& 39;]); 栏目id$_priv_d ...

【phpcms-v9】index.php文件分析-前台首页模板文件的解析过程

添加日期:2014-10-22 17:05:29 发布:smiling 
第一步:前台首页默认执行的是:index php?m=content&c=index&a=init: 首页publicfunctioninit(){if(isset($_GET[& 39;siteid& 39;])){$siteid=intval($_GET[& 39;siteid& 39;]); 当前站点ID}else ...

【phpcms-v9】cache_all.php文件分析-更新缓存

添加日期:2014-10-22 17:03:19 发布:smiling 
<?php 路径:phpcms modules admin cache_all php控制器,此控制器主要用来更新所有的缓存信息:defined(& 39;IN_PHPCMS& 39;)orexit(& 39;Nopermissionresources & 39;);pc_base::load_app_class ...

【phpcms-v9】category.php文件分析-添加栏目

添加日期:2014-10-22 17:01:40 发布:smiling 
<?php 路径:phpcms modules admin category php控制器,主要用来完成栏目相关的操作defined(& 39;IN_PHPCMS& 39;)orexit(& 39;Nopermissionresources & 39;); 防止恶意访问pc_base::load_app_cl ...

【phpcms-v9】content_form.calss.php文件分析-内容添加页面动态表单

添加日期:2014-10-22 16:47:07 发布:smiling 
<?php 此文件主要根据caches caches_model caches_data model_field_1 php文件中的模型字段来动态的生成表单 路径:phpcms caches caches_model caches_data content_form class php文件,主要用 ...

phpcms v9如何获取文章的当前栏目名称

添加日期:2014-10-22 16:46:17 发布:smiling 
获取当前栏目的名称在某些情况下,特别是做优化时,还是比较实用的,通过{$CATEGORYS[$catid][catname]} 显示当前栏目名称,感兴趣的朋友可以参考下 {catpos($catid)} 显示文章位置导航{$CATEGORYS[$ ...

phpcms v9 首页焦点图片大挪移

添加日期:2014-10-22 16:44:13 发布:smiling 
将默认模板里面的焦点图片放到自己喜欢的位置,如何做?难不难?看我下面的操作步骤 1 先将这两行加到head部分:<script type="text javascript" src="{JS_PATH}jquery min js">< script><script ...

PHPCMSV9如何更换模板风格

添加日期:2014-10-22 16:42:40 发布:smiling 
刚下载了phpcmsv9 在本地测试,但想要重新应用一个模板,索性就把 phpcms templates default 这个目录复制了一下,重命名为test,然后修改了test下面的config php文件,把配置都改了一下,然后想在后台 ...