how can i get some image link from google app engine? - image

i'm soooo newbie for Google app engine.
i just want to put some testimage.jpg file to my GAE server and want to get some image link
like "http://team-abc.appspot.com/testimage.jpg"
i tried to put my images in folder, and by dev_appserver.py myapp, upload these images with
app.yaml(
url: /images/(.*)
static_files: static/images/\1
upload: static/images/(.*)
)
but doens't work. :(
help me.
how can i do that?

if your image is in the folderstructure static/images/testimage.jpg and you define the url for this static image to be
-url: /images/(.*)
then you should be able to get this image at the url
http://team-abc.appspot.com/images/testimage.jpg

If you are newbie may be you can try this app engine boilerplate where one of its features is get image's links.
Good luck

Related

cloudinary images works well with img tag in laravel 8 locally but not on heroku/production -- img displays blank on heroku

I tried displaying uploaded images from cloudinary but it wasn't showing using the below
<img style="width:auto" src="https://res.cloudinary.com/hrwev09ub/image/upload/v1637132013/dnpic_1637127942.png">
before now i tried the img tag above actually worked locally but not through heroku, because on heroku what i could see on checking the code source is the below
<img style="width:auto" src="dnpic_1637127942.png">
i am using Laravel 8 with cloudinary on heroku host -- can someone assist me with way out or refer me to a solution tips please.
I'm Danny and I work on Cloudinary's Developer Support team.
I've not had a lot of experience with deploying to Heroku, so I'm unable to speak on why the src is stripping out the https://res.cloudinary.com/hrwev09ub/image/upload/v1637132013 part, however I do notice that the full image path results in a 404.
Could you please let me know what happens when you try to reference the sample image (https://res.cloudinary.com/hrwev09ub/image/upload/sample.jpg) without specifying style=width:auto?
It may also help to confirm you've followed all the steps on Heroku's documentation about using Cloudinary, available here: https://devcenter.heroku.com/articles/cloudinary
Thanks,
-Danny

How to insert image into strapi article?

I'm beginner of strapi, nodejs headless cms framework.
I've followed quick start guide of official document. I've created gatsby-blog and it works.
After setup, I've created new article with uploaded image, in the middle of article. (Not the image field in the Slug section) In the strapi admin page, I can find my new image in the media library list.
But when I open my strapi client in browser, the image is not shown. The source of image seems to the file path of backend server. I can find the image file on the backend/public/uploads folder. But it returns 404 error.
So, What am I missing of strapi setting? I've searched a lot but I can't find similar issue.
Make sure that the field is public in your Strapi admin dashboard.
Beyond that, it seems like the src tag in your screenshot has a relative url - if you are not hosting the backend on the same path as the frontend, I would suspect you have to prepend the backend base path :-)

image not displaying when hosted on a sever

guys am in need of serious help,I have successfully deployed laravel application on a live server. Everything looks great except the fact that I am unable to display the images that are being uploaded to the /public/img folder.
Try One of Them
{{url::to('/') }}/images/logo.png
{{url('/images/logo.type')}}
{{url('/images/myimage.jpg')}}
And Must be checked you image folder have access to get images
Try with using asset like this:
<img src="{{asset('ur_image_link_in_public_dir')}}" alt="ur_title">
For example:
<img src="{{asset('img/logo.png')}}" alt="logo">
The above example will display logo.png from your_domain.com/img/logo.png
Don't use public in ur link, just remove it from ur URL, then it will work finely.

CKFinder Not Actually Uploading Images

I am using CKEditor + CKFinder to create a blog post with images in a custom CMS. The issue is that CKFinder isn't actually uploading the images to the directory I have stated in my config file. The path is correct but the uploading doesn't actually take place.
Anyone have experience with this?
Did you follow this guide? You have to set the $baseUrl and $baseDir, and set CheckAuthentication.
Its seems your having difficulty trying to install/config some of the file managers you mention in this post and others.
Might I suggest a really easy file manager to install:
an-open-file-manager-for-ckeditor-3-0
It even lets you take care of your own security/authentication
Initializing is as easy as:
CKEDITOR.replace('wysiwyg', {
filebrowserBrowseUrl: 'ckeditor/Filemanager/index.html'
});

I can't see the custom thumbnail image in Wordpress 3.3.1

I have a problem with wordpress thumb. I installed the last wordpress in localhost and I tried to create a new post with a thumb but when I save it, in the home doesn't appear this thumb.
See the following images:
http://i41.tinypic.com/ffalvk.jpg
http://i42.tinypic.com/6pn3g9.png
This is the image url:
http://localhost/wordpress/wp-content/themes/object/thumb.php?src=wordpress/wp-content/uploads/2012/04/5767096.jpg&w=300&h=200&zc=1&q=100
¿What I'm doing wrong?
Thanks :)
Just trying here as I do not know what plugin is this. However, you can try changing the image URL to this:
http://localhost/wordpress/wp-content/themes/object/thumb.php?src=http://localhost/wordpress/wp-content/uploads/2012/04/5767096.jpg&w=300&h=200&zc=1&q=100
However, I would recommend you to use WordPress in-built Feature Image function to set the thumbnail instead. That is, of course, if your theme allows it.

Resources