<html><head><title>Re: [pmwiki-users] PmWiki can't process your request</title>
</head>
<body>
<span style=" font-family:'courier new'; font-size: 9pt; color: #800000;"><b>> First, I'd check any $*Patterns variables, in your case specifically <br>
> $MakePageNamePatterns. Since PHP 5.5 / PmWiki 2.2.58 those patterns that<br>
> need evaluation have to be rewritten:<br>
<br>
> before:<br>
>      '/((^|[^-\\w])\\w)/e' => "strtoupper('$1')",<br>
<br>
> now:<br>
>      '/((^|[^-\\w])\\w)/' => PCCF("return strtoupper(\$m[1]);"),<br>
<br>
> (Removed "e" from the end of the pattern, code wrapped as a callback <br>
> function.)<br>
<br>
</b><span style=" color: #000000;">no pattern variables are used.<br>
<br>
<span style=" color: #800000;"><b>> Otherwise, the general way to debug is to disable all recipes and enable<br>
> them one after another.<br>
<br>
</b><span style=" color: #000000;">I tried, makes no difference.<br>
<br>
<span style=" color: #800000;"><b>> Can you save pages with the core installation, without any recipes and<br>
> configurations? (Rename or remove config.php to try.)  If the problem <br>
> disappears, create a new config.php and add all your <br>
> recipes/configuration back in one at a time until the problem re-occurs.<br>
> Then you'll know which recipe to investigate.<br>
<br>
</b><span style=" color: #000000;">I can create and edit new pages, with or without recipe scripts included.<br>
I cannot edit pages even with a bare config.php, with the minimum requirement:<br>
$WikiDir = new PageStore('wiki.d/$Group/$FullName');<br>
<br>
I renamed Main.HomePage. Then the default Main.HomePage from wikilib.d gets loaded.<br>
And I cannot save edits on that page either.<br>
I can edit any page on my local machine.<br>
<br>
Any other ideas?<br>
<br>
~Hans</body></html>