• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Issue laravel toolkit, how to remove domain from scan?

Pavlo.UA

Basic Pleskian
Server operating system version
CentOS 7.9
Plesk version and microupdate number
Plesk Obsidian 18.0.46
Hello.
Could anybody help with this one, please?
Laravel Toolkit. Starting it and scan for apps in few domains. Done. See domains list.
How to remove a domain from this list? (there is no Laravel at the moment, was earlier but now there are no files, no databases, etc...)
How to properly remove installed earlier Laravel app to not being listed by scan?
How to install a Laravel app in domain where Laravel Toolkit propose to "manage Laravel app"?

I afraid Laravel Toolkit is still not ready to work with Plesk...
 
Hello.
Could anybody help with this one, please?
Laravel Toolkit. Starting it and scan for apps in few domains. Done. See domains list.
How to remove a domain from this list? (there is no Laravel at the moment, was earlier but now there are no files, no databases, etc...)
How to properly remove installed earlier Laravel app to not being listed by scan?
How to install a Laravel app in domain where Laravel Toolkit propose to "manage Laravel app"?

I afraid Laravel Toolkit is still not ready to work with Plesk...
I have the same problem, I really need help, can anyone tell me how to uninstall laravel applications that have been installed on plesk hosting?
 
I have the same problem, I really need help, can anyone tell me how to uninstall laravel applications that have been installed on plesk hosting?
Hello.
Laravel Toolkit doesn't currently support the delete feature.
At this moment we have the only one working solution. You can uninstall extension and rescan your existing Laravel applications.
 
You can try to remove it from the Laravel Toolkit database by removing the entry with the ID of the laravel application:

Use this at your own risk. Always create a backup of the sqlite3 database!

Code:
# cp /usr/local/psa/var/modules/laravel/laravel_toolkit.sqlite3{,.bak}

# sqlite3 /usr/local/psa/var/modules/laravel/laravel_toolkit.sqlite3

sqlite> .headers on

sqlite> .tables
ApplicationNodeConfigurations  applications
DeploymentStepConfigurations   version

sqlite> select * from applications;
id|domainId|name|repoName|deploymentPath|scheduleTaskId|repositoryType|scan
2|15|domain.com|laravel_32f092|domain.com||local|0

sqlite> delete from applications where id=2;
sqlite> .exit
 
Last edited:
You can try to remove it from the Laravel Toolkit database by removing the entry with the ID of the laravel application:

Use this at your own risk. Always create a backup of the sqlite3 database!

Code:
# cp /usr/local/psa/var/modules/laravel/laravel_toolkit.sqlite3{,.bak}

# sqlite3 /usr/local/psa/var/modules/laravel/laravel_toolkit.sqlite3

sqlite> .headers on

sqlite> .tables
ApplicationNodeConfigurations  applications
DeploymentStepConfigurations   version

sqlite> select * from applications;
id|domainId|name|repoName|deploymentPath|scheduleTaskId|repositoryType|scan
2|15|domain.com|laravel_32f092|domain.com||local|0

sqlite> delete from applications where id=2;
sqlite> .exit

Can we get a way of deleting inside plesk?
 
At the moment, it is not possible to do this using Plesk
But this sounds like a great idea for a UserVoice suggestion. You can share the link in this thread, so if another user with the same interest sees it, they can cast their vote.
 
Back
Top