Re: issue with static files deployement in Prod envirenment (new issu)

2024-09-01 Thread ASAMOAH EMMANUEL
Hi, Sorry to hear this. Perhaps we can have a private email conversation where we debug this together. I need to look at your NGinX configurations, static directory, configuration of static assets in settings file etc. Let me know if you prefer this option. Swimmingly, Simple_genius On Sat, Aug 31

Re: issue with static files deployement in Prod envirenment (new issu)

2024-08-31 Thread Abulbanat Mosta (Abulila)
Hi Emmanuel i tried the solution you provided , but sadly it doesn't work too- i add the my user and www.data user to the same group (i tried this with sudo in venv and outside venv) igave the permissions required to deal with the files - but no way. its still not working- . i am sure that's a p

Re: issue with static files deployement in Prod envirenment (new issu)

2024-08-25 Thread Abulbanat Mosta (Abulila)
Thank you a lot EMMANUEL for this hint- i'll try and return back to you with insghts Le dimanche 25 août 2024 à 15:39:54 UTC+1, ASAMOAH EMMANUEL a écrit : > I understand how frustrating this can be. I also faced this same issue for > months and this was how I solved it. > > sudo usermod -a

Re: issue with static files deployement in Prod envirenment (new issu)

2024-08-25 Thread ASAMOAH EMMANUEL
I understand how frustrating this can be. I also faced this same issue for months and this was how I solved it. sudo usermod -a -G your_user www-data sudo chown -R :www-data /path/to/your/static/folder Let me know if it is still not solved and I will help you. Swimmingly, Simple_genius On

issue with static files deployement in Prod envirenment (new issu)

2024-08-25 Thread Abulbanat Mosta (Abulila)
Im getting crazy and very frustrated about deploying static files of my django app since 1 month- all things are ok except static and media files which cannot be served by the web server ( i tried apache and nginx) Firstable- in dev mode my app is ok and the static file are correctly loaded. s

Re: django app deployement

2020-12-11 Thread 'Trish c' via Django users
Hello, I can help you. Please share your Email or Skype. BR Trish Email/Skye - tr...@cisinlabs.com On Friday, December 11, 2020 at 5:04:23 PM UTC+5:30 Kasper Laudrup wrote: > Hi Eugene, > > On 12/10/20 4:14 PM, Eugene TUYIZERE wrote: > > I have an issue to disploy django app using IIS on Window

Re: django app deployement

2020-12-11 Thread Kris A. Stern
Hey, Do you mean to ask how to run Django locally on Windows 10, or how to deploy the Django app for production on a Windows server? For example: https://docs.djangoproject.com/en/3.1/howto/windows/ If it’s for production I prefer using Heroku for a seamless integration of my local to my product

Re: django app deployement

2020-12-11 Thread Walter Randazzo
Good morning whats the issue? greetings El vie, 11 dic 2020 a las 8:33, Kasper Laudrup () escribió: > Hi Eugene, > > On 12/10/20 4:14 PM, Eugene TUYIZERE wrote: > > I have an issue to disploy django app using IIS on Windows server 2019. > > I am using python 3.8.3 and django 3.0.8. Please ass

Re: django app deployement

2020-12-11 Thread Kasper Laudrup
Hi Eugene, On 12/10/20 4:14 PM, Eugene TUYIZERE wrote: I have an issue to disploy django app using IIS on Windows server 2019. I am using python 3.8.3 and django 3.0.8. Please assist on this challenge. It's hard for anyone to assist you if they don't know what issue you have and therefore h

django app deployement

2020-12-10 Thread Eugene TUYIZERE
Team, I have an issue to disploy django app using IIS on Windows server 2019. I am using python 3.8.3 and django 3.0.8. Please assist on this challenge. regards, -- *TUYIZERE Eugene* *Msc Degree in Mathematical Science* *African Institute for Mathematical Sciences (AIMS Cameroon)Crystal Gar

DEPLOYEMENT

2019-03-25 Thread Sylvain Tshiasuma
Salut, tous Je suis tout nouveau Quelqu'un peut m'aider à comment heberger mon site sur webfaction.com? Someone can help me to deploy my site on webfaction.com? -- You received this message because you are subscribed to the

Re: Django deployement Apache

2017-10-19 Thread sarfaraz ahmed
Thanks you all you friends.. this is been fixed. On Thursday, 31 August 2017 14:47:05 UTC+5:30, Antonis Christofides wrote: > > Did you run collectstatic? After you do so, the files will be copied to > /var/www/static_root or whatever your STATIC_ROOT points to. > > Some other notes: > >- Yo

Re: Django deployement Apache

2017-08-31 Thread Antonis Christofides
Did you run collectstatic? After you do so, the files will be copied to /var/www/static_root or whatever your STATIC_ROOT points to. Some other notes: * You normally don't need to touch STATICFILES_DIRS at all. * The value os.path.join(os.path.dirname(BASE_DIR), 'static_root') is a bad id

Re: Django deployement Apache

2017-08-30 Thread sarfaraz ahmed
Thanks Antonis, I reached your website googling undoubtedly this is well explained. I have been able to deploy but here is my problem STATIC_URL = '/static/' MEDIA_URL = '/media/' STATICFILES_DIRS = [os.path.join(BASE_DIR, "static"),os.path.join(BASE_DIR,"static","admin")] STATIC_ROOT = os.pa

Re: Django deployement Apache

2017-08-30 Thread Antonis Christofides
Hello Sarfaraz, You could try "How Django static files work in production " to get some understanding of the correct way to do it. Regards, Antonis Antonis Christofides http://djangodeployment.com On 2017-08-2

Re: Django deployement Apache

2017-08-29 Thread Daniel Roseman
On Tuesday, 29 August 2017 05:48:57 UTC+1, Vernon Swanepoel wrote: > > You can just copy the static files out of Django and into the static files > in your project itself. No. You should absolutely not do that. That is what the `collectstatic` command is for. -- DR. -- You received this mess

Re: Django deployement Apache

2017-08-28 Thread Vernon Swanepoel
You can just copy the static files out of Django and into the static files in your project itself. -- 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+

Re: Django deployement Apache

2017-08-27 Thread sarfaraz ahmed
Thanks for your help. Yes it was permission issue. However I am not able to find anything under my site-packages. when I point the same to dist-packages it works. WSGIPythonHome /usr/local/lib/python2.7/dist-packages WSGIPythonPath /var/www/firsttest ServerName firsttest.com S

Re: Django deployement Apache

2017-08-26 Thread Vernon Swanepoel
Hello Sarfaraz, A couple things you could look at: 1. Are you including both your site-packages (eg python3.6/lib/site-packages) and your django project root (where you actually built the project) in your WSGIPythonPath? String them together with a clone (/path/to/python3.6/li

Re: Django deployement Apache

2017-08-26 Thread sarfaraz ahmed
Hey Team, Please someone help. I am still getting error * ImportError: No module named django.core.wsgi*mentioned below is my latest vhost file in ubuntu. WSGIScriptAlias / /var/www/firstweb/firstweb/wsgi.py ServerName firstweb.com ServerAlias www.firstweb.com

Re: Django deployement Apache

2017-08-26 Thread sarfaraz ahmed
i have made following changes in my vhost conf file and now services run. Also, I don't see any error. But instead of default django page I get default apache page. Here is my new conf file. - ServerName firstweb.com

Django deployement Apache

2017-08-26 Thread sarfaraz ahmed
Hello Friends, Please help me with this. I am new to linux and I am attempting to deploy my trial app on AWS ubuntu server. my vhost file looks like this WSGIScriptAlias / /var/www/firstweb/firstweb/wsgi.py WSGIPythonPath /var/www/firstweb ServerName firstweb.com

Re: Django free deployement help

2012-10-30 Thread Rahul Gaur
On Tue, Oct 30, 2012 at 8:16 PM, Alex Clark wrote: > ** > > On 2012-10-30 13:33:31 +, Amr Abdel-wahab said: > > > I have good experience with django developement but over local machines, I > have never built a project so can someone recommend me a free service to > deploy an experimental proj

Re: Django free deployement help

2012-10-30 Thread Alex Clark
On 2012-10-30 13:33:31 +, Amr Abdel-wahab said: I have good experience with django developement but over local machines, I have never built a project so can someone recommend me a free service to deploy an experimental project on it along with easy tutorial to handle that. https://devcen

Django free deployement help

2012-10-30 Thread Amr Abdel-wahab
I have good experience with django developement but over local machines, I have never built a project so can someone recommend me a free service to deploy an experimental project on it along with easy tutorial to handle that. Many Thanks, Amr Abdelwahab -- You received this message because yo