Re: Reg:- django application optimization

2021-07-14 Thread Senthil Kumar
uction (debug=False) you have to use server like apache/nginx to > handle static files (security reason) > > On logger file depends on the way you write you handle how to write log > files > > On 14 Jul 2021, 16:34 +0300, Senthil Kumar , > wrote: > > *Hi Team,* > We ar

Reg:- django application optimization

2021-07-14 Thread Senthil Kumar
*Hi Team,* We are new to Django & Python application. Recently we are migrate from PHP. We are developed the application in Django / MySQL / UWSGI. Please guide us for following items. 1. Enabling Error Page. - We did debug = False. But we are not able to access any media items using the

Re: Regd:- Generating PDF from HTML with image

2020-10-27 Thread Senthil Kumar
Thanks a lot. We will check it out & get back to you On Tue, Oct 27, 2020 at 6:43 PM Derek wrote: > You can try : https://pypi.org/project/xhtml2pdf/ > > On Tuesday, 27 October 2020 at 11:37:22 UTC+2 senthil...@gmail.com wrote: > >> Hi Everyone, >> >> Hope you

Regd:- Generating PDF from HTML with image

2020-10-27 Thread Senthil Kumar
Hi Everyone, Hope you are doing well We need help to generate the PDF from the HTML tag with images. Let us know if any package available to do this requirement. Thanks in advance. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscrib

Multi-Tenancy MySQL Database in Django

2019-11-12 Thread Senthil Kumar
We are going to do a SAAS based application for our existing application. We need to integrate the Multi-Tenancy database using MySQL in this application. Please suggest any predefined packages available in Django. For example, company1.domain.com,company2.domain.com,company3.domain.com.Here Co

new user

2012-12-21 Thread senthil mariyappan
hi friends, i new one to django.. -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/SDpcDnlGgxMJ. To post to this group, send email to django-users@googlegrou

Newbie: having trouble with save method

2009-10-10 Thread Senthil
ise Database.IntegrityError(tuple(e)) IntegrityError: (1048, "Column 'user_id' cannot be null") >>> u2 = User(username = 'testuser4') >>> u2.save() >>> h.user = u2 >>> h.save() Can someone explain why this behavior

Troubleshooting an example django application

2009-04-26 Thread Senthil Kumaran
= '/media/admin/' MEDIA_ROOT = '' The application will create a directory named 'photos' and it will store the images uploaded and thumnail versions from there. I tries to serve from /media/photos/imagename.jpg but fails to the photo. I am bit confused by this. Than