移动站点损坏了 CodeIgniter 模块
我不得不将我的站点移至另一台主机,现在 codeigniter 安装失败。我已经修复了一些问题,但是当我尝试保存更改时,我的某些模块会损坏。最后会转到以下网址
admin/index.php/admin/index.php
是吗?
I had to move my site to another host and now the codeigniter installation is failing. I've fixed a few problems, but some of my modules break when I try to save changes. The end up going to the following url
admin/index.php/admin/index.php
is that right?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的路径是相对的。放在
/
之前或使用base_url()
写入Your paths are relative. Put before an
/
or write usingbase_url()
事实证明,最初实现该系统的人使用了不同的代码来获取每个模块的基本脚本,因此我必须仔细检查并更改每个模块。
对于管理模块,事实证明这与两个不同版本的 php 处理路径的方式的变化有关。
It turned out that the person who had origionally implemented the system had used a differnt bit of code to get the base script for each module, so I had to go through and change each module.
For the admin module it turned out it was to do with changes in how the two differnt versions of php dealt with paths.