Serving static files with whitenoise

2024-05-13 Thread Richlue King
Hi, I'm trying to upload my project to render.com and I need to set up the static files with whitenoise. However, when I run collectstatic, I keep encountering this error: Post-processing 'assets\css\bootstrap.min.css' failed! raise ValueError( ValueError: The file 'assets/css

Re: can someone help me why my static files is not being rendered?

2023-06-17 Thread Mohammad Sadegh
> Yes send message to my account -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web

Re: can someone help me why my static files is not being rendered?

2023-06-16 Thread Aspersh Upadhyay
ure first. If every is in order, >>> confirm if whitenoise is installed, and been added to your MiddleWare. >>> >>> On Thu, Jun 15, 2023, 14:33 Aspersh Upadhyay >>> wrote: >>> >>>> my settings.py >>>> >>>>

Re: can someone help me why my static files is not being rendered?

2023-06-15 Thread Makan Dianka
installed, and been added to your MiddleWare. >> >> On Thu, Jun 15, 2023, 14:33 Aspersh Upadhyay < >> aspershupadhyay.deityr...@gmail.com> wrote: >> >>> my settings.py >>> >>> STATIC_URL = 'static/' >>> >>> STATICFILES_DIR = [

Re: can someone help me why my static files is not being rendered?

2023-06-15 Thread Ngaga Dancan
BASE_DIR / "static" >> ] >> >> Template where I am trying to load static files >> >> {% extends 'base.html' %} >> {% load static %} >> >> {% block title %} >> Issue With Django static files >> {%endblock title %} >> {% bloc

Re: can someone help me why my static files is not being rendered?

2023-06-15 Thread ALBERT ASHABA AHEEBWA
n added to your MiddleWare. > > On Thu, Jun 15, 2023, 14:33 Aspersh Upadhyay < > aspershupadhyay.deityr...@gmail.com> wrote: > >> my settings.py >> >> STATIC_URL = 'static/' >> >> STATICFILES_DIR = [ >> BASE_DIR / "static" >>

Re: can someone help me why my static files is not being rendered?

2023-06-15 Thread Prosper Lekia
yay < aspershupadhyay.deityr...@gmail.com> wrote: > my settings.py > > STATIC_URL = 'static/' > > STATICFILES_DIR = [ > BASE_DIR / "static" > ] > > Template where I am trying to load static files > > {% extends 'base.html' %} > {% load static %} &

can someone help me why my static files is not being rendered?

2023-06-15 Thread Aspersh Upadhyay
my settings.py STATIC_URL = 'static/' STATICFILES_DIR = [ BASE_DIR / "static" ] Template where I am trying to load static files {% extends 'base.html' %} {% load static %} {% block title %} Issue With Django static files {%endblock title %} {%

Re: UPLOAD STATIC FILES

2023-05-30 Thread Colin Ado
1. Create a folder called static, and inside the static folder create another folder 2. Go to settings.py AND add this: STATIC_URL = 'static/' STATICFILES_DIRS = [ BASE_DIR / 'static' ] 3. Go to your .html file and like the .css file using: On Mon, 29 May 2023 at 18:31, Obiorah Callistus

Re: UPLOAD STATIC FILES

2023-05-30 Thread DieHardMan 300
- how to import javascript in django tutorial --> https://docs.djangoproject.com/en/4.2/intro/tutorial06/ and documentation for this --> https://docs.djangoproject.com/en/4.2/how

Re: UPLOAD STATIC FILES

2023-05-30 Thread DieHardMan 300
- how to import javascript in django tutorial --> https://docs.djangoproject.com/en/4.2/intro/tutorial06/ and documentation for this --> https://docs.djangoproject.com/en/4.2/how

Re: UPLOAD STATIC FILES

2023-05-29 Thread Music Fm
Not necessary again On Tue, May 30, 2023, 5:05 AM SHUBHAM KUMAR wrote: > you should add STATIC_DIR =[ > > 'BASE'/ 'static' > > ] > to your project settings > > On Mon, 29 May, 2023, 9:21 pm Music Fm, wrote: > >> Load static >> >> Open a folder call it static then open another file within the

Re: UPLOAD STATIC FILES

2023-05-29 Thread sum abiut
in your setting make sure you have STATIC_URL = '/static/' then in your template you load static at the top of your htmi file like this. {% load static %} to load any static files like css. do something like this {% static './cssfile.css'%} Then run the command. python manage.py collectstatic

Re: UPLOAD STATIC FILES

2023-05-29 Thread SHUBHAM KUMAR
you should add STATIC_DIR =[ 'BASE'/ 'static' ] to your project settings On Mon, 29 May, 2023, 9:21 pm Music Fm, wrote: > Load static > > Open a folder call it static then open another file within the static > forder. > > Now type {load static/custom.css }on the html file it will see the

Re: UPLOAD STATIC FILES

2023-05-29 Thread 'Kasper Laudrup' via Django users
On 29/05/2023 04.24, Obiorah Callistus wrote: please how can i display .css and .js files in my template Have you considered reading the documentation? Kind regards, Kasper Laudrup -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: UPLOAD STATIC FILES

2023-05-29 Thread Music Fm
Load static Open a folder call it static then open another file within the static forder. Now type {load static/custom.css }on the html file it will see the static that has the css and javascript file On Mon, May 29, 2023, 4:31 PM Obiorah Callistus wrote: > please how can i display .css and

UPLOAD STATIC FILES

2023-05-29 Thread Obiorah Callistus
please how can i display .css and .js files in my template -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view

Re: How to show image(static) files.

2023-05-02 Thread Byansi Samuel
or_message': > error_message}) > On Tuesday, May 2, 2023 at 9:19:15 AM UTC-5 Edit Sensei wrote: > >> How to show image(static) files in django HTML >> Actually i was created scan QRcode . I want to show QRcode. If it code is >> true then next page.. >> Else code

Re: How to show image(static) files.

2023-05-02 Thread William Nash (Bill)
= 'Invalid QR code' return render(request, 'error.html', {'error_message': error_message}) On Tuesday, May 2, 2023 at 9:19:15 AM UTC-5 Edit Sensei wrote: > How to show image(static) files in django HTML > Actually i was created scan QRcode . I want to show QRcode. If it code is

How to show image(static) files.

2023-05-02 Thread Edit Sensei
How to show image(static) files in django HTML Actually i was created scan QRcode . I want to show QRcode. If it code is true then next page.. Else code false then error... -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubs

Re: Serving static files in production

2023-04-27 Thread David Nugent
t;> >>> Regards, >>> David >>> >>> On Thu, Apr 27, 2023 at 1:01 AM Brian Odhiambo < >>> brianodhiambo...@gmail.com> wrote: >>> >>>> Hello everyone, >>>> I am deploying a django project to a dedicated server. >>

Re: Serving static files in production

2023-04-26 Thread Brian Odhiambo
t; that further. >> >> Regards, >> David >> >> On Thu, Apr 27, 2023 at 1:01 AM Brian Odhiambo < >> brianodhiambo...@gmail.com> wrote: >> >>> Hello everyone, >>> I am deploying a django project to a dedicated server. >>>

Re: Serving static files in production

2023-04-26 Thread Brian Odhiambo
flexible >> besides. I would solve the above - which should work - before investigating >> that further. >> >> Regards, >> David >> >> On Thu, Apr 27, 2023 at 1:01 AM Brian Odhiambo < >> brianodhiambo...@gmail.com> wrote: >> >>>

Re: Serving static files in production

2023-04-26 Thread Prosper Lekia
n tbh, and very flexible > besides. I would solve the above - which should work - before investigating > that further. > > Regards, > David > > On Thu, Apr 27, 2023 at 1:01 AM Brian Odhiambo > wrote: > >> Hello everyone, >> I am deploying a django project

Re: Serving static files in production

2023-04-26 Thread David Nugent
, 2023 at 1:01 AM Brian Odhiambo wrote: > Hello everyone, > I am deploying a django project to a dedicated server. > I have set nginx to find static files in this file "staticfiles". > > This is the setting in settings.py file: > > STATIC_ROOT = BASE_DIR / 'stat

Serving static files in production

2023-04-26 Thread Brian Odhiambo
Hello everyone, I am deploying a django project to a dedicated server. I have set nginx to find static files in this file "staticfiles". This is the setting in settings.py file: STATIC_ROOT = BASE_DIR / 'staticfiles' STATIC_URL = 'static/' After running collectstatic command, my pro

Re: static files

2023-03-12 Thread Sandip Bhattacharya
Static files outside apps are not served by default. Have you added the main directory static directory to settings yet? https://docs.djangoproject.com/en/4.1/ref/settings/#std-setting-STATICFILES_DIRS Something like this is typically done in project settings: STATICFILES_DIRS = [BASE_DIR

Re: static files

2023-03-10 Thread André Hangalo
Show your settings file configuration! On Fri, 10/03/2023 at 22:14 Usra Saeed wrote: > Hi, I am uing django 3.2. My template and static folder are in the main > directory. But my static files are not loading. > I have one app. In this I have one template name "signin.htm

Re: Serving Media and Static files on Shared Hosting

2023-01-13 Thread Namanya Daniel
media >> files? Apparently nginx can't be used, i only have WhiteNoise which serves >> static files only. >> >> kindly share you've done it before.. thanks in advance >> >> -- >> You received this message because you are subscribed to the Google Groups &g

Re: Serving Media and Static files on Shared Hosting

2023-01-13 Thread Jeff Kingsley
Why On Fri, Jan 13, 2023 at 11:56 AM Namanya Daniel wrote: > Hello members, > > Has anyone ever used Namecheap shared hosting to serve static and media > files? Apparently nginx can't be used, i only have WhiteNoise which serves > static files only. > > kindly share

Serving Media and Static files on Shared Hosting

2023-01-13 Thread Namanya Daniel
Hello members, Has anyone ever used Namecheap shared hosting to serve static and media files? Apparently nginx can't be used, i only have WhiteNoise which serves static files only. kindly share you've done it before.. thanks in advance -- You received this message because you

Re: Static files is not loading while deploying the project to AWS ec2

2022-11-08 Thread Nishant Sagar
ic last year for fellow developers at work >> who were similarly confused. >> >> HTH! >> >> *Django - Statically Confusing* >> >> I started learning Django several years ago (and am still doing so >> today!), and for some time had a real sense o

Re: Static files is not loading while deploying the project to AWS ec2

2022-11-07 Thread James
It sounds like nginx doesn't know where your static files are being served from. If you don't want to bother with NGINX you can use Whitenoise. Django doesn't serve staticfiles in production; something that isn't overly apparent. You still need something like apache or nginx or whitenoise

Re: Static files is not loading while deploying the project to AWS ec2

2022-11-05 Thread Malcolm MacKinnon
m still doing so > today!), and for some time had a real sense of confusion as to how static > files worked. Sure, I learned the easy aspects of this pretty quickly, > that the collectstatic management command¹ would magically pull all of > the static files out of my project and dump

Re: Static files is not loading while deploying the project to AWS ec2

2022-11-05 Thread David Nugent
An article I wrote on this topic last year for fellow developers at work who were similarly confused. HTH! *Django - Statically Confusing* I started learning Django several years ago (and am still doing so today!), and for some time had a real sense of confusion as to how static files worked

Re: Static files is not loading while deploying the project to AWS ec2

2022-11-05 Thread led zee
As a recent Django new user I was having a lot of trouble with static files as well. Basically couldn't get Admin CSS to work. We are using whitenoise now. Apparently that is helping solve the problem. On Saturday, November 5, 2022 at 12:35:31 AM UTC-7 nishan...@gmail.com wrote: > Hi

Re: Static files is not loading while deploying the project to AWS ec2

2022-11-05 Thread Lakshyaraj Dash
You can use sebuckets to store your static files... On Sat, Nov 5, 2022, 13:04 Nishant Sagar wrote: > Hi all, > > I deployed the django project to AWS ec2 instance using nginx and gunicorn > but the static file is not loading at all. > > Can someone suggest where did I do wron

Re: Static files is not loading while deploying the project to AWS ec2

2022-11-05 Thread Ashutosh Mishra
I had faced same problem but collectstatic worked for me,, On Sat, 5 Nov, 2022, 1:15 pm Nishant Sagar, wrote: > Hi Ashutosh, > > Yeah I tried that as well, still not working. > > On Sat, 5 Nov 2022 at 1:10 PM, Ashutosh Mishra < > ashutoshmishra...@gmail.com> wrote: > >> Did you tried, python

Re: Static files is not loading while deploying the project to AWS ec2

2022-11-05 Thread Nishant Sagar
Hi Ashutosh, Yeah I tried that as well, still not working. On Sat, 5 Nov 2022 at 1:10 PM, Ashutosh Mishra wrote: > Did you tried, python manage.py collectstatic? > > On Sat, 5 Nov, 2022, 1:05 pm Nishant Sagar, > wrote: > >> Hi all, >> >> I deployed the django project to AWS ec2 instance using

Re: Static files is not loading while deploying the project to AWS ec2

2022-11-05 Thread Ashutosh Mishra
Did you tried, python manage.py collectstatic? On Sat, 5 Nov, 2022, 1:05 pm Nishant Sagar, wrote: > Hi all, > > I deployed the django project to AWS ec2 instance using nginx and gunicorn > but the static file is not loading at all. > > Can someone suggest where did I do wrong? > > Note - I've

Static files is not loading while deploying the project to AWS ec2

2022-11-05 Thread Nishant Sagar
Hi all, I deployed the django project to AWS ec2 instance using nginx and gunicorn but the static file is not loading at all. Can someone suggest where did I do wrong? Note - I've not created Profile before deploying Here is my settings.py file STATIC_URL = 'static/' STATIC_ROOT =

RE: Static files not found

2022-02-13 Thread Feroz Ahmed
@googlegroups.com Subject: Re: Static files not found U need to provide ur static Files dir Using os.path.join(BASR_DIR, "staticfiles") Also if u storing ur static file to cloud or any other host present ur STATICFILES_STORAGE="https://domain.com/location/folder; On Sun, Feb

Re: Static files not found

2022-02-13 Thread Dev femibadmus
U need to provide ur static Files dir Using os.path.join(BASR_DIR, "staticfiles") Also if u storing ur static file to cloud or any other host present ur STATICFILES_STORAGE="https://domain.com/location/folder; On Sun, Feb 13, 2022, 18:47 Serge Alard wrote: > To Ogunsanya O

Re: Static files not found

2022-02-13 Thread Serge Alard
To Ogunsanya Opeyemi : my Django app folder is bridge, thus it's OK To dashlaksh...@gmail.com : I tried but the static files are not found To mminu...@gmail.com : STATICFILES_DIRS = [BASE_DIR/""] is not necessary because it's given already in static_root. Thank you everybody b

Re: Static files not found

2022-02-03 Thread Muhammad Muhammad inuwa
At the bottom of your code, you need to include the STATICFILES_DIRS = [BASE_DIR/""]. This tells django where your static files are On Thu, Feb 3, 2022, 18:49 Opeyemi Ogunsanya wrote: > Move the static folder to the Django app folder > > On Thu, Feb 3, 2022, 6:01 PM

Re: Static files not found

2022-02-03 Thread Lakshyaraj Dash X-D 25
Ok! Actually I had not looked properly to your file. The line that I had given was already in STATIC_ROOT. If you have debug=False, then you can run something like this : python manage.py runserver --insecure It will serve your static files while the debug mode is set to false. On Thu, Feb 3

Re: Static files not found

2022-02-03 Thread Opeyemi Ogunsanya
Move the static folder to the Django app folder On Thu, Feb 3, 2022, 6:01 PM Serge Alard wrote: > Thank you for the suggestion but it does not work. > I add 2 things to make easier your helps : > >- the settings and wsgi files are in /www/Web_bridge/ Web_bridge/ > - t

Re: Static files not found

2022-02-03 Thread Serge Alard
Thank you for the suggestion but it does not work. I add 2 things to make easier your helps : - the settings and wsgi files are in /www/Web_bridge/ Web_bridge/ - the static files are in /www/Web_bridge/static/bridge/ Below an example of connexion.html that calls a static file : {% extends

Re: Static files not found

2022-02-03 Thread Lakshyaraj Dash X-D 25
Please add this line below static_url STATICFILES_DIRS = [ 'static' ] On Thu, Feb 3, 2022, 20:53 Serge Alard wrote: > Hello > > I developped a project in Django python that works fine. Thus, I deployed > my project. Everything works but the static files are not found by the > a

Static files not found

2022-02-03 Thread Serge Alard
Hello I developped a project in Django python that works fine. Thus, I deployed my project. Everything works but the static files are not found by the application. I give you below the settings and wsgi files. *WSGI* import os from django.core.wsgi import get_wsgi_application

Re: static files not getting served

2021-12-05 Thread Adriano Machado
de dez. de 2021 às 11:25, Rahul escreveu: > hey guys am using default database i.e. SQL Lite3 but when i deploy it on > heroku my static files are not getting served . Please suggest what should > i do?? > > should i use postgres ??? > > Please HELP > > -- > Y

Re: static files not getting served

2021-12-05 Thread Jet Ezra
To me, you are not going to serve static files but media files, am sure that the image linked above was as a result of uploading it somewhere, However much you try, heroku does not handle media files, when you upload your image, the next refresh of the running dyno will delete it from your file

Re: static files not getting served

2021-12-05 Thread Kasper Laudrup
On 05/12/2021 14.18, Rahul wrote: see brother i am not shouting at all . Writing in ALL CAPITAL LETTERS is considered shouting. Please refrain from doing that. I am also not your brother. Using language like that makes it hard to take you serious. i am using heroku for deployment and i

Re: static files not getting served

2021-12-05 Thread Lakshyaraj Dash X-D 25
Inside settings.py, Write these two lines of code and your static files will be served import os STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') On Sun, Dec 5, 2021, 18:49 Rahul wrote: > see brother i am not shouting at all . i am using heroku for deployment > and i didnt got a

Re: static files not getting served

2021-12-05 Thread Rahul
> hey guys am using default database i.e. SQL Lite3 but when i deploy it > > on heroku my static files are not getting served . Please suggest what > > should i do?? > > > > You should tell us some relevant details, e.g. how you are deploying > your project, any er

Re: static files not getting served

2021-12-04 Thread 'Mr. Aryan Sharma 4-Year B.Tech. Computer Science and Engineering' via Django users
At static files url at urls.py. And make a seperate directory for media root as well. Of your settings are correct project will get pushed . Then you ensure you have migrated from the console at heroku website On Sat, 4 Dec, 2021, 8:55 pm Rahul, wrote: > hey guys am using default datab

Re: static files not getting served

2021-12-04 Thread Kasper Laudrup
On 04/12/2021 10.52, Rahul wrote: hey guys  am using default database i.e. SQL Lite3 but when i deploy it on heroku my static files are not getting served . Please suggest what should i do?? You should tell us some relevant details, e.g. how you are deploying your project, any error

static files not getting served

2021-12-04 Thread Rahul
hey guys am using default database i.e. SQL Lite3 but when i deploy it on heroku my static files are not getting served . Please suggest what should i do?? should i use postgres ??? Please HELP -- You received this message because you are subscribed to the Google Groups "Django

Re: facing problems while deploying the project some error with static files

2021-10-27 Thread Kasper Laudrup
On 27/10/2021 20.38, 'Mr. Aryan Sharma 4-Year B.Tech. Computer Science and Engineering' via Django users wrote: I tried Whitenoise but it's still not working Try something else. I'm sure that will work for you. Kind regards, Kasper Laudrup -- You received this message because you are

Re: facing problems while deploying the project some error with static files

2021-10-27 Thread 'Mr. Aryan Sharma 4-Year B.Tech. Computer Science and Engineering' via Django users
I tried Whitenoise but it's still not working On Wed, 27 Oct, 2021, 11:36 pm Ennio Santos, wrote: > see this video and check if solve your problem. (i was facing problems > with static files when deploying using heroku. it is working fine for me > now). > > https://youtu.be/97U

Re: facing problems while deploying the project some error with static files

2021-10-27 Thread Ennio Santos
see this video and check if solve your problem. (i was facing problems with static files when deploying using heroku. it is working fine for me now). https://youtu.be/97UQM-Cfhxs Em quarta-feira, 27 de outubro de 2021 às 10:05:34 UTC-3, aryan.shar...@itbhu.ac.in escreveu: > i am using her

Re: facing problems while deploying the project some error with static files

2021-10-27 Thread Lakshyaraj Dash X-D 25
Just do one thing, write STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') in settings.py. Ok. This will definitely solve your problem. I've an experience of deploying my django projects. If any problems then message me at dashlakshyaraj2...@gmail.com. On Wed, Oct 27, 2021, 18:34 'Mr. Aryan

Re: facing problems while deploying the project some error with static files

2021-10-27 Thread Lakshyaraj Dash X-D 25
Just do one thing, write STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles'). Ok. This will definitely solve your problem. I've an experience of deploying my django projects. If any problems then message me at dashlakshyaraj2...@gmail.com. On Wed, Oct 27, 2021, 18:34 'Mr. Aryan Sharma 4-Year

Re: facing problems while deploying the project some error with static files

2021-10-27 Thread Kasper Laudrup
On 27/10/2021 12.51, 'Mr. Aryan Sharma 4-Year B.Tech. Computer Science and Engineering' via Django users wrote: i am using heroku You are probably doing something wrong. Try to do things correctly instead and see if that doesn't solve your problems. Kind regards, Kasper Laudrup -- You

Re: facing problems while deploying the project some error with static files

2021-10-27 Thread Aashish Kumar
Have you define the static root in settings.py file On Wed, 27 Oct 2021 at 6:35 PM, 'Mr. Aryan Sharma 4-Year B.Tech. Computer Science and Engineering' via Django users wrote: > i am using heroku > > -- > You received this message because you are subscribed to the Google Groups > "Django users"

facing problems while deploying the project some error with static files

2021-10-27 Thread 'Mr. Aryan Sharma 4-Year B.Tech. Computer Science and Engineering' via Django users
i am using heroku -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit

Re: Common problem finding static files. Help appreciated.

2021-08-18 Thread Scott Zimmerman
y problem finding static files is a concatenation mistake (caps > added)... > > "/home/www/wcsdg/main/STATIC/STATIC/main/styles.css" failed (2: No > such file or directory), > It should instead search for... > > "/home/www/wcsdg/main/static/main/styles.

Common problem finding static files. Help appreciated.

2021-08-18 Thread Scott Zimmerman
I deployed django + nginx + gunicorn, and DEBUG = True. Nginx/error.log shows that my problem finding static files is a concatenation mistake (caps added)... "/home/www/wcsdg/main/STATIC/STATIC/main/styles.css" failed (2: No such file or directory), It should inst

Re: how to manage static files after Debug = False

2021-04-18 Thread Kasper Laudrup
On 18/04/2021 15.12, Raj Kumar wrote: > I have problem after debug off, i am unable to handle static files > when i was doing debug off , i tried WhiteNoise but i can't able to > done this. if anyone have solution please help me > This looks pretty straightforward: https://devcente

how to manage static files after Debug = False

2021-04-18 Thread Raj Kumar
I have problem after debug off, i am unable to handle static files when i was doing debug off , i tried WhiteNoise but i can't able to done this. if anyone have solution please help me Thank you guys -- You received this message because you are subscribed to the Google Groups "Django

Re: Debug=False , heroku static files missing

2021-04-16 Thread sherry wilson
Use whitenoice On Sat, 17 Apr 2021, 5:15 am Emran Ibn Shayed, wrote: > When I set Debug=False in setting.py , images got missing from my app on > heroku. how do I solve it. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To

Debug=False , heroku static files missing

2021-04-16 Thread Emran Ibn Shayed
When I set Debug=False in setting.py , images got missing from my app on heroku. how do I solve it. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Daphne raises Internal Server Error when accessing static files from development server

2021-04-06 Thread kradem
ublished in PyPi and after > installing it it all works well! :) > > Thank you! > Dana utorak, 6. travnja 2021. u 17:56:44 UTC+2 korisnik kradem napisao je: > > Thank you very much for a quick response. > > Yes, that's the problem: > > asgiref 3.3.2

Re: Daphne raises Internal Server Error when accessing static files from development server

2021-04-06 Thread Andrew Godwin
The 3.3.3 version is published in PyPi and after >>>>> installing it it all works well! :) >>>>> >>>>> Thank you! >>>>> Dana utorak, 6. travnja 2021. u 17:56:44 UTC+2 korisnik kradem napisao je: >>>>>> Thank you very much

Re: Daphne raises Internal Server Error when accessing static files from development server

2021-04-06 Thread kradem
gt; When I downgrade it to 3.3.1 Django complains ("django 3.2 requires > asgiref<4,>=3.3.2, but you have asgiref 3.3.1 which is incompatible."), but > static files are served well. > > I tried with the very last version 3.3.3 (-e git+ > https://github.com/django/a

Re: Daphne raises Internal Server Error when accessing static files from development server

2021-04-06 Thread Andrew Godwin
Thank you! >>> Dana utorak, 6. travnja 2021. u 17:56:44 UTC+2 korisnik kradem napisao je: >>>> Thank you very much for a quick response. >>>> >>>> Yes, that's the problem: >>>> >>>> asgiref 3.3.2 >>&g

Re: Daphne raises Internal Server Error when accessing static files from development server

2021-04-06 Thread kradem
t; Dana utorak, 6. travnja 2021. u 17:56:44 UTC+2 korisnik kradem napisao je: > > Thank you very much for a quick response. > > Yes, that's the problem: > > asgiref 3.3.2 > > When I downgrade it to 3.3.1 Django complains ("django 3.2 requires > asgi

Re: Daphne raises Internal Server Error when accessing static files from development server

2021-04-06 Thread Andrew Godwin
3.2 requires >> asgiref<4,>=3.3.2, but you have asgiref 3.3.1 which is incompatible."), but >> static files are served well. >> >> I tried with the very last version 3.3.3 (-e >> git+https://github.com/django/asgiref.git#egg=asgiref), but problem hasn't &

Re: Daphne raises Internal Server Error when accessing static files from development server

2021-04-06 Thread kradem
t; > asgiref 3.3.2 > > When I downgrade it to 3.3.1 Django complains ("django 3.2 requires > asgiref<4,>=3.3.2, but you have asgiref 3.3.1 which is incompatible."), but > static files are served well. > > I tried with the very last version 3.3.3 (-e git+ &g

Re: Daphne raises Internal Server Error when accessing static files from development server

2021-04-06 Thread Andrew Godwin
2, but you have asgiref 3.3.1 which is incompatible."), but > static files are served well. > > I tried with the very last version 3.3.3 (-e > git+https://github.com/django/asgiref.git#egg=asgiref), but problem hasn't > been fixed that way. > > > Dana utorak, 6. tra

Re: Daphne raises Internal Server Error when accessing static files from development server

2021-04-06 Thread kradem
Thank you very much for a quick response. Yes, that's the problem: asgiref 3.3.2 When I downgrade it to 3.3.1 Django complains ("django 3.2 requires asgiref<4,>=3.3.2, but you have asgiref 3.3.1 which is incompatible."), but static files are serve

Re: Daphne raises Internal Server Error when accessing static files from development server

2021-04-06 Thread Andrew Godwin
This may be related to https://github.com/django/asgiref/issues/251 - what version of asgiref are you running? Andrew On Tue, Apr 6, 2021, at 9:43 AM, kradem wrote: > > 500 Internal Server Error > > Exception inside application. > > Daphne > > This error raises every time a file from static

Daphne raises Internal Server Error when accessing static files from development server

2021-04-06 Thread kradem
> 500 Internal Server Error > Exception inside application. > Daphne This error raises every time a file from static folder is accessed. What would be a proper way for debugging this? I've got "justMyCode": false setting in VS Code and that doesn't catch anything. Python 3.9.2 channels

Re: Use DropBox to Store Static Files in Django

2021-01-28 Thread Kasper Laudrup
On 1/28/21 8:08 AM, Samiddha সমিদ্ধ wrote: *How to use DropBox to use/serve Static Files and Upload Media in django project?* I use the method that mentioned here: django-storages[dropbox] <https://django-storages.readthedocs.io/en/latest/backends/dropbox.html> And try this method:

Use DropBox to Store Static Files in Django

2021-01-27 Thread Samiddha সমিদ্ধ
*How to use DropBox to use/serve Static Files and Upload Media in django project?* I use the method that mentioned here: django-storages[dropbox] <https://django-storages.readthedocs.io/en/latest/backends/dropbox.html> And also try this method: django-dropbox-storage <https:/

Use DropBox to Store Static Files in Django

2021-01-27 Thread Samiddha সমিদ্ধ
*How to use DropBox to use/serve Static Files and Upload Media in django project?* I use the method that mentioned here: django-storages[dropbox] <https://django-storages.readthedocs.io/en/latest/backends/dropbox.html> And try this method: django-dropbox-storage <https://pypi.or

Re: Static files not work

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer? We can help you in this and related tasks at fair prices. Reply or send email to divy...@pythonmate.com Best Regards, Divyesh Khamele, Pythonmate On Thu, 1 Oct 2020, 5:53 pm kkwaq...@gmail.com, wrote: > *Error* > > *[image: 1.jpg]* > >

Re: Static files not work

2020-10-02 Thread MUGOYA DIHFAHSIH
To become an expert in django is very simple, practice django documentation regularly as you work on real projects On Thu, Oct 1, 2020, 16:10 waqar khan wrote: > Thank you bro. > I am fresher , > How to expert django framework any tips .. > > On Thu, Oct 1, 2020 at 5:58 PM MUGOYA DIHFAHSIH >

Re: Static files not work

2020-10-01 Thread waqar khan
Thank you bro. I am fresher , How to expert django framework any tips .. On Thu, Oct 1, 2020 at 5:58 PM MUGOYA DIHFAHSIH wrote: > instead of loading staticfiles you use {{ load static}} > > On Thu, 1 Oct 2020 at 15:23, kkwaq...@gmail.com > wrote: > >> *Error* >> >> *[image: 1.jpg]* >> >>

Re: Static files not work

2020-10-01 Thread MUGOYA DIHFAHSIH
instead of loading staticfiles you use {{ load static}} On Thu, 1 Oct 2020 at 15:23, kkwaq...@gmail.com wrote: > *Error* > > *[image: 1.jpg]* > > *Error line number 2* > > *[image: 2.jpg]* > > > *settingspy* > > *[image: 3.jpg]* > > *html file* > > *[image: 4.jpg]* > > -- > You received this

Static files not work

2020-10-01 Thread kkwaq...@gmail.com
*Error* *[image: 1.jpg]* *Error line number 2* *[image: 2.jpg]* *settingspy* *[image: 3.jpg]* *html file* *[image: 4.jpg]* -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it,

403 serving static files

2020-05-25 Thread みやうち`
Hi, I'm trying to serve static files using nginx, but nginx gives following error. - [error] 8202#8202: *10 open() "/home/user/myproject/media/xxx.jpg" failed (13: Permission denied) I've tried giving all users permission to this directory and it didn't change. What is the cause?

Re: Django Media Static Files

2020-05-07 Thread Ilda Pedro
Hello, Jorge! Thanks Jorge it already worked! On Wed, May 6, 2020 at 3:38 PM Jorge Gimeno wrote: > > > On Wed, May 6, 2020 at 3:09 AM ilda.pedro1993 > wrote: > >> Hello, everyone! >> My name is Ilda, i'm getting a page not found when trying to load django >> media files. >> >> My django

Re: Django Media Static Files

2020-05-06 Thread Jorge Gimeno
On Wed, May 6, 2020 at 3:09 AM ilda.pedro1993 wrote: > Hello, everyone! > My name is Ilda, i'm getting a page not found when trying to load django > media files. > > My django settings file looks like below: > > [image: Captura de Tela (148).png] > > > > > > > > And saw many suggestions to

Django Media Static Files

2020-05-06 Thread ilda.pedro1993
Hello, everyone! My name is Ilda, i'm getting a page not found when trying to load django media files. My django settings file looks like below: [image: Captura de Tela (148).png] And saw many suggestions to concatenate my app urls with the static one like: urlpatterns

Re: Why can't Nginx find Django's static files?

2020-02-21 Thread Stephen J. Butler
ython code, or it serves up the static file itself. That's what we want to do. gunicorn is very good at running dynamic python code but it's very bad at serving up static files. nginx is very good at serving static files but can't run python code. See how they work together? Here's another way to thi

Re: Why can't Nginx find Django's static files?

2020-02-21 Thread אורי
, document_root=django_settings.MEDIA_ROOT) + urlpatterns אורי u...@speedy.net On Thu, Feb 20, 2020 at 6:36 PM Robert F. wrote: > I'm trying to understand how static files are served up by Django using a > project I've created on my Mac using Django 3, Gunicorn, and Nginx. The > website serves up

Re: Why can't Nginx find Django's static files?

2020-02-21 Thread Robert F.
On Thursday, February 20, 2020 at 8:52:31 AM UTC-8, Stephen J. Butler wrote: > > Django only serves up static files itself when run using runserver. This > is meant for development and not production use. When you run it through > gunicorn the Django framework won't serve up

Re: Why can't Nginx find Django's static files?

2020-02-21 Thread Robert F.
I'm trying to understand how static files are served up by Django using a >> project I've created on my Mac using Django 3, Gunicorn, and Nginx. The >> website serves up templates correctly except that the templates can't see >> my CSS stylesheet. When I go to a page, for ex

Re: Why can't Nginx find Django's static files?

2020-02-21 Thread Aldian Fazrihady
, which is to handle application code logic. Static files handling should be delegated to other server such as Nginx. The static file folder will be referenced directly by Nginx. Most of static files, such as images are so irrelevant to your backend application logic so that they can be cached

  1   2   3   4   5   6   7   8   >