• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Question Svelte Kit with Node v16.10

robinrm

New Pleskian
Hello,

have someone an good instruction for the implementation from SvelteKit in Plesk? Node is already installed but Phusion won't start any websites (Web application could not be started by the Phusion Passenger(R) application server.)

Thanks in advance.
 
The Sollution:

create a file in the build folder named index.cjs with the content
Code:
(() => import('./index.js'))();
as described here on Github.
Make shure that you have configured a node adapter for example see the Sveltekit Instructions.

After installing the package.json i'm getting the error in Node v.17.7.1 and v16.14.0:

  • npm ERR! code 127
  • npm ERR! path /var/www/vhosts/mydomain/node_modules/esbuild
  • npm ERR! command failed
  • npm ERR! command sh -c node install.js
  • npm ERR! sh: 1: node: not found

  • npm ERR! A complete log of this run can be found in:
  • npm ERR! /var/www/vhosts/mydomain/.npm/_logs/2022-03-19T14_35_06_846Z-debug-0.log

After quick check in the filebrowser all modules were installed correctly.

Now point Node to the build/index.cjs und the ducumentspath to /static.

After a restart from node your site should no running without any issuses with the sceleton project from Sveltekit!
 
Back
Top