Either leave it blank or make sure it match the domain your are using when moving website to the live server or another demo server.
For instance for me I was working on a demo site like this:
public $live_site = 'https://demosite.com/';
But live domain was
https://livesite.com/
If I used this on live server:
public $live_site = 'https://demosite.com/';
It created problems
But I changed to the right domain:
public $live_site = 'https://livesite.com/';
It worked
For instance for me I was working on a demo site like this:
public $live_site = 'https://demosite.com/';
But live domain was
https://livesite.com/
If I used this on live server:
public $live_site = 'https://demosite.com/';
It created problems
But I changed to the right domain:
public $live_site = 'https://livesite.com/';
It worked
Statistics: Posted by supfort — Mon May 06, 2024 1:29 am