This topic is locked
[SOLVED]

uninstalling plugins?

8/2/2025 3:16:54 PM
PHPRunner General questions
P
ppradhan@live.com author

Hi,
The plugin Installation is straight forward and easy. But I need to uninstall one of the plugin that is buggy, how to delete or uninstall plugin in PHPRunner Enterprise v11+?

ChatGPT 8/2/2025

To uninstall or delete a plugin in PHPRunner Enterprise v11 or later, you can follow these steps:

  1. Open PHPRunner: Launch the PHPRunner application on your computer.


  2. Navigate to the Plugins Section: In the main menu, look for the "Plugins" tab or section. This is where you can manage your installed plugins.


  3. Locate the Plugin: Find the plugin that you want to uninstall from the list of installed plugins.


  4. Uninstall the Plugin:

    • Click on the plugin you wish to remove.
    • Look for an option such as "Uninstall" or "Delete." This might be represented by a trash can icon or a button labeled "Remove."
    • Confirm the action when prompted to ensure you want to uninstall the plugin.


  5. Save Your Project: After uninstalling the plugin, make sure to save your project to ensure the changes are applied.


  6. Test Your Application: After the uninstallation, it’s a good idea to test your application to ensure that everything is functioning correctly without the plugin.



If you encounter any issues during the uninstallation process, refer to the PHPRunner documentation or support resources for additional guidance.

P
ppradhan@live.com author 8/2/2025

@ChatGPT

There is no delete, uninstall or trash icon to remove the installed plugins. Right-clicking on the plugin name from the list has no menu/submenu. May be it should be handled manually, but how?

G
Grdimitris 8/3/2025

Start PHPRunner 11
Use something like PgAdmin4 to navigate a POSTGRESQL database.
Running PgAdmin4 right click servers -> register -> server
Then Name the server and go to Connection
Server: localhost
Port: 14297
Username: phprunner
Password: phprunner
Or use HeidiSQL and folow the instructions in https://asprunner.com/forums/topic/30499-Version-11-Frequently-Asked-Questions
After this browse to phprunner database and find 2 tables

  1. plugins
    In this table mark the id of the plugin you want to delete. Columns are id, type (0 for edit plugin and 1 for view plugin), name (the name of plugin)
    Delete the row.
    Let's say the id of deleted plugin is 1


  2. pluginfiles
    run this SQL
    delete FROM public.pluginfiles where plugin=1;



Thats it. You delete the plugin.

P
ppradhan@live.com author 8/3/2025

@Grdimitris,
Thank you, it worked with charm!