Newbie: Nothing is uploaded
-
My experience with WordPress is just a few days old. I set up a WordPress site in an Amazon EC2 instance running Ubuntu. It seems to be working. Next, I installed the WP Offload S3 Lite plugin to store media on S3.
I managed to install and activate the plugin. It created a bucket for me. So far, so good.
Problem: Nothing is uploaded to the bucket. The bucket contains a folder blog/wp-content/uploads, but it’s empty. Uploaded media remain in the local filesystem.
I activated debugging in WordPress. A debug.log file was created, but it only contains these messages:
PHP Notice: Undefined offset: 1 in /var/www/html/blog/wp-admin/includes/image.php
There is no log message regarding the plugin. There is also no error message in the browser. Yes, I did restart Apache.
It seems I need to add a crontab entry, which I did:
$ crontab -l */5 * * * * cd /var/www/html/blog; php -q wp-cron.php >/dev/null 2>&1
How can I troubleshoot this?
- The topic ‘Newbie: Nothing is uploaded’ is closed to new replies.