I'm almost done fixing my Django portfolio when I bumped into a problem when choosing a photo for one of the pages of my site
The problem here i...
For further actions, you may consider blocking this person and/or reporting abuse
I am not in front of a computer but I would start with docs.djangoproject.com/en/2.2/ref/...
What I'm trying to do is I'm trying to upload images from the admin and access it thru this dropdown(seen on the video/photo) but when I click it, it does not show anything.
What do the logs say? I am afraid I cannot help with guessing. :)
When I use this
it returns a on the admin.When I use
image = models.FileField("/img")It return a on the site.When I use it returns a on the admin.
Im confused. I just want to upload images from the admin to the portfolio page of my site.
As explained a couple of times above, those are generic errors and without more specific info or code I am afraid I cannot be of much help, if my only weapon is guessing.
There are various tutorials online. Please have a look and if you have any specific questions please ask again.
A great tutorial that will help: wsvincent.com/django-image-uploads/
Great! I've been wondering what I was missing on my code to upload files from the admin. Will check this the first thing tomorrow. Cheers!
Hey Rhett,
Thank you for this. I'm doing a tutorial now and the guy used ImageField which made sense in what I was trying to achieve.
The debug on my project is set to False and the ALLOWED_HOST is set to my localhost. I think the error might be inside the FilePathField line of code. When I use
it returns the 500 error on the project page, but when I use it runs as smooth as silk.The MEDIA_ROOT & MEDIA_URL would be set now thanks to you.
Cheers!
Hi! I am currently working on this same project and I have the same issue. I've searched the internet (how I found this post) but couldn't get a clear solution. How did you resolve it? Thanks.
Could you post your code?
I have the same problem if you figured out how to solve that, please write to me.
Hi, can you post your code?