问题描述
我已经下载了一个halogy和提取后我把提取文件夹到我的htdocs文件夹在我的本地主机..i成功设置数据库,但我得到的错误,从浏览器访问的URL后
这是错误
轻微问题...
此域未正确配置。提取后,
我的文件夹名称
jesseorndorff-Halogy-35c4050
strong> url
localhost / jesseorndorff-Halogy-35c4050
/ pre>
解决方案这里是一步一步的解决方案
请将文件夹名称重新命名为其他只供测试。
我将jesseorndorff-Halogy-35c4050更改为halogy_test
。
下一步从halogy剪切系统文件夹,并将其粘贴在上一级。现在结构将是这样。
localhost /
halogy_test /
halogy /
system /
index.php
接下来转到database.php并设置。 br>
接下来转到halogy / application / config / config.php
并更改
$ config [' index_page'] ='';
到
$ config ['index_page'] ='index.php';
在第29行。
现在转到
application / config / site_config.php
并更改$ config ['staticPath'] = / static'
至
$ config ['staticPath'] ='/ halogy_test / static';
最后一步转到
halogy_test / static / js / jquery.flot。 init.js
并更改'/ admin / stats / !
完成它
如果成功就投票。i have downloaded a halogy and after extracting i put the extract folder into my htdocs folder in my localhost ..i successfully setup the database but i am getting the error after visiting the url from the browser this is the error
Slight problem... This domain has not been configured properly.
my folder name after extracting
jesseorndorff-Halogy-35c4050
url
localhost/jesseorndorff-Halogy-35c4050
解决方案Here is a step by step solution
First rename your folder name with some thing else just for testing.
I changedjesseorndorff-Halogy-35c4050 to halogy_test
.Next cut system folder from halogy and paste it in the upper level. Now the structure will be like this.
localhost/ halogy_test/ halogy/ system/ index.php
Next go to database.php and set it up.
Next go tohalogy/application/config/config.php
and change$config['index_page'] = '';
to
$config['index_page'] = 'index.php';
on line no 29.Now go to
application/config/site_config.php
and change$config['staticPath'] = '/static'
to
$config['staticPath'] = '/halogy_test/static';
The final step go to
halogy_test/static/js/jquery.flot.init.js
and change'/admin/stats/' to stats/ on line no 2!
Done itVote up if successfull.
这篇关于Codeigniter Halogy cms安装设置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!