Re: How do you link your Django project to a domain

2015-01-24 Thread Majo
I'd say compare prices and then decide (For example, check out uniteddomains.com. A .com sets you back $9.99/year there.). If you're planning to get something more exotic than .com or .org, etc. You might be able to save some money by going for a local provider (e.g. if you want a .de, register

Re: please advice me some good online tutorials for google map

2015-02-04 Thread Majo
Hey Jai, To add a Google Map to your website you don't need to do anything special in your Django project. It's a plain HTML/JS task. Have a look at the Documentation, it'll help: https://developers.google.com/maps/tutorials/fundamentals/adding-a-google-map Cheers On Wednesday, February 4, 20

Re: Merge two Databases into one

2014-10-25 Thread Majo
Larry's right, if it's a one time thing, use mysqldump -u YOUR_DB_USER -p OLD_DB --no-create-info > SOME_FILE.sql from the command line. Then, to import, use: mysqlimport -u YOUR_DB_USER -p NEW_DB SOME_FILE.sql To be sure you understand what's happening, check the docs first: http://dev.mysql.c

Re: what's the best admin skin (free)

2014-04-17 Thread Majo
Hey Bobby, I'm using Grappelli for some of my projects and I like it. If you want to know about other skins, you should head over to https://www.djangopackages.com/grids/g/admin-interface/ and check out what they have listed. The best choice for you will depend on how much you actually want to