ErrorMessages

This page provides help for specific error messages that sites may encounter when using PmWiki. If this page doesn't answer your question, try looking at Troubleshooting and frequently asked questions. If these still don't have the answer you're looking for, try the pmwiki-users mailing list or ask a question on the Questions page.


Deprecated: preg_replace(): The /e modifier is deprecated

See Troubleshooting.

File permissions

Many issues are caused by incorrect File Permissions.

Cannot acquire lockfile

Something (or someone) has changed the permissions on the wiki.d/.flock file or the wiki.d/ directory such that the webserver is no longer able to write the lockfile. The normal solution is to simply delete the .flock file from the wiki.d/ directory -- PmWiki will then create a new one. Also be sure to check the permissions on the wiki.d/ directory itself. What should the permissions be? AFAIK, read and write permission for your webserver account (e.g. www:www or apache:apache, 0750)
See also File Permissions.

Note that on many systems .flock is a hidden file, so it may still be there even if you cannot view it. Try deleting it anyway even if you don't see it in the wiki.d/ directory.

Other possibilities :

  • You may have recently moved the wiki and you were previously using EnableIMSCaching. Disable EnableIMSCaching in your local/config.php file and that could fix the problem RussFink (this information should be subject to review).
  • The wiki.d ownership may have been moved out of reach of the webserver. E.g. running Apache2 server as user www-data and deactivating its suphp module would disallow it to write the .flock file under the users permissions. In such a case, one should change the directory permissions for wiki.d to that of the user under which the web server runs. (this information subject to review)
  • The issue may be caused by copying files which changed the owner of wiki.d directory. In such a case one could fix this error by running "chown -R wwwrun ../wiki/wiki.d/".
  • One more possible cause could be safe mode. Check your logfiles for errors like SAFE MODE Restriction in effect. The script whose uid is 1001 is not allowed to access /www/wiki/wiki.d owned by uid 52 ... In this case you either have to turn off safe mode, or change the user/group to the user/group PHP is using (for hosting companies this usually is the user you use to log in) and set permissions to 0777 (that is, write for everyone) or turn off safe mode.
  • SELinux may be preventing write access (check SELinux logs with the sealert command). Ensure that SELinux configuration is correct or that SELinux is disabled. One can temporarily enable the write access by executing "chcon -R -t httpd_sys_rw_content_t 'wiki.d'".
  • Finally, this error may be due to problems at a broader level on the system. Symptoms of such an issue would be the inability to create/delete files on the system as well as the .flock file.

Skin template missing <!--HTMLHeader-->/<!--HTMLFooter-->

Skin templates are now required to contain <!--HTMLHeader--> and <!--HTMLFooter--> directives. Some skins developed under older versions of PmWiki failed to include these required directives, thus causing some PmWiki features and recipes to work improperly.

To work around this issue, do any of the following:

  1. Set $EnableSkinDiag=0; in a local customization file.
  2. If you downloaded the skin from the Skins collection, check to see if there's an updated version of the skin that includes the required directives.
  3. Modify the skin's .tmpl file to include <!--HTMLHeader--> and <!--HTMLFooter-->.
  4. If the skin explicitly doesn't want the header/footer information, use <!--NoHTMLHeader--> and/or <!--NoHTMLFooter--> in the template.

Unable to load skin template

PmWiki was able to find a requested skin, but couldn't find an appropriate .tmpl file to use as a template. If you have a custom skin, make sure there is exactly one .tmpl file in the skin's directory. (See skins and skin templates.) If you downloaded a skin from the Skins collection, make sure the skin was installed correctly, or contact the skin's author for more assistance.

Unable to retrieve edit form Site.EditForm

PmWiki was unable to find or load the Site.EditForm page containing the form used to edit pages. Often this occurs when the wikilib.d/ folder isn't completely copied to the webserver, or when a read password has been placed on Site.EditForm or the Site group. Double-check that all of the distribution files are correctly copied on the webserver, and that authors have read permission to the Site.EditForm page.

Cannot modify site -- $EnableReadOnly is set

PmWiki is attempting to do something that requires modifying pages or files on the filesystem, and the administrator has set the $EnableReadOnly configuration variable.

LDAP authentication requires PHP ldap functions

PmWiki is attempting to obtain information from an LDAP server (e.g., via authuser.php and AuthUser), but the PHP software doesn't appear to have the ldap_* functions available. PHP may have been built without support for LDAP (see https://www.php.net/ldap ).

Ubuntu users: install php5-ldap and restart apache. -drdaan December 31, 2009, at 02:22 AM

Unable to move file

Warning: move_uploaded_file(uploads/TTC/AlpineInstruction/Food Planning Ideas and Guidance.doc) [function.move-uploaded-file]: failed to open stream: Permission denied in /home/ttc/public_html/pmwiki/scripts/upload.php on line 217 Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/phpWMoIKx' to 'uploads/TTC/AlpineInstruction/Food Planning Ideas and Guidance.doc' in /home/ttc/public_html/pmwiki/scripts/upload.php on line 217 PmWiki can't process your request ?cannot move uploaded file to uploads/TTC/AlpineInstruction/Food Planning Ideas and Guidance.doc

Set the permissions on the directory and files to "flcdmpe(777)".

This page may have a more recent version on pmwiki.org: PmWiki:ErrorMessages, and a talk page: PmWiki:ErrorMessages-Talk?.