سؤال

Joomla 3.0 DS does not work. It has been removed. I get

Notice: Use of undefined constant DS - assumed 'DS' in

How can I fix this?

Similar Question

Migrating from Joomla 2.5 to 3x Generating Errors

هل كانت مفيدة؟

المحلول

Add the below line

if(!defined('DS')) define('DS', DIRECTORY_SEPARATOR);

From the docs.

The DS constant has been removed. If you really need it you can use DIRECTORY_SEPARATOR instead.

Also there is a plugin to fix this issue.

You can find the full list here.

Potential backward compatibility issues in Joomla 3 and Joomla Platform 12.2

نصائح أخرى

Sometimes you need this: if(!defined('DS')) define('DS', '/');

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top