> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nextedy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Troubleshooting Installation Issues

> This guide helps you resolve common problems that occur after installing or upgrading Nextedy GANTT on your Polarion server.

export const LastReviewed = ({date}) => {
  if (!date) return null;
  const formatted = new Date(`${date}T00:00:00Z`).toLocaleDateString("en-US", {
    year: "numeric",
    month: "long",
    day: "numeric",
    timeZone: "UTC"
  });
  return <p className="mt-10 text-sm text-gray-400 dark:text-zinc-500 not-prose">
      Last reviewed on {formatted}
    </p>;
};

## Symptom: Widget Not Found or Error Message After Installation

If you see an error message in the Polarion UI where the Gantt widget should appear, or the widget is not listed in the available widgets, the most common cause is that the configuration cache was not cleared after installation.

<Frame>
  <img src="https://mintcdn.com/none-17b4493f/XoCXinV6eKUe5dKK/gantt/images/48000974197/1.png?fit=max&auto=format&n=XoCXinV6eKUe5dKK&q=85&s=f5c602469468f9cb39c66e707d467d4a" alt="Polarion UI showing the error message that appears where the Gantt widget should render when the configuration cache was not cleared" width="1318" height="446" data-path="gantt/images/48000974197/1.png" />
</Frame>

<Frame>
  <img src="https://mintcdn.com/none-17b4493f/umKaPvHwUHw-ZQFM/gantt/diagrams/guides/troubleshooting/installation-issues/diagram-1.svg?fit=max&auto=format&n=umKaPvHwUHw-ZQFM&q=85&s=b838f2db8c5fad04da4d10777e8678c7" alt="diagram" style={{ maxWidth: "520px", width: "100%" }} width="520" height="620" data-path="gantt/diagrams/guides/troubleshooting/installation-issues/diagram-1.svg" />
</Frame>

<Steps>
  <Step title="Stop the Polarion Server">
    Shut down the Polarion server before making any file system changes. Use your standard server management process to stop the service.
  </Step>

  <Step title="Delete the Configuration Cache">
    Navigate to your Polarion installation directory and delete the `.config` folder:

    ```
    [POLARION_INSTALL]/data/workspace/.config
    ```

    This folder contains configuration caches that Polarion rebuilds automatically on startup. Deleting it forces Polarion to re-read all extension registrations, including the newly installed Gantt widget.

    <Note title="This is a standard Polarion procedure">
      Deleting the `.config` folder is prescribed by the Polarion team whenever a new extension with a web application component is installed. The caches are rebuilt automatically and no data is lost.
    </Note>
  </Step>

  <Step title="Start the Polarion Server">
    Restart the Polarion server. The first startup after clearing the cache may take slightly longer as Polarion rebuilds its configuration.
  </Step>

  <Step title="Verify the Widget Is Available">
    1. Navigate to a LiveDoc or Wiki page in Polarion
    2. Enter edit mode and add a widget
    3. Search for **Gantt** in the widget list
    4. Verify that both **Gantt (Work Items)** and **Gantt (Plans)** appear

    <Info title="Verify in application">
      If the widget still does not appear after clearing the cache, verify that the Gantt extension files were placed in the correct directory as described in the `INSTALL.txt` file included in the distribution package.
    </Info>
  </Step>
</Steps>

## Additional Checks

| Check                   | Location                                    | Expected Result                   |
| ----------------------- | ------------------------------------------- | --------------------------------- |
| Extension files present | `[POLARION_INSTALL]/polarion/extensions/`   | Gantt extension folder exists     |
| Cache cleared           | `[POLARION_INSTALL]/data/workspace/.config` | Folder deleted (rebuilt on start) |
| Server restarted        | Polarion service                            | Running without errors            |
| Widget available        | Page editor > Add Widget                    | Gantt widgets listed              |

## Verify

After completing these steps, you should now see the Gantt widget available in the Polarion page editor widget picker. Adding it to a page should display the Gantt chart configuration panel without errors.

## See also

* [Install Gantt](/gantt/getting-started/installation)
* [Update to the Latest Version](/gantt/getting-started/update-gantt)
* [Troubleshooting Blank or Non-Loading Gantt](/gantt/guides/troubleshooting/blank-gantt)

<LastReviewed date="2026-06-24" />
