Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Joomla 3.0 DS 不工作。它已被删除。我明白了
Notice: Use of undefined constant DS - assumed 'DS' in
我怎样才能解决这个问题?
类似问题
从 Joomla 2.5 迁移到 3x 生成错误
添加以下行
if(!defined('DS')) define('DS', DIRECTORY_SEPARATOR);
从文档。
DS 常数已被删除。如果你真的需要它,你可以使用 DIRECTORY_SEPARATOR 代替。
还有一个插件可以解决这个问题。
您可以在此处找到完整列表。
Joomla 3 和 Joomla Platform 12.2 中潜在的向后兼容性问题
有时你需要这个:if(!defined('DS')) define('DS', '/');
if(!defined('DS')) define('DS', '/');