Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Wordpress install - upload failing
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- Wordpress install - upload failing
Wordpress install - upload failing
09-09-2011 10:22 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I've got a Worpress 3.1.2 installation that was working without any issues until recently.
Today I've been getting an error when trying to upload images "Missing a temporary folder."
I did some searching and found this post that I thought may be related as some of the Wordpress sites indicate an issue with the tmp folders : http://community.plus.net/forum/index.php/topic,98272.msg831330.html
I followed Gabe's advice and got myself a php.ini file and a tmp folder in my root, but nothing.
Anyone any ideas?
Today I've been getting an error when trying to upload images "Missing a temporary folder."
I did some searching and found this post that I thought may be related as some of the Wordpress sites indicate an issue with the tmp folders : http://community.plus.net/forum/index.php/topic,98272.msg831330.html
I followed Gabe's advice and got myself a php.ini file and a tmp folder in my root, but nothing.
Anyone any ideas?
Message 1 of 4
(973 Views)
3 REPLIES 3
Re: Wordpress install - upload failing
10-09-2011 12:26 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Just tried an image upload using WordPress 3.1.4 and it worked for me, but I'm on the F9 server.
Did you mean this post for /tmp space problems? Did you run that cgi file to create your /tmp directory and php.ini with links in folders containing PHP files?
Does "nothing" mean doing this made no difference to the occurrence of the error?
If you upload the following file as php_ini.php, set its permissions to 0700 and browse to it …
… does your php.ini show as the loaded configuration file?
Quote from: planty I followed Gabe's advice and got myself a php.ini file and a tmp folder in my root, but nothing.
Did you mean this post for /tmp space problems? Did you run that cgi file to create your /tmp directory and php.ini with links in folders containing PHP files?
Does "nothing" mean doing this made no difference to the occurrence of the error?
If you upload the following file as php_ini.php, set its permissions to 0700 and browse to it …
<?php
phpinfo();
?>
… does your php.ini show as the loaded configuration file?
David
Message 2 of 4
(289 Views)
Re: Wordpress install - upload failing
10-09-2011 7:23 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Quote from: spraxyt
Did you mean this post for /tmp space problems? Did you run that cgi file to create your /tmp directory and php.ini with links in folders containing PHP files?
Yes
Quote from: spraxyt Does "nothing" mean doing this made no difference to the occurrence of the error?
Yes again
Quote from: spraxyt If you upload the following file as php_ini.php, set its permissions to 0700 and browse to it …
<?php
phpinfo();
?>
… does your php.ini show as the loaded configuration file?
So tried the above and got the following:
Loaded Configuration File /share/storage/01/cl/clarkehall/php.ini
So I'm guessing this is the correct php.ini that was created in the root of my wordpress area.
Anyway, strangely it's now working?? For future reference how does php.ini get picked up? After I'd created a new one what should I have done to ensure the install picked up the new one?
Message 3 of 4
(289 Views)
Re: Wordpress install - upload failing
10-09-2011 11:11 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Quote from: planty So tried the above and got the following:
Loaded Configuration File /share/storage/01/cl/clarkehall/php.ini
So I'm guessing this is the correct php.ini that was created in the root of my wordpress area.
Yes, that is the absolute file path to your personal php.ini file on the server.
Quote from: planty Anyway, strangely it's now working?
Glad to hear that.

Quote from: planty For future reference how does php.ini get picked up? After I'd created a new one what should I have done to ensure the install picked up the new one?
PHP scripts first look for a php.ini file in the same directory as the script, and if found use that. If not found the system default one is used. This is standard behaviour no need for user action to cause this.
Running that php.ini creation script copies the system default file to your root directory and appends additional lines to it to override earlier settings. It then creates symlinks to that php.ini in each subdirectory containing PHP files, effectively making it appear that the file is in each subdirectory. So a PHP script run after that initialises using your version of the file.
David
Message 4 of 4
(289 Views)
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- Wordpress install - upload failing