Have locally updated uSync to 11.2.1 in an 11.2.2 site. Have pushed it live but when opening the uSync dashboard, I get a 404 error in the console for the above file and no dashboard. Checking locally, I don't see a uSync folderin App_Plugins but if I put the path in a browser on the local dev machine, it hits the file and displays it, so where on earth is it? I've re-uploaded all dlls but the issue remains. Is it hidden in some RCL or something?
Please advise.
d
D_Inventor
08/10/2023, 5:56 PM
Yes, it is likely hidden in an RCL. If you're looking for it on your live site, you'll probably find it in
wwwroot/App_Plugins/uSync/
D_Inventor
08/10/2023, 5:59 PM
On your local environment, you should be able to locate it in
Phew! Thanks for that. Totally forgot there was "another [secret]" App_Plugins" folder 🙂
d
D_Inventor
08/10/2023, 6:03 PM
glad I could help 😊
k
Kevin Jump
08/10/2023, 6:42 PM
dotnet publish
for the win 😉 - don't push the files from your folder but do a dotnet publish and the resultant files (in the output folder) are your website.
Kevin Jump
08/10/2023, 6:43 PM
the dotnet publish will grab all the rcl files and everything and put them into the folder so you can deploy that and you don't need to worry about hidden files
c
Craig100
08/10/2023, 7:33 PM
I use Rider and publish to a folder. It's what's in that folder I then FTP up to the server. I only transfer the stuff that needs transferring. It's quicker and recoverable when things go wrong. I'd just forgotten about that App-Plugins folder that's all.