Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
262 views
in Q2A Core by
Where are the userprofile pictures stored in Question2Answer?
Q2A version: 1.8.6

1 Answer

+2 votes
by

Default is to store BLOBs (including user avatars) in the database. You can configure Q2A to store BLOBs in the filesystem instead by defining a constant QA_BLOBS_DIRECTORY in your qa-config.php:

define('QA_BLOBS_DIRECTORY', '/path/to/writable_blobs_directory/');

That directory should be outside your Q2A application directory.

The Administration center does not have a setting for configuring this. You must change it directly in the config file.

...