Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

The upload/insert button doesn't upload. It allows me to go through the whole process by uploading the file and inserting it into the post, but it never appears in the post.

There's no noticable errors and no js errors.

Anyone have any ideas why?

Any help is appreciated!

Jason

share|improve this question
Open wp-config.php and add at the begining (right after <?php) following code ini_set('display_errors', 1); error_reporting(E_ALL). After that show us the error. Do not forget to delete these lines after debug. – Maxim Orlovsky Jun 20 '12 at 13:08
Usually it happens because you don't give permission to wp-upload folder (try 777) and all subfolders inside. But I'm guessing now. We need to see an error to post answer. – Maxim Orlovsky Jun 20 '12 at 13:12
1  
@MaximOrlovsky You either meant wp-content or uploads directory... right? ;) – its_me Jun 20 '12 at 13:19
@AahanKrish, thanks. Sure, the folder should be wp-content/uploads – Maxim Orlovsky Jun 20 '12 at 13:22
Since you've found the problem and it was in your code (which we don't have) I'm closing as too localized ... – EAMann Jun 20 '12 at 16:40

closed as too localized by EAMann Jun 20 '12 at 16:40

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Figured it out. Basically I disabled all scripts and plugins and kept enabling one at a time till I found the problem was in my code.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.