Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
The APS Catalog has been deprecated and removed from all Plesk Obsidian versions. Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.
Hello,
I found that you are trying to run an application created using the Laravel framework. But this application is not properly configured or running.
You can see your not configured site here מנהל החינוך - מחלקת רישום
It seems to me that your problem is that DocumentRoot does not set to the...
It looks like you have another problem. The original problem is inability to remove the domain only from the classic list view due to JS error.
It is not clear from your description how you are trying to delete the domain and what has not been deleted. All domain or some its content?
/cp/* is part of the Plesk source and you shouldn’t rely on the presence of certain files like /cp/public/theme/css/custom.css
If you need to add custom css to every Plesk page then extension with global.css. Read Use of global.js and global.css guide for more details.
You can also provide...
- "Run Script"
Following example will be a simple HTTP server that responds to every request with the plain text message "Hello World"
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n')...