The aim of PIB is to help developers and other specialists in IT to consolidate all project related information in one board, apply and keep track of Agile methods (Scrum and Kanban for the moment), reduce the time they need to search in different folders and online resources for the requested information.
Right now, Iβm still developing and preparing features for PIB and WooCommerce integration.
Feedback & Contributions Welcome If you find bugs, want new features, have ideas, or want to help refactor or optimize β please open an issue or submit a pull request. Even small fixes (typos, readability, tests) help.
π Refactoring and cleanup will be included in this release before tagging it stable.
- π¦ Fetch subscription/payment data per project directly from WooCommerce.
- π Provide structured XML output per project, making it easier to track freelancer payments, subscriptions, and recurrent work.
- π Allow better tracking and reporting from WooCommerce for project-based payments.
Stay tuned β more details and documentation will follow with the release.
Shows server control, resource embedding, and progress tracking.
The video is up-to-date β only change: "Backup" buttons removed, server controls added.
Everything else works exactly as shown.
-
Download PIB and place the
pibfolder in your web project root (e.g.,/var/www/pib/or/var/www/project1/pib/), ensuring your web server (e.g., Apache) is configured to serve files from that location β no special Apache configuration is needed.You can have multiple parallel PIB folders β each runs its own server instance on a unique port.
Set appropriate permissions
sudo chown -R root:root /var/www/project1/pibandsudo chmod -R 755 /var/www/project1/pib -
To start PIB, go http://localhost/project1/pib in your prefered browser in the pib folder from your projectβs root directory using your preferred browser.
-
Choose "Configuration" in the top-right corner. Then, in the bottom-left section, find "Embedded Server" and click the "Start Server" button. After the server starts, select one of the available Agile methods. Once selected, the choice is locked.
-
To add online resources such as URLs, PDFs, text files, CSVs, or other externally hosted files, copy the link and paste it into Configuration > Add Resource. Then select the display position (left or right panel), button color, name, and icon. After saving, clicking the button will load the resource in the chosen panel.
β οΈ External sites may block embedding due to CORS.
β But files in thepib/resourcesfolder are served locally via the embedded server β so they always work and bypass all CORS/iframe issues. -
Adding Local Files (PDFs, CSVs, Text, etc.)
To add local files (PDFs, CSVs, text files, etc.) and access them with a click in PIB:
-
β Place your files in the
pib/resources/folder
Example:
pib/resources/docs/Java 8 in Action.pdf -
β Start the PIB embedded server
Click "Start Server" in the Configuration panel.
The server will run on a specific port (e.g.,8088,8092) β this port is displayed just below the button. -
β Use the correct localhost URL
Construct the URL as: http://localhost:PORT/resources/your-file.pdfReplace
PORTwith the one shown in the UI (e.g.,8088):
βhttp://localhost:8088/resources/docs/Java 8 in Action.pdf -
β Add the resource in PIB
- Go to Configuration > Add Resource
- Paste the full
http://localhost:PORT/...URL - Choose button name, color, and display panel (left or right)
-
β Click the button
The file will load directly in the selected panel β no CORS issues, because it's served from the same origin.
β οΈ Important Notes:- β Do not use
file://URLs β they are blocked by browsers for security. - β Avoid browser extensions like "Allow access to local files" β they are unsafe and unreliable.
- β
Only files inside the
pib/folder (likeresources/) are accessible β this is a security feature. - π If the server restarts on a new port, update your mental note β the port is always shown in the UI.
- β Do not use
-
-
Etape buttons with their pages can handle basic data inputs related to different stages of the project development process. The etape buttons may differ depending on the selected method. Only the "Ticketing" button is always related to the Trello board. On each etape button's related page, there is a checkbox. After considering that the etape task is accomplished, you can check this checkbox, and the PIB progress bar will increment showing the overall progress of the project.
-
Prepare your Trello project board URL with a ".html" extension if the board has "Public" access. Add it in the "Add Trello account" section. After selection, the button will be locked. If there's an error, clear the browser cache and add the URL again. You can then click on the "Ticketing" button in the project navbar, and your board will appear in the left window.
-
To back up the project data, go to the PIB folder and copy the db.json file. All your data is stored in this file.
-
To restore the data:
Start the embedded PHP server. Wait for the db.json file to be generated (if it doesnβt exist). Stop the server. Replace the current db.json with your backup. Restart the server. β οΈ Important: Do not replace db.json while the server is running β it may cause data loss or corruption.
Additional Notes:
-
For Chrome browser, add the extension "Allow access to local files" for accessing PDFs and other local files.For other browsers check for similar extentions.
-
If you see "X-Frame-Options deny" errors, try to install these extensions:
- Chrome: "Ignore X-Frame headers" extension
- Firefox: "Ignore X-Frame-Options Header" extension
- Edge: "X-Frame-Bypass" extension
- If none of these work, use the Embedded Server of PIB, but this time you need to place all resource files inside the PIB resources folder - it will serve only files inside this folder, not all files from PC, so it's preferable to try extensions to be able to add any file from PC to PIB. Users can add parallel PIB folders with no problem - each folder will automatically start its own instance of the server. Note: Pay attention to permissions - you may need to add sudoers permissions to the user or execute the command manually from the terminal. Check the server section for specific permission requirements.
-
All office files must be placed in Google Drive with a shared URL, which can then be added as a "resource" using the resource button.
-
Localhost must have a basic or default web server like Apache configured β it will act as the parent server, while each embedded PIB server instance runs in a parallel folder, allowing multiple independent PIB instances on the same machine.
-
Prepare the Trello account token and key in one URL and add it in the "Configuration" menu.
-
No additional frameworks or libraries are needed only PHP: Version 8.1.32 or higher.
-
To UPDATE app you need to replace all files except resources folder.
-
PIB is now fully stageable, including all its data. You can use Git to manage versions. For clarity, consider using a dedicated Git repository (or branch) for each PIB instance, with a naming convention like projectname_pib or pib_projectname to identify which project it belongs to.