Uploads Administration
PmWiki includes a script called upload.php that allows users to upload files to the wiki server using a web browser. Uploaded files (also called attachments) can then be easily accessed using markup within wiki pages. This page describes how to install and configure the upload feature.
Some notes about security
PmWiki takes a somewhat, but justifiable, paranoid stance when it comes to the uploads feature. Thus, the default settings for uploads tend to try to restrict the feature as much as possible:
- The upload function is disabled by default
- Even if you enable it, the function is password locked by default
- Even if you remove the password, you're restricted to uploading files with certain names, extensions, and sizes
- The characters that may appear in upload filenames are (default) alphanumerics, hyphen, underscore, dot, and space (see also here).
- The maximum upload size is small (50K by default)
This way the potential damage is limited until/unless the wiki administrator explicitly relaxes the restrictions.
Keep in mind that letting users (anonymously!) upload files to your web server does entail some amount of risk. The upload.php script has been designed to reduce the hazards, but wiki administrators should be aware that the potential for vulnerabilities exist, and that misconfiguration of the upload utility could lead to unwanted consequences.
By default, authorized users are able to overwrite files that have already been uploaded, without the possibility of restoring the previous version of the file. If you want to disallow users from being able to overwrite files that have already been uploaded, add the following line to config.php:
$EnableUploadOverwrite = 0;
Alternatively, an administrator can keep older versions of uploads.
An administrator can also configure PmWiki so the password mechanism controls access to uploaded files.
Basic installation
The upload.php script is automatically included from stdconfig.php if the $EnableUpload
variable is true in config.php. In addition, config.php can set the $UploadDir
and $UploadUrlFmt
variables to specify the local directory where uploaded files should be stored, and the URL that can be used to access that directory. By default, $UploadDir
and $UploadUrlFmt
assume that uploads will be stored in a directory called uploads/ within the current directory (usually the one containing pmwiki.php). In addition, config.php should also set a default upload password (see PasswordsAdmin).
Thus, a basic config.php for uploads might look like:
<?php if (!defined('PmWiki')) exit(); ## Enable uploads and set a site-wide default upload password. $EnableUpload = 1; $UploadPermAdd = 0; $DefaultPasswords['upload'] = pmcrypt('secret');
If you have edit passwords and wish to allow all users with edit rights to upload, instead of $DefaultPasswords
['upload'], you can set
in config.php.
$HandleAuth
['upload'] = 'edit';
Important: do NOT create the uploads directory yet! See the next paragraph.
You may also need to explicitly set which filesystem directory will hold uploads and provide a URL that corresponds to that directory like:
$UploadDir = "/home/foobar/public_html/uploads"; $UploadUrlFmt = "https://example.com/~foobar/uploads";
Note: In most installations, you don't need to define or change these variables, usually PmWiki can detect them (and if you do, uploads may simply not work).
Upload directory configuration
Uploads can be configured site-wide, by-group (default), or by-page by changing $UploadPrefixFmt
in config.php
.
This determines whether all uploads go in one directory for the site, an individual directory for each group, or an individual directory for each page. The default is to organize upload by group.
It is recommended that the $UploadPrefixFmt
variable defined in config.php is the same for all pages in the wiki, and not different in group or page local configuration files. Otherwise you will be unable to link to attachments in other wikigroups.
Single upload directory
For site-wide uploads, use
$UploadPrefixFmt = '';
Per page upload directories
To organize uploads by page, use:
$UploadPrefixFmt = '/$Group/$Name';
You may prefer uploads attached per-page rather than per-group or per-site if you plan to have many files attached to individual pages. This setting simplifies the management of picture galleries for example. (In a page, you can always link to attachments to other pages.)
The upload directory
For the upload feature to work properly, the directory given by $UploadDir must be writable by the web server process, and it usually must be in a location that is accessible to the web somewhere (e.g., in a subdirectory of public_html). Executing PmWiki with uploads enabled will prompt you with the set of steps required to create the uploads directory on your server (it differs from one server to the next). Note that in that case you may be required to explicitly create writable group- or page-specific subdirectories as well!
Uploading a file
Once the upload feature is enabled, users can access the upload form by adding "?action=upload
" to the end of a normal PmWiki URL. The user will be prompted for an upload password similar to the way other pages ask for passwords (see Passwords and PasswordsAdmin for information about setting passwords on pages, groups, and the entire site).
Another way to access the upload form is to insert the markup "Attach:filename.ext
" into an existing page, where filename.ext
is the name of a new file to be uploaded. When the page is displayed, a '?-link' will be added to the end of the markup to take the author to the upload page. (See Uploads for syntax variations.)
By default, PmWiki will organize the uploaded files into separate subdirectories for each group. This can be changed by modifying the $UploadPrefixFmt
variable. See Cookbook:UploadGroups for details.
Versioning Uploaded Files
PmWiki does not manage versioning of uploaded files by default. However, by setting
an administrator can have older versions of uploads preserved in the uploads directory along with the most recent version.
$EnableUploadVersions
=1;
Upload restrictions
Restricting uploaded files for groups and pages
Uploads can be enabled only for specific groups or pages by using a group customization. Simply set
for those groups or pages where uploading is to be enabled; alternately, set $EnableUpload
=1;
in the config.php file and then set $EnableUpload
=1;
in the per-group or per-page customization files where uploads are to be disabled.
$EnableUpload
=0;
Restricting total upload size for a group or the whole wiki
Uploads can be restricted to an overall size limit for groups. In the group configuration file (i.e., local/Group.php), add the line
$UploadPrefixQuota
= 1000000; # limit group uploads to 1000KB (1MB)
This will limit the total size of uploads for that group to 1000KB --any upload that pushes the total over the limit will be rejected with an error message. This value defaults to zero (unlimited).
Uploads can also be restricted to an overall size limit for all uploads. Add the line
$UploadDirQuota
= 10000000; # limit total uploads to 10000KB (10MB)
This will limit the total size of uploads for the whole wiki to 10000KB --any upload that pushes the total over the limit will be rejected with an error message. This value defaults to zero (unlimited).
Restricting uploaded files type and size
The upload script performs a number of verifications on an uploaded file before storing it in the upload directory. The basic verifications are described below.
- filenames
- the name for the uploaded file can contain only letters, digits, underscores, hyphens, spaces, and periods, and the name must begin and end with a letter or digit.
- file extension
- only files with approved extensions such as "
.gif
", ".jpeg
", ".doc
", etc. are allowed to be uploaded to the web server. This is vitally important for server security, since the web server might attempt to execute or specially process files with extensions like ".php
", ".cgi
", etc. - file size
- By default all uploads are limited to 50K bytes, as specified by the
$UploadMaxSize
variable. Thus, to limit all uploads to 100KB, simply specify a new value for$UploadMaxSize
in config.php:
$UploadMaxSize = 100000;
However, the default maximum file size can also be specified for each type of file uploaded. Thus, an administrator can restrict ".gif
" and ".jpeg
" files to 20K, ".doc
" files to 200K, and all others to the size given by $UploadMaxSize
. The $UploadExtSize
array is used to determine which file extensions are valid and the maximum upload size (in bytes) for each file type. For example:
$UploadExtSize['gif'] = 20000; # limit .gif files to 20KB
Disabling file upload by file type
Setting an entry to zero disables file uploads of that type altogether:
$UploadExtSize['zip'] = 0; # disallow .zip files $UploadExtSize[''] = 0; # disallow files with no extension
You can limit which types of files are uploadable by disabling all defaults and specifying only desired types.
Setting the variable $UploadMaxSize
to zero will disable all default file types. Individual file types may then be enabled by setting their maximum size with the variable $UploadExtSize
.
# turns off all upload extensions $UploadMaxSize = 0; # enable only these file types for uploading $aSize=100000; // 100 KB file size limitation $UploadExtSize['jpg' ] = $aSize; $UploadExtSize['gif' ] = $aSize; $UploadExtSize['png' ] = $aSize;
Note: Files with multiple extensions
Some installations with the Apache server will try to execute a file which name contains ".php", ".pl" or ".cgi" even if it isn't the last part of the filename. For example, a file named "test.php.txt" may be executed. To disallow such files to be uploaded, add to config.php such a line:
$UploadBlacklist
= array('.php', '.pl', '.cgi');
Adding new file types to permitted uploads
To add a new extension to the list of allowed upload types, add a line like the following to a local customization file:
$UploadExts['ext'] = 'content-type';
where ext is the extension to be added, and content-type is the "MIME type", or content-type (which you may find at IANA, Free Formatter, Apache mime types, or the internet media types) to be used for files with that extension. For example, to add the 'dxf
' extension with a Content-Type of 'image/x-dxf
', place the line
$UploadExts['dxf'] = 'image/x-dxf';
Each entry in $UploadExts
needs to be the extension and the
mime-type associated with that extension, thus:
$UploadExts = array( 'gif' => 'image/gif', 'jpeg' => 'image/jpeg', 'jpg' => 'image/jpeg', 'png' => 'image/png', 'xxx' => 'yyyy/zzz' );
For the types that PmWiki already knows about it's not necessary to repeat them here (the upload.php script adds PmWiki's defaults to whatever the administrator supplies). See also Cookbook:UploadTypes for additional types.
Other file size limits
There are other factors involved that affect upload file sizes. In Apache 2.4, there is a LimitRequestBody directive that controls the maximum size of anything that is posted (including file uploads). Apache has this defaulted to unlimited size. However, some Linux distributions (e.g., Red Hat Linux) limit postings to 512K so this may need to be changed or increased. (Normally these settings are in an httpd.conf configuration file or in a file in /etc/httpd/conf.d.)
Problem noted on Red Hat 8.0/9.0 with Apache 2.0.x, the error "Requested content-length of 670955 is larger than the configured limit of 524288" was occurring under Apache and a "Page not found" would appear in the browser. Trying the above settings made no change with PHP, but on Red Hat 8.0/9.0 there is an additional PHP config file, /etc/httpd/conf.d/php.conf, and increasing the number on the line "LimitRequestBody 524288" solves the issue.
PHP itself has two limits on file uploads (usually located in /etc/php.ini
). The first is the upload_max_filesize
parameter, which is set to 2MB by default. The second is post_max_size
, which is set to 6MB by default.
With the variables in place--PmWiki's maximum file size, Apache's request-size limits, and the PHP file size parameters, the maximum uploaded file size will be the smallest of the three variables.
Password protecting uploaded files
Setting a read password for pages (and groups) will prevent an attached file from being seen or accessed through the page, but to prevent direct access to the file location (the uploads/ directory) one can do the following:
- In local/config.php set
;$EnableDirectDownload
=0 - If you use per-group upload directories (PmWiki default, see
$UploadPrefixFmt
), add to config.php$EnableUploadGroupAuth
= 1; - Deny public access to the uploads/ directory through moving it out of the html/ or public_html/ directory tree, or through a .htaccess file.
See Cookbook:Secure attachments
Other notes
- If uploads doesn't seem to work, make sure that your PHP installation allows uploads. The php.ini file (usually /etc/php.ini or /usr/local/lib/php.ini) should have
file_uploads = On
- Another source of error in the php.ini file is a not defined upload_tmp_dir. Just set this variable to your temp directory, e.g.
upload_tmp_dir = /tmp
Note that if you change this values, httpd must generally be restarted. Another way to check if uploads are allowed by the server is to set $EnableDiag
to 1 in config.php, and set ?action=phpinfo on a URL. The "file_uploads
" variable must have a value of 1 (if it says "no value
", that means it's off).
FAQ
How do I disable uploading of a certain type of file?
Here's an example of what to add to your local/config.php file to disable uploading of .zip files, or of files with no extension:
$UploadExtSize['zip'] = 0; # Disallow uploading .zip files $UploadExtSize[''] = 0; # Disallow files with no extension
How do I attach uploads to individual pages or the entire site, instead of organizing them by wiki group?
Use the $UploadPrefixFmt
variable (see also the Cookbook:UploadGroups recipe).
$UploadPrefixFmt = '/$FullName'; # per-page, in Group.Name directories $UploadPrefixFmt = '/$Group/$Name'; # per-page, in Group directories with Name subdirectories $UploadPrefixFmt = ''; # site-wide
For $UploadDirQuota
- can you provide some units and numbers? Is the specification in bytes or bits? What is the number for 100K? 1 Meg? 1 Gig? 1 Terabyte?
Units are in bytes.
$UploadDirQuota = 100*1024; # limit uploads to 100KiB $UploadDirQuota = 1000*1024; # limit uploads to 1000KiB $UploadDirQuota = 1024*1024; # limit uploads to 1MiB $UploadDirQuota = 25*1024*1024; # limit uploads to 25MiB $UploadDirQuota = 2*1024*1024*1024; # limit uploads to 2GiB
Is there a way to allow file names with Unicode or additional characters?
Yes, see $UploadNameChars
Where is the list of attachments stored?
It is generated on the fly by the
- 3minds-contexts.png Δ ... 484,124 bytes ... March 14, 2025, at 02:21 PM
- 3minds-manifestations.png Δ ... 452,603 bytes ... January 08, 2025, at 03:52 PM
- 12-kissing-spheres.png Δ ... 92,497 bytes ... January 28, 2025, at 10:15 PM
- 1862-ClementinaHawarden.jpg Δ ... 199,843 bytes ... November 25, 2024, at 11:37 AM
- 20250219FourWorldViews.png Δ ... 497,124 bytes ... February 19, 2025, at 01:06 PM
- AaronHines-PoliceStop.png Δ ... 1,128,120 bytes ... November 27, 2024, at 10:41 AM
- ABC.jpg Δ ... 31,392 bytes ... November 25, 2024, at 09:31 AM
- ActiveInferenceInstituteLogo.png Δ ... 44,512 bytes ... August 31, 2024, at 10:00 PM
- ActiveInferenceTextbookCover.png Δ ... 123,336 bytes ... October 31, 2024, at 07:02 PM
- ActiveInferenceTwoRoads.png Δ ... 37,319 bytes ... August 20, 2024, at 09:12 PM
- ActiveInferenceWondrousWisdom.png Δ ... 137,308 bytes ... November 19, 2024, at 03:08 PM
- AdamAndEve-PeterPaulRubens.jpg Δ ... 578,249 bytes ... September 05, 2024, at 10:36 PM
- AdamEveJesus.png Δ ... 557,639 bytes ... November 22, 2024, at 09:38 PM
- AdamGrantThinkAgain.jpg Δ ... 43,643 bytes ... October 15, 2024, at 01:43 PM
- AhuraMazda.jpg Δ ... 72,031 bytes ... August 31, 2024, at 08:30 AM
- AjaxAchilles.png Δ ... 1,016,628 bytes ... November 22, 2024, at 01:12 PM
- Al-kindi_cryptographic.png Δ ... 48,609 bytes ... October 28, 2024, at 10:52 PM
- Alan-Watts.jpg Δ ... 78,636 bytes ... October 25, 2024, at 08:20 PM
- AlbertinOctopusGenome.png Δ ... 444,948 bytes ... November 21, 2024, at 10:58 PM
- AlexanderAristotle.jpg Δ ... 44,360 bytes ... November 22, 2024, at 12:25 PM
- AmericanTavern1776.jpg Δ ... 131,559 bytes ... November 25, 2024, at 10:48 AM
- AnswersQuestionsInvestigations.png Δ ... 10,052 bytes ... October 07, 2024, at 02:43 PM
- Apocalypse_Now_poster.jpg Δ ... 110,562 bytes ... November 20, 2024, at 09:46 PM
- Aristoteles_Louvre.jpg Δ ... 229,096 bytes ... August 13, 2024, at 12:17 PM
- Aristotle_Altemps_Inv8575.jpg Δ ... 2,244,558 bytes ... August 13, 2024, at 12:23 PM
- AshbyHomeostat.png Δ ... 70,335 bytes ... November 27, 2024, at 11:43 PM
- AssemblyOfQuakers.jpg Δ ... 90,301 bytes ... September 29, 2024, at 05:41 PM
- AtmanSymbol.png Δ ... 32,629 bytes ... August 22, 2024, at 03:48 PM
- AugustineSoliloquies.png Δ ... 298,488 bytes ... October 31, 2024, at 08:46 PM
- BabylonianDreamTablet.jpg Δ ... 184,089 bytes ... December 03, 2024, at 03:23 PM
- Barrett-WhatMySoulToldMe.jpg Δ ... 39,065 bytes ... September 27, 2024, at 10:37 PM
- BayesTheorem.png Δ ... 6,121 bytes ... September 24, 2024, at 06:27 PM
- BerlinHedgehogFox.jpg Δ ... 67,693 bytes ... October 15, 2024, at 03:56 PM
- Blake-DoorsOfPerception.jpg Δ ... 83,343 bytes ... January 21, 2025, at 07:14 PM
- BonfilWagage-CBTModel.png Δ ... 192,775 bytes ... December 21, 2024, at 09:55 AM
- Boyd-OODALoop-1995.png Δ ... 107,825 bytes ... September 06, 2024, at 10:20 AM
- brain-hemispheres.jpg Δ ... 10,823 bytes ... July 28, 2024, at 11:16 PM
- BuddhaFirstSermon.jpg Δ ... 821,804 bytes ... December 09, 2024, at 02:36 PM
- CabinetMInd.png Δ ... 214,710 bytes ... November 24, 2024, at 03:46 PM
- CaffeinatedSpider.jpg Δ ... 100,056 bytes ... January 30, 2025, at 07:40 PM
- Caliban.png Δ ... 1,975,514 bytes ... September 05, 2024, at 09:25 AM
- CarolHighsmith-ShunsenKatsukawa.png Δ ... 602,021 bytes ... November 25, 2024, at 10:34 AM
- CenterForTheStoryOfTheUniverse.png Δ ... 25,146 bytes ... November 26, 2024, at 09:53 PM
- chariot-amphora.jpg Δ ... 65,749 bytes ... September 01, 2024, at 03:29 PM
- chick-imprinting.png Δ ... 1,463,407 bytes ... September 01, 2024, at 11:21 AM
- ChimpanzeePilferingPalmSap.png Δ ... 113,668 bytes ... January 30, 2025, at 08:20 PM
- ClipperShip.png Δ ... 869,601 bytes ... November 25, 2024, at 01:02 PM
- ConsumerConfidenceIndex.png Δ ... 70,013 bytes ... January 21, 2025, at 08:47 PM
- Dahuting_tomb_mural_showing_hanfu_dress_Eastern_Han_Dynasty.jpg Δ ... 73,090 bytes ... November 22, 2024, at 03:15 PM
- DanceOfMuses.jpg Δ ... 502,086 bytes ... August 21, 2024, at 08:24 PM
- DeathOfSocrates.jpg Δ ... 324,746 bytes ... October 13, 2024, at 10:48 AM
- deligne-kowalski-geometry.png Δ ... 41,080 bytes ... December 27, 2024, at 08:42 PM
- DemisHassabis-FindingBestMolecule.png Δ ... 444,471 bytes ... January 20, 2025, at 08:57 AM
- DemisHassabis-NobelPrizeLecture.png Δ ... 377,529 bytes ... January 20, 2025, at 08:53 AM
- Dharma_Flower_Temple_Trikaya.jpg Δ ... 1,386,954 bytes ... August 31, 2024, at 10:18 AM
- Dilthey-three-philosophers.png Δ ... 1,405,271 bytes ... November 18, 2024, at 07:38 PM
- DonkeyAndCarrot.png Δ ... 336,099 bytes ... January 03, 2025, at 08:44 PM
- Double-six-dice.jpg Δ ... 53,033 bytes ... November 25, 2024, at 10:37 AM
- DrJekyllMrHyde.jpg Δ ... 45,740 bytes ... October 28, 2024, at 10:21 PM
- DunkleosteusSannoble.jpg Δ ... 408,077 bytes ... November 21, 2024, at 09:31 PM
- edit-16.png Δ ... 282 bytes ... September 28, 2024, at 12:47 PM
- EdwardDeBonoParallelThinking.png Δ ... 320,218 bytes ... December 27, 2024, at 10:08 PM
- EdwardDeBonoUseOfLateralThinking.jpg Δ ... 64,866 bytes ... October 22, 2024, at 08:50 PM
- ElliotMurphy-ROSE.png Δ ... 60,601 bytes ... December 11, 2024, at 09:27 PM
- EmotionTheory-Routledge.jpg Δ ... 117,466 bytes ... March 09, 2025, at 09:16 PM
- Engestrom-structure-of-human-activity.png Δ ... 75,740 bytes ... October 12, 2024, at 11:00 PM
- Es515_semiotic_square.jpg Δ ... 40,241 bytes ... August 24, 2024, at 12:02 AM
- EugenBleuler.jpg Δ ... 81,112 bytes ... December 11, 2024, at 08:50 PM
- Evans1989.png Δ ... 32,284 bytes ... July 29, 2024, at 11:17 AM
- Evans2006.png Δ ... 54,052 bytes ... July 29, 2024, at 11:14 AM
- F-adjunction-G.png Δ ... 5,565 bytes ... October 15, 2024, at 09:12 PM
- FiberBundles.png Δ ... 413,446 bytes ... January 26, 2025, at 11:53 PM
- FightOrFlight.png Δ ... 31,068 bytes ... December 09, 2024, at 03:51 PM
- FirstnessSecondnessThirdness.png Δ ... 13,936 bytes ... July 29, 2024, at 02:28 PM
- FiveRelationships.png Δ ... 1,597,576 bytes ... November 22, 2024, at 03:08 PM
- FoxHedgehog.jpg Δ ... 262,383 bytes ... October 15, 2024, at 03:40 PM
- FrankensteinAgathaFelixOldMan.png Δ ... 150,844 bytes ... November 22, 2024, at 05:36 PM
- FreeVarieties.png Δ ... 4,676 bytes ... November 24, 2024, at 05:05 PM
- FullerSixVectors.png Δ ... 5,348 bytes ... January 28, 2025, at 04:48 PM
- G2-Diagram.png Δ ... 144,709 bytes ... February 25, 2025, at 11:34 AM
- GabrieleAlekse-WaterAndStone.jpg Δ ... 34,310 bytes ... October 01, 2024, at 09:05 PM
- Gaia.jpg Δ ... 718,990 bytes ... August 21, 2024, at 08:00 PM
- GamesPeoplePlayFigure2.png Δ ... 155,820 bytes ... September 03, 2024, at 11:58 AM
- GilbertRyleTheConceptOfMind.png Δ ... 312,996 bytes ... October 07, 2024, at 04:36 PM
- GordonPask-Agreement.png Δ ... 204,558 bytes ... December 07, 2024, at 07:40 PM
- GordonPask-Analogy.png Δ ... 327,786 bytes ... December 07, 2024, at 06:21 PM
- GreekTragedy.jpg Δ ... 63,659 bytes ... October 12, 2024, at 07:50 PM
- GreekVaseWarriorIdealSmall..jpg Δ ... 14,383 bytes ... July 27, 2024, at 11:58 PM
- GreyFoxTracks.png Δ ... 95,903 bytes ... October 02, 2024, at 07:20 PM
- HaidtSocialIntuitionism.jpg Δ ... 156,976 bytes ... October 14, 2024, at 12:47 AM
- Haikouichthys.png Δ ... 45,901 bytes ... November 22, 2024, at 12:06 PM
- HolbeinErasmusFollyMarginalia.jpg Δ ... 119,953 bytes ... October 31, 2024, at 06:06 PM
- Hollis-SocialScience.png Δ ... 315,612 bytes ... November 10, 2024, at 09:19 AM
- HopfFibration-NilesJohnson.png Δ ... 104,158 bytes ... January 23, 2025, at 01:45 PM
- Horn-VisualLanguage.pdf Δ ... 20,511,540 bytes ... August 27, 2024, at 07:40 PM
- Horn-WhatIsVisualLanguage.png Δ ... 1,436,818 bytes ... August 27, 2024, at 07:41 PM
- ImOkYoureOk.jpg Δ ... 40,912 bytes ... September 03, 2024, at 11:08 AM
- in.png Δ ... 1,016 bytes ... November 20, 2024, at 05:58 PM
- InductionSyllogism.png Δ ... 4,616 bytes ... November 24, 2024, at 03:00 PM
- InheritTheWind.jpg Δ ... 537,867 bytes ... December 06, 2024, at 10:41 PM
- InstructionsForTheCook.png Δ ... 71,497 bytes ... October 16, 2024, at 11:27 AM
- IrigarayMotherVirginProstitute.png Δ ... 546,622 bytes ... November 02, 2024, at 01:21 PM
- Issuu-CoachCompeteCelebrate.png Δ ... 190,636 bytes ... December 27, 2024, at 06:48 PM
- JacquesLacanBorromeanKnot.png Δ ... 470,511 bytes ... November 02, 2024, at 12:58 PM
- JaynesOriginOfConsciousness.jpg Δ ... 37,508 bytes ... October 02, 2024, at 05:45 PM
- JessicaLock-ThreeMinds.jpg Δ ... 45,012 bytes ... October 16, 2024, at 11:44 AM
- JewelSquidSmithsonian.png Δ ... 413,492 bytes ... November 21, 2024, at 11:24 PM
- John Coulthart-VictorFrankensteinWithMonster.jpg Δ ... 80,787 bytes ... November 27, 2024, at 09:10 PM
- John4-JonasKulikauskas.png Δ ... 840,338 bytes ... November 22, 2024, at 09:17 PM
- JohnKeats.jpg Δ ... 207,027 bytes ... November 25, 2024, at 09:46 AM
- JonasKulikauskasLamb.png Δ ... 1,464,947 bytes ... November 24, 2024, at 03:49 PM
- JonasKulikauskasStoning.png Δ ... 770,285 bytes ... November 22, 2024, at 09:21 PM
- JonasKulikauskasTheWorld.png Δ ... 642,915 bytes ... November 22, 2024, at 07:43 PM
- JulietBalcony.png Δ ... 1,076,183 bytes ... November 20, 2024, at 11:23 PM
- KabbalahSoul.png Δ ... 18,660 bytes ... November 24, 2024, at 02:17 PM
- KantThreeCritiques.png Δ ... 21,956 bytes ... July 29, 2024, at 10:55 AM
- ladew_topiary_maryland_original.webp Δ ... 88,852 bytes ... February 01, 2025, at 12:26 PM
- LadyWithTheLamp.jpg Δ ... 467,831 bytes ... October 28, 2024, at 11:48 PM
- LeonardoDaVinci-brain.png Δ ... 810,033 bytes ... January 21, 2025, at 10:44 PM
- Li.png Δ ... 42,177 bytes ... November 22, 2024, at 01:49 PM
- LogicalSquareKnownVsUnknown.png Δ ... 23,737 bytes ... October 07, 2024, at 03:09 PM
- LoisEisenman-UnderstandingIntuition.jpg Δ ... 47,479 bytes ... September 01, 2024, at 11:05 AM
- LuceIrigaraySpeculum.png Δ ... 218,158 bytes ... November 02, 2024, at 02:27 PM
- LucyWeir-SelfContextObserver.jpg Δ ... 40,429 bytes ... December 21, 2024, at 10:18 AM
- lumpers-and-splitters.png Δ ... 606,203 bytes ... December 06, 2024, at 06:52 PM
- Maat.jpg Δ ... 62,514 bytes ... December 03, 2024, at 03:47 PM
- MacLuhanRearviewMirror.png Δ ... 863,262 bytes ... December 05, 2024, at 10:49 AM
- making-wine-in-ancient-greece.jpg Δ ... 187,399 bytes ... December 06, 2024, at 12:17 PM
- MakingItExplicit.png Δ ... 506,348 bytes ... December 27, 2024, at 10:06 PM
- MalcolmGladwell-Blink.jpg Δ ... 23,951 bytes ... September 01, 2024, at 11:05 AM
- MaryWollstonecraft-WilliamBlake.jpg Δ ... 157,597 bytes ... October 22, 2024, at 01:26 PM
- MasculineFeminineScoreSheet.jpg Δ ... 95,277 bytes ... September 04, 2024, at 11:35 PM
- McGilchrist-The_master_and_his_emissary.jpg Δ ... 30,261 bytes ... September 28, 2024, at 10:09 AM
- McNeill-HandAndMind.png Δ ... 108,918 bytes ... September 28, 2024, at 11:20 AM
- medical-chart.jpg Δ ... 73,693 bytes ... December 26, 2024, at 12:55 PM
- Men-Mars-Women-Venus-Cover.jpg Δ ... 47,790 bytes ... October 06, 2024, at 11:31 PM
- Minotaur.png Δ ... 838,507 bytes ... December 07, 2024, at 10:10 PM
- MixingMessages.png Δ ... 368,778 bytes ... December 05, 2024, at 11:21 AM
- MountQingyuan.jpg Δ ... 164,777 bytes ... November 27, 2024, at 08:19 AM
- NagarjunaAryadeva.jpg Δ ... 295,308 bytes ... November 22, 2024, at 03:21 PM
- neidan.png Δ ... 48,099 bytes ... September 01, 2024, at 06:28 PM
- neurons.jpg Δ ... 257,648 bytes ... November 19, 2024, at 12:34 PM
- NishantChoksi-vibe.png Δ ... 1,093,335 bytes ... December 14, 2024, at 05:18 PM
- nLab-magnetic-monopole.png Δ ... 85,395 bytes ... January 27, 2025, at 12:04 AM
- ododu-jere-northrop.jpg Δ ... 9,716 bytes ... January 29, 2025, at 03:34 PM
- OmegaEqualsOne.png Δ ... 5,044 bytes ... September 24, 2024, at 11:58 AM
- ParableOfTheSower.jpg Δ ... 155,160 bytes ... August 13, 2024, at 12:51 PM
- ParthenonFrieze.jpg Δ ... 7,779 bytes ... November 22, 2024, at 01:38 PM
- PaulAthens.jpg Δ ... 33,513 bytes ... November 22, 2024, at 12:27 PM
- PaulPangaro-Pizza.png Δ ... 267,320 bytes ... December 07, 2024, at 07:08 PM
- PaulPangaro-Threesome.png Δ ... 262,522 bytes ... December 07, 2024, at 02:52 PM
- PenroseThreeWorlds.png Δ ... 126,846 bytes ... November 30, 2024, at 04:47 AM
- PericlesFuneralOration.png Δ ... 1,010,106 bytes ... November 22, 2024, at 12:59 PM
- PigeonBrain.jpg Δ ... 59,373 bytes ... November 22, 2024, at 12:08 PM
- PlanetEarth.jpg Δ ... 297,782 bytes ... November 25, 2024, at 10:21 AM
- PrideAndPrejudice-HughThompson.jpg Δ ... 443,299 bytes ... December 15, 2024, at 01:23 PM
- prove-rule.jpg Δ ... 211,595 bytes ... October 10, 2024, at 11:07 PM
- QuidJus.jpg Δ ... 54,953 bytes ... November 25, 2024, at 12:10 PM
- RandomReason.png Δ ... 84,967 bytes ... November 24, 2024, at 03:08 PM
- RaphaelAgonyInTheGarden.jpg Δ ... 355,617 bytes ... August 13, 2024, at 10:07 AM
- Regular-icosahedron.stl Δ ... 1,084 bytes ... January 28, 2025, at 10:09 PM
- RelationalSymmetryParadigm.png Δ ... 6,353 bytes ... November 07, 2024, at 05:28 PM
- RembrandtReturnOfTheProdigalSun.jpg Δ ... 261,390 bytes ... October 30, 2024, at 07:00 PM
- RichardFlyer-SymbioticAge.jpg Δ ... 119,125 bytes ... March 09, 2025, at 09:11 PM
- RightsOfWoman.jpg Δ ... 164,119 bytes ... October 22, 2024, at 01:13 PM
- Roma_jakobson_theory.png Δ ... 15,015 bytes ... September 22, 2024, at 07:39 PM
- RudolfSteiner-Triangles.png Δ ... 34,251 bytes ... January 25, 2025, at 09:07 PM
- SailorStorm.png Δ ... 349,583 bytes ... November 24, 2024, at 02:41 PM
- SakyaPandita-see-talk.png Δ ... 18,107 bytes ... September 27, 2024, at 09:49 PM
- SanBao.png Δ ... 3,021 bytes ... October 07, 2024, at 12:12 AM
- Sandra-Lansue-VictimWorkerWinner.jpg Δ ... 138,014 bytes ... December 21, 2024, at 10:15 AM
- Schizophrenia.png Δ ... 48,676 bytes ... December 11, 2024, at 08:15 PM
- SchizophreniaSymptoms.jpg Δ ... 212,152 bytes ... December 11, 2024, at 08:32 PM
- SenseAndSensibility.jpg Δ ... 18,189 bytes ... July 28, 2024, at 10:42 PM
- SerenityPrayerMedallion.jpg Δ ... 150,489 bytes ... December 09, 2024, at 02:13 PM
- ShortExactSequencd.png Δ ... 7,381 bytes ... September 30, 2024, at 09:56 AM
- ShortExactSequence.png Δ ... 7,368 bytes ... September 30, 2024, at 09:56 AM
- sign-language-chimps.jpg Δ ... 17,817 bytes ... November 22, 2024, at 12:11 PM
- SongsOfInnocenceAndExperience.jpg Δ ... 367,689 bytes ... October 10, 2024, at 12:29 AM
- SorrowOfYoungWerther.jpg Δ ... 243,870 bytes ... October 15, 2024, at 10:56 PM
- SorrowsOfYoungWerther.jpg Δ ... 243,870 bytes ... October 15, 2024, at 10:57 PM
- SoundForms.png Δ ... 419,571 bytes ... September 25, 2024, at 11:01 PM
- SowerbyElephantWithRider.jpg Δ ... 53,309 bytes ... October 14, 2024, at 12:34 AM
- SpivakScientificMethod.png Δ ... 80,232 bytes ... November 30, 2024, at 04:48 AM
- StarTrekThreeMinds.png Δ ... 54,088 bytes ... July 28, 2024, at 10:13 PM
- StevenLesk-Schizophrenia.png Δ ... 51,489 bytes ... March 09, 2025, at 02:43 PM
- StitchFix-Lump-Or-Split.png Δ ... 105,523 bytes ... December 06, 2024, at 11:06 PM
- StopThinkObservePlan-SquamishSearchAndRescueTeam.png Δ ... 584,848 bytes ... December 23, 2024, at 04:20 PM
- Stradano_Inferno_Canto_08.jpg Δ ... 302,274 bytes ... January 13, 2025, at 11:36 AM
- Structural-Iceberg.png Δ ... 45,459 bytes ... July 27, 2024, at 03:32 PM
- SturmUndDrang.png Δ ... 859,734 bytes ... October 15, 2024, at 09:54 PM
- SylviaDuckworth-Modes-of-Thinking-.jpg Δ ... 47,419 bytes ... December 21, 2024, at 10:03 AM
- SylviaDuckworth-Modes-of-Thinking.jpg Δ ... 47,419 bytes ... December 21, 2024, at 10:03 AM
- TabletEucharidesEtruria480BCE.jpg Δ ... 64,737 bytes ... November 22, 2024, at 01:45 PM
- Temptations_of_Christ_San_Marco.jpg Δ ... 883,414 bytes ... August 13, 2024, at 11:14 AM
- TheAnimalAndTheMachine.png Δ ... 740,896 bytes ... October 25, 2024, at 12:18 PM
- TheLeftHandOfDarkness1stEd.jpg Δ ... 56,410 bytes ... December 30, 2024, at 12:58 PM
- TheoryTranslatorColoredLogo.png Δ ... 15,849 bytes ... July 17, 2024, at 04:53 PM
- TheoryTranslatorLogo.png Δ ... 22,439 bytes ... July 17, 2024, at 02:07 PM
- ThePowerOfNow.jpg Δ ... 42,236 bytes ... October 09, 2024, at 09:23 PM
- TheThreeFacesOfEve.png Δ ... 155,302 bytes ... December 11, 2024, at 10:58 PM
- TheWonderfulWizardOfOz.png Δ ... 949,096 bytes ... December 11, 2024, at 05:08 PM
- ThinkingFastAndSlow.jpg Δ ... 7,941 bytes ... July 29, 2024, at 08:38 AM
- ThoughtForm-IntentionToKnow.png Δ ... 528,388 bytes ... September 25, 2024, at 10:15 AM
- ThreePoisons.jpg Δ ... 233,816 bytes ... October 19, 2024, at 09:44 PM
- ThreeRidiculousWishes.png Δ ... 495,081 bytes ... November 01, 2024, at 05:27 PM
- TiantaiThreefoldTruth.png Δ ... 8,211 bytes ... October 16, 2024, at 01:17 PM
- Tommy_film_poster.jpg Δ ... 56,311 bytes ... September 28, 2024, at 12:43 AM
- ToshoguHearSpeakSee.jpg Δ ... 113,294 bytes ... August 31, 2024, at 11:02 AM
- TraceIntoStepOver.jpg Δ ... 64,938 bytes ... November 19, 2024, at 09:46 PM
- Traffic.png Δ ... 491,532 bytes ... December 09, 2024, at 10:56 AM
- TripleBraidMind.jpg Δ ... 42,747 bytes ... October 30, 2024, at 08:36 PM
- TripleBraidRope.jpg Δ ... 42,747 bytes ... October 30, 2024, at 08:35 PM
- types-of-roses.png Δ ... 415,518 bytes ... December 06, 2024, at 10:24 PM
- UrsualKLeGuin-TheLeftHandOfDarkness.png Δ ... 217,111 bytes ... December 30, 2024, at 12:59 PM
- UrsulaKLeGuin-LeftHandOfDarkness-Glacier.png Δ ... 572,560 bytes ... December 30, 2024, at 12:56 PM
- USSeparationOfPowers.jpg Δ ... 185,537 bytes ... November 24, 2024, at 12:51 PM
- ValentinianGnostics.png Δ ... 500,171 bytes ... November 24, 2024, at 02:07 PM
- VanityFair-February1920.png Δ ... 382,069 bytes ... October 04, 2024, at 11:47 AM
- VictorFrankenstein.png Δ ... 175,460 bytes ... November 27, 2024, at 08:27 PM
- Vygotsky-ZoneOfProximalDevelopment.png Δ ... 88,904 bytes ... January 29, 2025, at 10:43 AM
- w.png Δ ... 456 bytes ... August 24, 2024, at 03:27 PM
- WilliamBlake-The_Tyger_1794.jpg Δ ... 158,091 bytes ... September 04, 2024, at 10:28 PM
- WiseMind.png Δ ... 23,218 bytes ... October 16, 2024, at 01:26 PM
- WittgensteinGeneralFormTruthFunction.png Δ ... 12,013 bytes ... November 27, 2024, at 09:08 AM
- WordsworthLyricalBallads.jpg Δ ... 106,943 bytes ... November 27, 2024, at 10:18 AM
- y.png Δ ... 306 bytes ... August 24, 2024, at 03:28 PM
- Yin_and_Yang_symbol.png Δ ... 17,006 bytes ... July 28, 2024, at 12:01 AM
- ZhiBuZhi.png Δ ... 22,157 bytes ... November 22, 2024, at 01:58 PM
Downloading binary files such as pictures or ZIP archives with
sometimes results in corrupted files, why?$EnableDirectDownload
=0;
Some recipe or local configuration may output something before the file. This may happen if you have PHP files with a closing "?>" marker at the end, and some text or white space after it. It is recommended to remove these closing markers from your local and cookbook files.
Alternatively, there may be some PHP warning or message before the file data. On Unix-like systems you can peek into the file with the command less -f -L file.ext
and see the first few characters or lines. See Troubleshooting on how to track the source for the errors/warnings.
This page may have a more recent version on pmwiki.org: PmWiki:UploadsAdmin, and a talk page: PmWiki:UploadsAdmin-Talk.