Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
316 views
in Q2A Core by
closed by

I'm moving images stored in database to a directory. I created a folder named "blob" inside of my installation folder and change its permissions to 777.

However, I got the error message

The directory /blob/ defined as QA_BLOBS_DIRECTORY is not writable by the web server.

Here's what in the configure file

define('QA_BLOBS_DIRECTORY', '/blob/');

How do I set up in a correct way?

Q2A version: 1.8.5
closed with the note: fazleysabbir is right
by
+1
How about this?
define('QA_BLOBS_DIRECTORY', '/my-installation-folder/blob/');
by
+2
You have to give the full path of your installation.Like: /home/yoursite/public_html/installation-folder(if exists)/blobs/
...