Hi!
If I work on my localhost server, upload files works ok, but if I upload my project to “real” server and I want upload some files, I get an error: “No temporary folder is available for upload in the server.”
In file ‘ckfinder/config.php’ I changed authentication function (for test) and base url:
In my php file I have just added path to js and:
I hope somebody helps me and give me some ideas, how can I get of rid that error.
If I work on my localhost server, upload files works ok, but if I upload my project to “real” server and I want upload some files, I get an error: “No temporary folder is available for upload in the server.”
In file ‘ckfinder/config.php’ I changed authentication function (for test) and base url:
function CheckAuthentication() { return true; } ... $baseUrl = '/addons/media/';
In my php file I have just added path to js and:
<script type="text/javascript"> var finder = new CKFinder(); finder.basePath = '/ckfinder/'; finder.create(); </script>
I hope somebody helps me and give me some ideas, how can I get of rid that error.
Re: No temporary folder is available for upload in the serve
php_value upload_tmp_dir /location/of/your/temp/directory/
------------------------------------------------------------
Apache method
php_admin_value upload_tmp_dir /location/of/your/temp/directory/