When uploading a file to Google Cloud Storage (through my application running on the application engine) I get the following warning from PHP
Warning: strpos(): Empty needle in /base/data/home/runtimes/php/sdk/google/appengine/ext/cloud_storage_streams/CloudStorageStreamWrapper.php on line 168
I used <form action="<?php echo $upload_url?>according to the official manual, and then made the main move
$gs_name = $_FILES["uploaded_files"]['tmp_name'];
move_uploaded_file($gs_name, "gs://my_bucket/new_file.ext");
Does anyone know why this is so and can someone help in resolving this issue?
source
share