Strip proceeding slash of path; wrap error message in quotation marks
- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
All Stories
Apr 11 2025
Apr 10 2025
Much better, two nitpicks:
Only expose last call location if phabricator.developer-mode is set
Thanks! Indeed I should have tested this more.
I don't know this detail my friend. Let's wait for other answers.
Thanks for this info. We configured permanent refs for all our repositories, but I'm not sure I'm getting e-mails for these.
Apr 9 2025
Apr 8 2025
Apr 7 2025
I patched this in our local repo with a change to /src/applications/project/engine/PhabricatorBoardLayoutEngine.php, in the layoutBoard() method. Around line 520, inside if ($proxy_hits) block, you have array_slice() taking the first element of $proxy_hits, which seems random.
@mturdus: Could you land this one please, or would you like any help? Thanks!
- Apply this patch on a Fedora 42 system with PHP 8.4.5. php -m listed mysqli, mysqlnd, pdo_mysql etc.
- Uninstall php-mysqlnd package. After reboot, php -m does not list those three modules anymore, and Phorge complains Required PHP extensions are not installed: mysqli as expected.
- Install package again, Phorge works: "Unresolved setup issues" still lists the same MySQL related stuff as before; /config/clusters/databases shows entry as usual; successfully filed a Maniphest task.
- Open /etc/php.ini and set mysqli.allow_local_infile = On. Restart Apache HTTPD. "Unresolved setup issues" in Phorge shows Unsafe "MySQL "local_infile" Setting Enabled as expected.
NEiN iN NiNE - created by SIMON BOSTON
Apr 6 2025
Setup phorge, saw nothing unusual in the setup issues.
Sure, 7 years is probably long enough to migrate cookies.
Apr 5 2025
One other thing to check: The chat uses wss (websocket) connection to communicate with aphlict. It's possible that a firewall or reverse proxy may be blocking the connection? Not all proxies support websockets in their default configuration. See verifying server status in the documentation for some tips, especially the part about load balancers and ssl.
git rebase master
Update documentation and simplify extension check
Nearly perfect (thanks!), only thing missing is to also update mysql (or mysqli) in src/docs/user/installation_guide.diviner.
Ran bin/celerity map
In D25887#25297, @mainframe98 wrote:Phorge supports either the old mysql extension or mysqli - and mysql was deprecated in PHP 5.5, and removed in PHP 7.0.
I cannot remember how I attempted (and failed) to check a few weeks ago... Thank you both for jumping in and correcting!
Apr 4 2025
In T15948#21505, @Cigaryno wrote:
Apr 3 2025
Yeah I was also pretty sure Phab used mysqli? I have had to have it on all my installations, and the Phorge documentation still cites it. https://we.phorge.it/book/contrib/article/database/
Phorge neither uses PHP's mysqli extension nor calls PHP's htmlentities() function.
Are you sure about that? Phorge supports either the old mysql extension or mysqli - and mysql was deprecated in PHP 5.5, and removed in PHP 7.0. Notably, Phorge checks for the existence of mysqli in PhabricatorDatabaseRef, PhabricatorExtensionSetupCheck and PhabricatorPHPConfigSetupCheck.