Can’t upload images in WordPress suddenly
Can’t upload images in WordPress suddenly

We’re using WP Media Folder. Suddenly we were seeing this message: But the images were small in both size and dimensions. It wasn’t that. When we checked the Chrome dev tools console we saw this message: Which started a minor scrabble to review our CORS settings on the bucket but then I had another thought:... » read more

How to use Chilkat S3_DownloadBytes and S3_UploadBytes to copy images in Classic ASP

Copy images between Amazon s3 buckets in memory only using Chilkat’s S3_DownloadBytes and S3_UploadBytes. Example classic ASP code.  Function http_copy_bytes(contentType,bucketSourceName,bucketDestName,objectName,justFileName)     Dim success, binaryImage      ‘ Set up chilkat http     Dim http : Set http = Server.CreateObject(“Chilkat.Http”)     http_unlock(http)     http.AwsAccessKey = AwsAccessKey ‘ your key     http.AwsSecretKey = AwsSecretKey ‘ your key ... » read more