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.
Yes that's what I want.
Thank you, Please send me some quick example as my all the online systems based on this script and now clients are mad on this.
Can't I change the version of API. It's not my fault, it's automated update.
If I cannot change the version, can you give me code samples. this documentation does not have a sample. It seems complex.
Line 31 is
if (!$this->check_params()) {
throw new ApiRequestException("Error: Incorrect request parameters submitted");
}
I commented the line as
//throw new ApiRequestException("Error: Incorrect request parameters submitted");
Now
This error comes.
mod_fcgid: stderr: PHP...
I had working script written in PHP to create email account in plesk. I got that from
pmill/php-plesk
Script is below.
<?php
require_once("config.php");
//echo $_GET['r']."<br>";
$emilid=$_GET['email'];
$password=$_GET['password'];
$params = array(
'email'=>$emilid...