Visual Editors fail on new mediawiki installs (on Synology NAS)

My file tree in File Station (just my way of doing it, can do any names you want) …
image

Wow! Thank you so much! It totally worked.

Could you open your LocalSettings.php and share your ’ $wgScriptPath = “”; ’ please? I’ve got everything talking to each other, but I’m running into a 'Fatal exception of type “TypeError”. I’m 99% sure that something happened to my $wgScriptPath. It doesn’t look right.

Currently:
$wgScriptPath = “/wiki”;

Thanks again for all your help. I really appreciate the time you’ve taken to answer my questions!

Mine is blank:

$wgScriptPath = “”;

The only thing I changed outside of database settings that were done using the MediaWiki interview and LocalSettings.php download, was I manually changed the:

$wgServer = “http://192.168.100.20:8080

(My NAS IP and port assigned to my MediaWiki Docker container.)

Mine is blank:
$wgScriptPath = “”;

Great! Changing it back to ’ $wgScriptPath = “”; ’ worked! Finally got everything working!

Thank you, @cbaker007 for sharing your experience here in details! :slight_smile: I just want to add a small note for @mordcha regarding $wgScriptPath That variable is probably for reverse proxies when you save your files in the webserver’s root folder, but you also have a reverse proxy in front of your webservers you can have wiki on http://yourhost/wiki (container1) and for example your admin on http://yourhost/admin (container2). So usually you can leave it empty and use domain bases routing or not use proxy at all.