• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Trial sites

wdriver

Basic Pleskian
Hi all,

I am sure the answer to this is obvious but just in case ...

Once a trial site expires is it completely deleted from the server or is it still accessible somewhere to re-instate?
I have a client who did a lot of work in the their trial site and didn't sign up to me quick enough...

Tks,
Wayne
 
Actually, if you have default Parallels Plesk Sitebuilder configuration without some specific changes related to periodic tasks site should be deleted and there is no place where it could be stored. There is a special table in Sitebuilder database which stores all tasks:

mysql> select * from task;
+----+------------------------------+------+------------+--------+
| id | action | type | time | period |
+----+------------------------------+------+------------+--------+
| 1 | ${PHP} sip1.php | 1 | 1242835502 | 604800 |
| 2 | ${PHP} sip2.php | 1 | 1242839485 | 604800 |
| 3 | ${PHP} clear_trial_sites.php | 1 | 1242429304 | 3600 |
| 4 | ${PHP} update_key.php | 1 | 1242450604 | 86400 |
| 5 | ${PHP} sbpatch.php refresh | 1 | 1242457283 | 86400 |
| 6 | ${PHP} clear_old_logs.php | 1 | 1242457284 | 86400 |
+----+------------------------------+------+------------+--------+
6 rows in set (0.00 sec)

one of them is "clear_trial_sites.php" which is responsible for clearing old site. So if there is no site in Sitebuilder interface and you did not back server or Sitebuilder recently there is no way to restore information.
 
Back
Top