hi , ive downloaded the TSEP.0942 so as to add search functionality to my site. Im just trying to set it up and all is right except it will not get past database setup as it keeps saying
"The absolute path to the TSEP temp-directory does not exist (i.e mkdir() was not possible) " ????
a few steps ealrier in the process they tell you :
"you should have / create a directory for temporary files which needs to be writeable for PHP as well. (Can be anywhere on the server) "
I have created a directory called /temp under the root http://www.frodop.com . When i put this path in it keeps saying the above error what am i doing wrong?
If so
try chown apache <dir> as root
OR even
chmod 0777 <dir> as root (i prefer the first, but beware you wont be able to access it at all unless your root).
Basically when your writing to a file on your site you are user (web service). When your writing to this dir the server see's your user (web service) and that your trying to access a dir that belongs to (user A). This it will not allow you to do.