472,325 Members | 1,947 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,325 software developers and data experts.

Can I use Python instead of Joomla?

If I wanted to build a website with forums, news feeds, galleries,
event calander, document managment, etc. I do so in Joomla easily.

But, I would perfer to use django/python, if that would be at all
practical.

I suppose I could put python scripts into django, if those scripts
exist.

May 2 '07 #1
9 12682
walterbyrd wrote:
If I wanted to build a website with forums, news feeds, galleries,
event calander, document managment, etc. I do so in Joomla easily.
Yes, you can do this kind of thing with Python:

http://wiki.python.org/moin/ContentManagementSystems
But, I would perfer to use django/python, if that would be at all
practical.
Then you should be looking for a content management system (CMS)
written using Django, although there are a number of other established
open source solutions, particularly in the Zope universe, that are
already widely deployed.

Paul

May 2 '07 #2
On May 2, 4:48 pm, walterbyrd <walterb...@iname.comwrote:
If I wanted to build a website with forums, news feeds, galleries,
event calander, document managment, etc. I do so in Joomla easily.

But, I would perfer to use django/python, if that would be at all
practical.

I suppose I could put python scripts into django, if those scripts
exist.
Have you looked at Zope/Plone?

It's not Django, but they're the de facto standards in the Python
world for that sort of thing.

May 2 '07 #3
Il 2 May 2007 13:48:45 -0700, walterbyrd ha scritto:
If I wanted to build a website with forums, news feeds, galleries,
event calander, document managment, etc. I do so in Joomla easily.
You're using Joomla, which is a CMS written in PHP.

Python is a language, you should ask 'can I use Python instead of PHP'.

There are various Python CMSes lying around, you already got the link from
the Python wiki. Now, you should check if they offer the same level of
functionality and support that Joomla offers - and it may or may not be the
case; consider that Joomla and Mambo have been around since years, while
Python cmses and web frameworks are relatively young.

Finally, Django is a framework, not a CMS. It is used to create websites
and may be used to actually create CMSes.

Now the important part: if you're not a PHP programmer, you can still use
Joomla. You just download it, follow the instructions, plug in any
pre-packed addon, and use it. You could probably do the very same with some
of the Python CMSes around.

Django is different: you must be able to program Python in order to use it.
Nothing works from the beginning, since it's not a CMS: you must code it.

--
Alan Franzoni <al***************@gmail.com>
-
Togli .xyz dalla mia email per contattarmi.
Remove .xyz from my address in order to contact me.
-
GPG Key Fingerprint (Key ID = FE068F3E):
5C77 9DC3 BD5B 3A28 E7BC 921A 0255 42AA FE06 8F3E
May 2 '07 #4
walterbyrd a écrit :
If I wanted to build a website with forums, news feeds, galleries,
event calander, document managment, etc. I do so in Joomla easily.

But, I would perfer to use django/python, if that would be at all
practical.

I suppose I could put python scripts into django, if those scripts
exist.
You're mixing apples, fishes, and cars here. Joomla is a content
management system, Django a framework and Python a language.
May 2 '07 #5
On May 2, 5:38 pm, Bruno Desthuilliers
<bdesth.quelquech...@free.quelquepart.frwrote:
You're mixing apples, fishes, and cars here. Joomla is a content
management system, Django a framework and Python a language.
Yes, I know, but they are all ways to create a website. If I wanted a
site which included galleries, forums, etc. and I didn't want to re-
invent the wheel, I could:

1) Use joomla or drupal, and possible end up "fighting the framework"
to get just what I want.

2) Cooble together a web-site with various scripts, either developed
by others, or myself.

I would like to work with django, and include some python stuff. But,
the PHP environments seem to have a much richer assortment of pre-
written scripts.

If I want to include my own applications, I could develop those apps
with a popular PHP MVC called "CakePHP" and include those into joomla
or drupal. I don't know if there is anything like that with Python
development.

May 3 '07 #6
walterbyrd a écrit :
On May 2, 5:38 pm, Bruno Desthuilliers
<bdesth.quelquech...@free.quelquepart.frwrote:
>You're mixing apples, fishes, and cars here. Joomla is a content
management system, Django a framework and Python a language.

Yes, I know, but they are all ways to create a website. If I wanted a
site which included galleries, forums, etc. and I didn't want to re-
invent the wheel, I could:

1) Use joomla or drupal, and possible end up "fighting the framework"
to get just what I want.

2) Cooble together a web-site with various scripts, either developed
by others, or myself.

I would like to work with django, and include some python stuff. But,
the PHP environments seem to have a much richer assortment of pre-
written scripts.
Most of them being of very poor quality...
If I want to include my own applications, I could develop those apps
with a popular PHP MVC called "CakePHP" and include those into joomla
or drupal.
I'm not sure integrating CakePHP stuff into something like Joomla or
Drupal will be that easy.
I don't know if there is anything like that with Python
development.
The most advanced Python-based CMS so far is still Plone. But it's a
monstruosity.

If you want Python and easy integration, you'd probably be happier with
Pylons. While far from finished, it's very promising, and less
monolithic than Django.

My 2 cents...
May 3 '07 #7
walterbyrd wrote:
>If I wanted to build a website with forums, news feeds, galleries,
event calander, document managment, etc. I do so in Joomla easily.

But, I would perfer to use django/python, if that would be at all
practical.

I suppose I could put python scripts into django, if those scripts
exist.
There are at least 3 Python oriented web apps out there.
I highly recommend you ditch Joomla as soon as you can.

joomla has a lot of security issues, and I've been trying to get
my friend off of this POS for the longest time. Her web sites
are constantly getting defaced... there are at least 3 Joomla
exploits I know of out there.

djangoproject.org
turbogears.com
plone.org

Check these out. But get off of Joomla as soon as you can.
I admit, Joomla is easy to use I admit, but very easy to vector into
a root exploit.

John

May 4 '07 #8
On May 3, 11:08 am, Bruno Desthuilliers <bruno.
42.desthuilli...@wtf.websiteburo.oops.comwrote:
I'm not sure integrating CakePHP stuff into something like Joomla or
Drupal will be that easy.
I don't know either. But, there are projects called "jake" and "drake"
which are specifically geared toward intergrating cakephp with joomla
and drupal, respectively.

May 4 '07 #9
On May 3, 7:49 pm, John Draper <l...@webcrunchers.comwrote:
I admit, Joomla is easy to use I admit, but very easy to vector into
a root exploit.
I had no idea. Thank you for posting that.

One thing I really like about joomla is the 1600+ extensions. But, I
don't need those kinds of security issues.

May 4 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: KCC | last post by:
I apologize if this is not the correct group to ask this question but I can't find another newgroup that might help and I am having no luck at the...
0
by: pravat_panda2006 | last post by:
Hi! Links about joomla: http://www.joomla.org/ http://www.joomlancers.com http://joomlasupport.co.uk...
14
by: Osiris | last post by:
time for a Joomla newsgroup ! support the initiative on news.groups and nl.newsgroups. search there with keyword "joomla" and give your opinion,...
7
by: Dawson | last post by:
A client of ours with a large ecommerce shop is looking at moving to Joomla... The question is: Is Joomla ready for large critical enterprise...
1
by: Phil | last post by:
My nonprofit is using a developer to create the database portion of our password protected membership site (involving displays of tables including...
18
by: Shelly | last post by:
Opinions sought: ============ A prospective client wants customizations to Joomla using PHP. I have not done anything with Joomla. Is it worth...
69
by: notbob | last post by:
I'm not posting this just to initiate some religious flame war, though it's the perfect subject to do so. No, I actaully want some serious advice...
8
by: Annalyzer | last post by:
I agreed to write an event registration site for a group and then later found out that their website was created with Joomla. I had never heard of...
0
by: tammygombez | last post by:
Hey fellow JavaFX developers, I'm currently working on a project that involves using a ComboBox in JavaFX, and I've run into a bit of an issue....
0
by: tammygombez | last post by:
Hey everyone! I've been researching gaming laptops lately, and I must say, they can get pretty expensive. However, I've come across some great...
0
by: concettolabs | last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: CD Tom | last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
0
by: CD Tom | last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.