• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: How to move configuration.php to up two level

How to move configuration.php to up two level 12 years 11 months ago #17354

  • makinnon
  • makinnon's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
JS Firewall says:
to move the file up one level and into a folder named "test" the constant will look like this:
define( 'JPATH_CONFIGURATION', JPATH_ROOT.DS.'..'.DS.'test' );

How I can move to up two level 'test'?

I tried define( 'JPATH_CONFIGURATION', JPATH_ROOT.DS.'../..'.DS.'test' ); but no success

Help please.

Greets
The administrator has disabled public write access.

Re: How to move configuration.php to up two level 12 years 11 months ago #17534

  • bogdanc
  • bogdanc's Avatar
  • OFFLINE
  • Moderator
  • Posts: 669
  • Thank you received: 11
Hello,

In order to move the file up two levels you will need to use a code line similar to the following one:
define( 'JPATH_CONFIGURATION', JPATH_ROOT.DS.'..'.DS.'..'.DS.'test');
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!