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')...