Lock-In

2008-05-04 Thread Kamal
Question, I work in a company that is adopting the agile method, scrum. They are doing implementing it using c#, which I think is funny. How does a company decide to switch its development language? We have very long development cycle's, and I would have thought they would have looked at the lan

Admin page set up.

2009-07-02 Thread kamal sharma
Hi, I am trying to setup admin page. Django version: alpha version of 1.1 Python Version: Python 2.5.2 I have followed the following steps to set up admin page. http://docs.djangoproject.com/en/dev/ref/contrib/admin/#ref-contrib-admin 1. settings.py: # Add 'django.contrib.admin' to INSTALLED_

Re: Admin page set up.

2009-07-02 Thread kamal sharma
u have defined it in urls.py ... with > (r'^admin/(.*)', admin.site.root), > your URL is > http://server-name:1020/admin/ > > after adding 'django.contrib.admin' to your INSTALLED_APPS > you have sync the database, of course: > python mangage.py syncdb > > re

Re: Admin page set up.

2009-07-02 Thread kamal sharma
o-setup seems > correct to me ... I´ve never seen port 1020 used for the dev-server, > but I´m not doing server-setups at all, so it might be very common. > > you could try a simple direct_to_template in order to check whether > (or not) apache is serving your site correctly. >

Re: Admin page set up.

2009-07-02 Thread kamal sharma
f "try and error" you´ll be > there very soon. from remembering my first steps with django I´d say: > don´t become desperate, it´ll all be reasonable very soon. > > regards, > patrick > > > On 2 Jul., 17:40, kamal sharma wrote: > > Thanks Patrick for your quick re

server can't connect in browser

2022-06-22 Thread Deep Kamal
Hi all, I am quite new in django. Just started my first project in it. I started an ec2 instance, setup virtual environment and run server through python manage.py runserver command. Server is up with no errors. But when I copy the link and open in browser it says site can't be reached. Screensho

Django Database User-Side Access Basics

2012-03-14 Thread Fady Kamal
Hello i am new to django and i've completed the Polls app tutorial sucessfully,and what i want to do now *FROM THE USER SIDE *is the following : 1-create poll. 2-delete poll. 3-edit the question in a specific poll. 4-add a choice to the poll. 5-remove a choice from a poll. i don't have knowledg

Re: Django Database User-Side Access Basics

2012-03-14 Thread Fady Kamal
no i need a tutorial to help me do these tasks On Wednesday, March 14, 2012 8:28:54 PM UTC+2, dummyman dummyman wrote: > > python official website will be good start > > On Wed, Mar 14, 2012 at 11:44 PM, Fady Kamal wrote: > >> Hello i am new to django and i've comple

Simple multiplication in model's attribute

2012-05-17 Thread Fady Kamal
Hello, I am trying to set a default value for attribute threshold in this code, the threshold should be the current level*50 and this is the model class Level (models.Model): name = models.CharField(max_length=20,null=True, blank=True) description = models.CharField(max_length=20, null=True, bla

Re: Simple multiplication in model's attribute

2012-05-17 Thread Fady Kamal
issue was solved here http://stackoverflow.com/questions/10640565/simple-multiplication-in-models-attribute-django/10640628#comment13795400_10640628 On Thu, May 17, 2012 at 8:27 PM, Dennis Lee Bieber wrote: > On Thu, 17 May 2012 10:22:15 -0700 (PDT), Fady Kamal > declaimed the follow

Re: Template: Foreign Key

2012-05-18 Thread Fady Kamal
it's not working with me On Tuesday, June 30, 2009 10:43:15 AM UTC+2, russelson wrote: > > Hi, > > I'm new to django > > I have two models > > #models.py > > class House(models.Model): > name = models.CharField(blank=True, max_length=50) > > class People(models.Model): > name = mode

Re: Template: Foreign Key

2012-05-19 Thread Fady Kamal
} >> {% endfor %} >> >> I just wrote that code block pretty quickly but it should step you in the >> right direction. Also, here's a related stackoverflow post: >> http://stackoverflow.com/questions/1014591/traversing-foreign-key-related-tables-in-django-te

Django polls application problem

2013-06-20 Thread Kamal Kaur
I am new to Django. Creating my first application, Polls. Some field was missing in database when I tried to enter multiple choices in a poll from terminal. Even it was not done when admin.py file was changed to show a bunch of choices. Now previous database is dropped and a new one is created.

Advanced search in django?

2013-07-06 Thread Kamal Kaur
I have found the code for Soundex which is a phonetic algorithm, it is capable of searching from database despite of minor spelling differences. But don't know how to implement it in my project to search in database. Do I need to keep a separate file? or what to do ? Here is the link. https://githu

Re: Advanced search in django?

2013-07-06 Thread Kamal Kaur
On Sat, Jul 6, 2013 at 9:39 PM, Javier Guerra Giraldez wrote: > not a separate file, but a separate field. either override the save() > method of your model, or connect to the pre_save() signal to keep it > updated with the 'original' text. for searches simply query this > field against the soun

Re: Advanced search in django?

2013-07-08 Thread Kamal Kaur
On Sat, Jul 6, 2013 at 9:47 PM, Kamal Kaur wrote: > Sorry, didn't get you. > Can you please elaborate more? Reply awaited. -- Kamaljeet Kaur Blog:http://kamalkaur188.wordpress.com/ -- You received this message because you are subscribed to the Google Groups "Django

Re: Unable to get python manage.py runserver to work

2013-07-11 Thread Kamal Kaur
On Fri, Jul 12, 2013 at 8:31 AM, Yves S. Garret wrote: > What am I screwing up? Try using quote: [...] project_name.settings [...] instead of [...] {{ project_name }}.settings [...] -- Kamaljeet Kaur Blog:http://kamalkaur188.wordpress.com/ -- You received this message because you are subsc

Re: django templates

2013-07-17 Thread Kamal Kaur
On Wed, Jul 17, 2013 at 8:04 PM, Harjot Mann wrote: > No, this is not admin problem. I am getting the reports templates but > these are not saved anywhere, valuse are coming from database. But I > want to take the print outs i.e the hard copy of all the reports which > are made till now by saving

Re: django templates

2013-07-17 Thread Kamal Kaur
On Wed, Jul 17, 2013 at 8:33 PM, Harjot Mann wrote: > @ Kamal thnks but its already there. It must work if it is there?? -- Kamaljeet Kaur Blog:http://kamalkaur188.wordpress.com/ -- You received this message because you are subscribed to the Google Groups "Django users&qu

Re: django templates

2013-07-17 Thread Kamal Kaur
On Wed, Jul 17, 2013 at 9:13 PM, Harjot Mann wrote: > It is used only for one report and there is some error,so it is there > but not working. Then fix it! -- Kamaljeet Kaur Blog:http://kamalkaur188.wordpress.com/ -- You received this message because you are subscribed to the Google Groups

Search from database

2013-07-19 Thread Kamal Kaur
Can we have a search module in django that can suggest resembling spellings from mysql database? -- Kamaljeet Kaur Blog:http://kamalkaur188.wordpress.com/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Re: Search from database

2013-07-21 Thread Kamal Kaur
We can search from database using phonetic codes or queries. I want an advanced search module in my project. That can suggest similar spellings from database, if user enters something wrong, like if something is misspelled, it must tell that you might have entered something wrong, similar results a

Re: Search from database

2013-07-23 Thread Kamal Kaur
On Wed, Jul 24, 2013 at 5:15 AM, Amirouche Boubekki wrote: > Apache solr or ElasticSearch: yes > Haystack: maybe > Regex: no Thanks. Studying ElasticSearch currently. -- Kamaljeet Kaur kamalkaur188.wordpress.com facebook.com/kaur.188 -- You received this message because you are subscribed

Re: Search from database

2013-07-25 Thread Kamal Kaur
On Wed, Jul 24, 2013 at 5:15 AM, Amirouche Boubekki wrote: > Apache solr or ElasticSearch: yes Is this the right method for installation? What is the need to adduser? http://www.cubrid.org/wiki_tutorials/entry/install-apache-solr-on-ubuntu These commands don't extract the files: http://django-ha

Re: Search from database

2013-07-26 Thread Kamal Kaur
On Fri, Jul 26, 2013 at 12:10 PM, Kamal Kaur wrote: > These commands don't extract the files: > http://django-haystack.readthedocs.org/en/latest/installing_search_engines.html Installed with this: http://mirror.metrocast.net/apache/lucene/solr/4.4.0/solr-4.4.0.tgz -- Kam

Haytack Installation of search engines

2013-07-28 Thread Kamal Kaur
In the documentation, """ More Like This To enable the “More Like This” functionality in Haystack, you’ll need to enable the MoreLikeThisHandler. Add the following line to your solrconfig.xml file within the config

Haystack

2013-07-30 Thread Kamal Kaur
Running the following command, output is: "All documents removed." $ ./manage.py rebuild_index Documentation says- "Simply run ./manage.py rebuild_index. You’ll get some totals of how many models were processe

Re: Haystack

2013-07-30 Thread Kamal Kaur
On Tue, Jul 30, 2013 at 3:10 PM, Kamal Kaur wrote: > > What I am missing? As this command must create indexes by processing models. > And how does my search_indexes.py file actually look like? > Currently it looks like this: http://tny.cz/d842c556 I have created the template

Django query from database

2013-10-11 Thread Kamal Kaur
Hello there, Hope you are doing well :) I have a problem regarding querying a list from two tables, the procedure goes like: Considering two tables from mysql database: 1. UserProfile table, with complete client details: First name, Last name, Address, email id, Contact number etc. 2. CodeTable

Re: Django query from database

2013-10-11 Thread Kamal Kaur
On Fri, Oct 11, 2013 at 4:06 PM, Leonardo Giordani wrote: > I think that you have to perform a query for each Code, extracting the list > of Word matching that Code and then merging all the lists. Exactly! > Since I don't know your models, I'll give you some general code, let me know > if you un

Re: Django query from database

2013-10-11 Thread Kamal Kaur
On Fri, Oct 11, 2013 at 6:43 PM, Leonardo Giordani wrote: > Sorry, I forgot the User part of your question. > > Let me understand the exact relationship between codes, words and users: do > those words or codes come from a form? Or are saved in the DB for each user? Actually I have to search for

Re: cx_Oracle error: ImproperlyConfigured

2011-04-21 Thread kamal sharma
quot; # figure out where on disk this gnatatui install is hiding base_path = __file__.split('/web/app.wsgi')[0] Am i missing something? Thanks, Kamal On Thu, Apr 21, 2011 at 4:27 PM, David Markey wrote: > At the top of the WSGI script, set the LD_LIBRARY_PATH environment > va

Re: cx_Oracle error: ImproperlyConfigured

2011-04-21 Thread kamal sharma
Here is the error I am getting now: cd /usr/local/lib /usr/local/lib> sudo ln /opt/app/oracle/products/11.2.0/lib/libclntsh.so.10.1 ln: ./libclntsh.so.10.1 is on a different file system /usr/local/lib> cd /usr/lib/ /usr/lib> sudo ln /opt/app/oracle/products/11.2.0/lib/libclntsh.so.10.1 ln: ./lib

Re: cx_Oracle error: ImproperlyConfigured

2011-04-21 Thread kamal sharma
After creating soft link, still it is giving the same error. Do i need to create soft link for any other files? My response are inline with KS: On Thu, Apr 21, 2011 at 9:21 PM, Ian wrote: > On Apr 21, 9:39 am, kamal sharma wrote: > > Here is the error I am getting now: > > &g

Re: cx_Oracle error: ImproperlyConfigured

2011-04-21 Thread kamal sharma
rownum < 10" cursor.execute(sql) names = [row[0] for row in cursor.fetchall()] cursor.close() connection.close() Thanks, Kamal On Thu, Apr 21, 2011 at 9:31 PM, kamal sharma wrote: > After creating soft link, still it is giving the same error. Do i need to > create soft

Re: cx_Oracle error: ImproperlyConfigured

2011-04-21 Thread kamal sharma
le.Cursor(connection) sql = "SELECT xyz FROM table_name where rownum < 10" cursor.execute(sql) data = cursor.fetchall() pprint(data) cursor.close() connection.close() return render_to_response('web/cases.html', {}, RequestContext(request, { 'first&

Re: cx_Oracle error: ImproperlyConfigured

2011-04-22 Thread kamal sharma
gt; python Python 2.4.4 (#1, Jan 10 2007, 01:25:01) [C] on sunos5 Type "help", "copyright", "credits" or "license" for more information. >>> import cx_Oracle >>> cx_Oracle.version '5.0.3' Did i missed something? Thanks, Kamal On Fr

Re: cx_Oracle error: ImproperlyConfigured

2011-04-22 Thread kamal sharma
;cx_Oracle.egg-info': Permission denied How to resolve this? Thanks, Kamal On Fri, Apr 22, 2011 at 7:53 PM, Ian wrote: > On Apr 21, 11:40 pm, kamal sharma wrote: > > When i try the same code from python Shell then it is working fine. > > Okay, so it does sound to me like it

Re: cx_Oracle error: ImproperlyConfigured

2011-04-22 Thread kamal sharma
on 2.4.4 (#1, Jan 10 2007, 01:25:01) [C] on sunos5 > Type "help", "copyright", "credits" or "license" for more information. > >>> import cx_Oracle > >>> > > But from the web I am getting the ImproperlyConfigured: configured

Re: cx_Oracle error: ImproperlyConfigured

2011-04-23 Thread kamal sharma
those to a file at the > beginning of your views.py)? > > Cheers > >Jirka > > On 22/04/2011, kamal sharma wrote: > > Yes, i am getting this error when i used from the web application. Also > all > > the > > user have the permission to webserv

Re: cx_Oracle error: ImproperlyConfigured

2011-04-26 Thread kamal sharma
; Thanks again for helping to fix this issue. Its really a superb forum to fix the issue so quickly. :-) Regards, Kamal On Sun, Apr 24, 2011 at 7:58 PM, Ian wrote: > On Apr 23, 12:29 pm, kamal sharma wrote: > > No it was .profile of mine. Now I have set the LD_LIBRARY_PATH in > app.wsgi

Re: cx_Oracle error: ImproperlyConfigured

2011-04-28 Thread kamal sharma
is in Django-Python module to use the below logic.How we can solve this problem? # Add ORACLE_HOME for 10g Oracle client. BEGIN { $ENV{ORACLE_HOME} = '/opt/app/oracle/products/10.2.0' } Any help will be highly appreciated. Thanks, Kamal On Tue, Apr 26, 2011 at 10:22 PM, kamal sharm

Re: cx_Oracle error: ImproperlyConfigured

2011-04-28 Thread kamal sharma
os.environ["LD_LIBRARY_PATH"] = "/opt/app/oracle/products/10.2.0/lib" os.environ["ORACLE_HOME"] = "/opt/app/oracle/products/10.2.0" Thanks, On Fri, Apr 29, 2011 at 2:10 AM, Jirka Vejrazka wrote: > Kamal, this is exactly the same error you were getting

Re: ChoiceInline field giving name error

2015-01-14 Thread Kamal Kaur
On Wed, Jan 14, 2015 at 6:33 PM, sanjeet kaur wrote: > NameError: name 'ChoiceInline' is not defined Have you tried this? http://stackoverflow.com/questions/22768262/nameerror-not-defined -- Kamaljeet Kaur -- You received this message because you are subscribed to the Google Groups "Django

Re: ChoiceInline field giving name error

2015-01-15 Thread Kamal Kaur
On Thu, Jan 15, 2015 at 4:08 PM, sanjeet kaur wrote: > Yes I tried but all that is correct. Are you following any tutorial? If yes, provide link. -- Kamaljeet Kaur -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this grou

(ModelForm) confusion

2014-07-29 Thread Kamal Kaur
Greetings! What I have done: There are four tables, from which I have generated ModelForms. Getting the WorkerDetails from one side, adding the salary and attendance things from the other side as the view says. If there is at least one row added in WorkerDetail table, then it directly asks to add

Re: (ModelForm) confusion

2014-08-03 Thread Kamal Kaur
> There where a few hooks in your view, for example: you check for > 'is_valid()' but there is no code to execute after. I've changed it a bit: > > > http://pastie.org/9431548 > > Thanks for the modifications. @Satinderpal Links are working. And yes, you got it right. Now I want that it

Iterate forms with for loop

2014-08-21 Thread Kamal Kaur
I'm iterating multiple forms for all the instances of a table in the template using for loop. But only the last form is being considered and it saves the data from last form only. I'm not getting how to differentiate these forms and save data, from every field and form, into the database. Here is

TypeError: "Source code string cannot contain null bytes"

2014-08-25 Thread Kamal Singh
Hi , I am new to this group and Django . I am trying to learn Django by making a blog app and everything was working fine till last night. Today when I tried to run server I got error with : Unhandled exception in thread started by function check_errors..wrapper at 0x.(some big hexadecimal d

Re: I have created an app (total noob question)

2014-08-31 Thread Kamal Kaur
On Mon, Sep 1, 2014 at 9:56 AM, Michael Carey wrote: > ). I cannot work out which files to upload to my website to veiw the page? Do you mean to deploy on production server? -- Kamaljeet Kaur -- You received this message because you are subscribed to the Google Groups "Django users" group.

Open Django template in dialog box (not in window)

2014-09-21 Thread Kamal Kaur
I'm trying to open a Django template using JS as a popup. Actually I've done this. But it opens a separate window but I want a clean dialog box or simply a division instead of that window. Using window.open method, clicking on the "Advance", "popitup" function runs. Here's the code: http://pastie.

Re: Open Django template in dialog box (not in window)

2014-09-22 Thread Kamal Kaur
On Mon, Sep 22, 2014 at 9:14 PM, Collin Anderson wrote: > What happens when you try? I'm not getting how to tell AJAX to go to a view and load the data that it returns as the template, (in dialog). It's just not done. Feeling too dumb to use it. And doesn't work when I send a URL like: '/popupadv

Re: web server question

2014-09-22 Thread Kamal Kaur
On Tue, Sep 23, 2014 at 5:39 AM, Paraskevi vogot wrote: > I find it a little bit hard to install a web server (Appache) s/Appache/Apache -- Kamaljeet Kaur -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and sto

Re: web server question

2014-09-22 Thread Kamal Kaur
On Tue, Sep 23, 2014 at 7:04 AM, Lachlan Musicman wrote: > That should work fine, o.O I just pointed out the wrong spellings. > although you will still need to install Python > if you are on a Windows platform. Exactly! -- Kamaljeet Kaur kamalkaur188.wordpress.com -- You received this mess

Re: Open Django template in dialog box (not in window)

2014-09-24 Thread Kamal Kaur
On Tue, Sep 23, 2014 at 11:17 PM, Fred Stluka wrote: > Kamal, does this fill in the gaps for you? If not, let us know. I've used this example in my app and getting this, in Firefox console, on clicking the link: http://pastie.org/9590027 Here is what I get as outp

Re: Open Django template in dialog box (not in window)

2014-09-24 Thread Kamal Kaur
On Wed, Sep 24, 2014 at 8:01 PM, Collin Anderson wrote: > Hmm... it seems to be trying to parse your html as javascript. Try using > adding to your $.ajax(): > > dataType: 'text', Nothing happened. -- Kamaljeet Kaur kamalkaur188.wordpress.com -- You received this message because you are subsc

Re: Open Django template in dialog box (not in window)

2014-09-24 Thread Kamal Kaur
On Tue, Sep 23, 2014 at 6:14 PM, Collin Anderson wrote: > # popupadvance.html > Here's the worker object: {{ worker }} > src="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/jquery-ui.min.js"> > > Advance > What I see is that I need to write the contents to be shown, in the dialog, inside t

Re: Open Django template in dialog box (not in window)

2014-09-24 Thread Kamal Kaur
On Tue, Sep 23, 2014 at 11:17 PM, Fred Stluka wrote: > > Excellent sample. Thanks! That's a nice standalone summary > of how to do a popup dialog via jQuery and Ajax. Worth posting > to a tips page or blog if you have such, so other people can > Google it. @ Collin, please do the above now ;)

Re: Open Django template in dialog box (not in window)

2014-09-24 Thread Kamal Kaur
On Thu, Sep 25, 2014 at 12:10 AM, Jan Eskilsson wrote: > "Uncaught TypeError: Undef is not a function" error in the Java Script, dont > understand why really ? Yes, I get the same in Chromium (y) ​,​ but only after reopening, as I mentioned in my previous mail. -- Ka

Re: Open Django template in dialog box (not in window)

2014-09-26 Thread Kamal Kaur
On Fri, Sep 26, 2014 at 1:49 AM, Collin Anderson wrote: > $("#popup").dialog({modal: true}).dialog('open')).load(this.href) > > I've updated my blog post. This is opening the template on next page :/ And you need to edit the post: $("#popup").dialog({modal: true}).dialog('open')).load(this.

Re: Open Django template in dialog box (not in window)

2014-09-26 Thread Kamal Kaur
On Fri, Sep 26, 2014 at 10:40 PM, Collin Anderson wrote: > Ahh yup. I should really test my examples :) Indeed! > The SyntaxError will make the > even handler not register. Does removing the extra parentheses fix it? No. In fact, I got the content in next page only after removing it ")" :P -

Re: Deployment in Django

2014-03-22 Thread Kamal Kaur
On Sat, Mar 22, 2014 at 2:50 PM, Aryak Sengupta wrote: > But what is the simplest and the easiest way to go about deployment? > > P.S. I am new to Django. Starting with a small app, following a good tutorial is not a bad idea! And the simplest, it lets you start from basics. Make sure you use git

Django production deployment on my VPS

2018-06-30 Thread Kamal Sharma
project on production with VPS. Your immediate action will be highly appreciated. Thanks Kamal Sharma -- 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 d

Re: Django production deployment on my VPS

2018-07-02 Thread Kamal Sharma
is this production environment with gunicorn and nginx is robust, can i develop a big portal and deploy into it with no problem?? On Sun, Jul 1, 2018 at 9:45 AM Gerardo Palazuelos Guerrero < gerardo.palazue...@gmail.com> wrote: > hi Kamal, > I found this link as part of a django tr

django production

2018-07-03 Thread Kamal Sharma
Dear Django community, i have deployed my django project at production server with gunicorn and nginx and it is working good. My question is can i deploy more then one django project on production server(ubuntu 16.04) for running two websites? Thank you Kamal Sharma -- You received this

Re: Django production deployment on my VPS

2018-07-03 Thread Kamal Sharma
production by winSCP and then i run??? Please help me Thanks Kamal Sharma On Sun, Jul 1, 2018 at 9:45 AM Gerardo Palazuelos Guerrero < gerardo.palazue...@gmail.com> wrote: > hi Kamal, > I found this link as part of a django training I did in a udemy course ( > https://www.udemy.c

django send_mail on production (gmail)

2018-07-03 Thread Kamal Sharma
Dear django community, I'm working on mail with django but it is working fine in my dev server (local) but on production it is not working. Can you help me please? Thanks Kamal Sharma -- You received this message because you are subscribed to the Google Groups "Django users&

Re: django send_mail on production (gmail)

2018-07-04 Thread Kamal Sharma
only 99 mails per day. So i changed the mail credentials and resolve the problem. Thanks. Kamal Sharma On Tue, Jul 3, 2018 at 7:40 PM Mikhailo Keda wrote: > More details is needed? Do you have any error? What hosting are you using? > What port are you using, is it open? > > -- &g

Re: django send_mail on production (gmail)

2018-07-04 Thread Kamal Sharma
Hey Jason, Thanks for suggestion i am i would like to try maiichimp because it is new for me Thank you On Wed, Jul 4, 2018 at 7:28 PM Jason wrote: > If you're hitting that limit, then you should either use your own mail > server or use mailchimp/some other service. There's nothing stopping th

Django object to json

2018-07-07 Thread Kamal Sharma
hi, I am facing a problem to get data from database in form of JSON. data = model.objects.all() now i have a big list in data and want to convert it into JSON. how can i do it. Thanks Kamal Sharma -- You received this message because you are subscribed to the Google Groups "Django

Re: How start django server automatically using pytest-django

2018-07-07 Thread Kamal Sharma
do you want to test on development server?? On Sat, Jul 7, 2018 at 1:17 PM, prakash sharma wrote: > Hi there, > I am facing issue that my django server is not started . > I want to run the pytest-django for test cases without manual runserver. > > Here is my test file: > > import requests

changing the django production from 80 to another

2018-08-15 Thread Kamal Sharma
Hey Django, I am facing a problem that at 80 port my tomcat is running and i just want to deploy my django application on the same server so how can i change the port number please help me. Thanks Kamal Sharma -- You received this message because you are subscribed to the Google Groups "D

Re: changing the django production from 80 to another

2018-08-16 Thread Kamal Sharma
Hey Thanks for this solution it worked for me. Thank you Kamal Sharma On Wed, Aug 15, 2018 at 10:24 PM, Kasper Laudrup wrote: > Hi Kamal, > > On 15/08/2018 16.32, Kamal Sharma wrote: > >> I am facing a problem that at 80 port my tomcat is running and i just want >

changes in django appilcation

2018-08-16 Thread Kamal Sharma
environment so how can i change update it on my production server. Please Help me Thanks Kamal Sharma -- 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

Update the django project from local to production

2018-08-25 Thread Kamal Sharma
Hey, How i have deployed my django project to my VPS and now i have done some change in my local django project and want to update on production server. How can i do that.? please help me Thanks Kamal Sharma -- You received this message because you are subscribed to the Google Groups "D

Re: Recruitment

2020-09-23 Thread Sani Kamal
I am interested On Thu, Sep 24, 2020, 12:09 AM Madhav Nandan wrote: > I'm interested here. > > On Wed, Sep 23, 2020 at 9:30 PM shubham vashisht > wrote: > >> What's the job and how much is the pay? >> >> On Wed, 23 Sep 2020, 21:26 Alam Khazi, >> wrote: >> >>> I am interested >>> >>> On Wed 23

Re: Django-admin problem

2018-05-04 Thread Kamal Kumar Bharadwaj
Hi all, Thanks for al your help. My error was i was missing a / in websites/urls.py in urlpatterns(music). On Sat, May 5, 2018, 1:19 AM Mikko Meronen wrote: > Thank you for your help. > > I also found a video that helped me with PowerShell (just if someone else > has the same problem): https:/

Re: Tutorial

2012-04-20 Thread Mohd Kamal Bin Mustafa
On Sat, Apr 21, 2012 at 7:12 AM, Gerald Klein wrote: > Hi, I did the tutorial everything is fine, I wanted to see how it was off > the dev webserver they give you , so I hooked it up to uWSGI. The views that > I defined are fine but the admin has no formatting just data. Can someone > tell me what

Re: Overide error messages in models

2011-05-15 Thread Mohd Kamal Bin Mustafa
There's self._meta._fields() that you can call to get a list of fields defined in that models but all the error_messages property attached to that field is just a proxy object to something else. I try the following in model's __init__ but it doesn't has any effect:- class Thread(models.Model):