Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
530 views
in Q2A Core by
i read like all the file store at q2a if like that im ok , i will upgrade to cloud server with few storage ;D
Q2A version: new

2 Answers

0 votes
by
It's a bit difficult to understand your question but I guess you are asking where the images are stored?

They are not stored on the filesystem, they are actually stored in the database itself, in the qa_blobs table. Idon't know if it's possible to change that with a plugin, to make it store images in the filesystem. it would be a lot of work.
0 votes
by

Uploaded images can be viewed in a browser as:

yourdomain.com/?qa=blob&qa_blobid=blobid

PHP example:

 

$image = new GetImage;
$image->source = 'yourdomain.com/?qa=blob&qa_blobid=blobid';
$image->save_to = 'path_to_store_image_file';
echo $image->download('curl'); 
 
 
...