Forum Discussion
Run spfx web part
Hi
I am new in sharepoint I tried to start a web part spfx and I want to have a hello world for first job
but after I draged my solution <helloworld-webpart.sppkg> in app catalog area. I can't use this app and I got this error:
Sorry, apps are turned off. If you know who runs the server, tell them to enable apps
Can anybody help me what is wrong?
- It sounds like you are using SharePoint 2019? The error could be several issues. This article walks through several possible solutions.
https://support.shortpoint.com/support/solutions/articles/1000273552-you-get-error-saying-sorry-apps-are-turned-off-if-you-know-who-runs-the-server-tell-them-to-enabl
If this helps, please consider marking this as the accepted answer. Good luck!- Daryush1342Copper Contributor
Hi,
Thanks for you reply, I saw this article befoe. I tried to follow the article
The article first subject was correct it was enabled.The second theme of the first part was correct.
When I tried to paste the command in sharepoint2019shell, I got the following error, I didn't know what else to do if you can help me
thanks a lot
DaryushLooks like the article put two commands together by mistake. Split the commands into the following:
$sa = New-SPSubscriptionSettingsServiceApplication -ApplicationPool 'SharePoint Web Services Default' -Name 'Subscriptions Settings Service Application' -DatabaseName 'Subscription'
New-SPSubscriptionSettingsServiceApplicationProxy -ServiceApplication $sa
That should get you through the next step. Good Luck