fix: Wordpress FTP permission issues

This commit is contained in:
Andras Bacsai
2022-07-12 09:25:16 +02:00
parent a70e35cb79
commit edfed57df3
7 changed files with 7 additions and 6 deletions

View File

@@ -89,7 +89,7 @@
loading = true;
await post(`/databases/${id}`, { ...database, isRunning: $status.database.isRunning });
generateDbDetails();
toast.push('Settings saved.');
toast.push('Configuration saved.');
} catch (error) {
return errorNotification(error);
} finally {

View File

@@ -45,7 +45,7 @@
});
await post(`/services/${id}`, { ...service });
$disabledButton = false;
toast.push('Settings saved.');
toast.push('Configuration saved.');
} catch (error) {
return errorNotification(error);
} finally {

View File

@@ -109,6 +109,7 @@
loading = true;
try {
await post(`/services/${service.id}/${service.type}/start`, {});
return window.location.reload()
} catch (error) {
return errorNotification(error);
} finally {

View File

@@ -20,7 +20,7 @@
htmlUrl: source.htmlUrl.replace(/\/$/, ''),
apiUrl: source.apiUrl.replace(/\/$/, '')
});
toast.push('Settings saved.');
toast.push('Configuration saved.');
} catch (error) {
return errorNotification(error);
} finally {

View File

@@ -69,7 +69,7 @@
htmlUrl: source.htmlUrl.replace(/\/$/, ''),
apiUrl: source.apiUrl.replace(/\/$/, '')
});
toast.push('Settings saved.');
toast.push('Configuration saved.');
} catch (error) {
return errorNotification(error);
} finally {