Recently upgraded to 2.8 and am now unable to use uploader to add images to posts. Getting error "missing a temporary folder" after upload. Worked fine till I upgraded, need a fix asap since I photoblog and this pretty much kills it. Thank you in advance for any help you may be able to give.
And now, all the sudden my ability to display links are gone. Wow 2.8 was not ready for prime time at all was it?
Did you resolve this issue? If so, how did you fix it?
I just installed 2.8 and also have an issue with images
if I upload an image it is placed in the folder :
/wordpress/wp-content (checked with ftp)
The image Url according to WP is :
http://www.MyWebSite.be/wordpress/wp-content/uploads/image1.jpg
If I open the url in Firefox it does not work
But if I remove /uploads it works fine.
The uploads folder does not exist and is not created by WP during upload.
I created a uploads folder manually to be sure, but no difference.
Seems to be a bug in the upload function (misplaced files).
Where do you change this ? functions.php ?
FYI
I installed theme :
http://wordpress.org/extend/themes/autofocus
No other plugins
Forgot to mention : I don't see an error message
rahulkhadaliya
Member
Posted 2 years ago #
I am facing the same problem with 2.7.1 which i just installed removing 2.8 .. no answers to this error...
Hopeless wordpress...
redbeard9
Member
Posted 2 years ago #
Same problem here. Where is the fix for this?
rkochanowski
Member
Posted 2 years ago #
Version 2.8.2
Same thing. "Missing a temporary folder." error on every attempt to upload.
Is there a fix to this?
akanichiyoubi
Member
Posted 2 years ago #
Did anyone get a fix to this? Come ON. I can't put an image in my posts. It does ABSOLUTELY NOTHING when I click add an image. Just sits there. Does anyone have a solution for 2.8+?
rahulkhadaliya
Member
Posted 2 years ago #
I installed the latest version of WP but still the same problem ...
Did anyone has the solution for this... nothing seems to be working for me ..
Raahul
I have same problem with WP 2.8.4. Know anybody solution?
cnngraphics
Member
Posted 2 years ago #
Same problem here. There is a solution found on http://www.dwightjack.com/diary/2009/01/04/fixing-missing-a-temporary-folder-error-on-wordpress-27-uploader/
I don't understand a clue from it... Could someone translate that solution into human language for me?
merlin981
Member
Posted 2 years ago #
I have the same problem, just upgraded (this morning) to 3.9.1 on Windows Server 2003. The "wp-content/uploads/2010/01" folder does exist, but it is empty.
Make sure there is a tmp folder in your blog's root, if not create one. Maybe this will help
abdhiraj
Member
Posted 2 years ago #
I added the first few lines to my .htaccess, so this is what I ended up with. And it works great
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress