This topic is locked

Cannot find .phpr project file for PHPRunner 11

8/17/2025 10:11:03 AM
PHPRunner General questions
B
bioman author

Hi,
I've been trying to find the PHPRunner project file (.phpr extension) for a PHPRunner project I'm working on. I've searched *.phpr in the file explorer and have even tried using the command prompt. I'm trying to do this so that I can get rid of the output files and do a completely clean build since some of the code isn't working as expected and AI thinks maybe that's the cause (some cached or older files). Where is the project file stored in PHPRunner 11? The path is not listed when I open the project and I haven't been able to find it. Thanks,
Brett

Sergey Kornilov admin 8/17/2025

img alt

C
Chris Whitehead 8/17/2025

Brett,

As Sergey has already said, the project files are now in a database but If you're trying to get rid of the output files, then the path should be in the output section -> output folder , you should be able to just delete all the files in that folder, rebuild and have a clean build.

Or you could post the issue on here, if it's cache related you could add headers to the after initialise application event to stop the caching.

header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
B
bioman author 8/18/2025

OK, thanks for the clarification!