I don’t see any issue of using Wordpress for my blog, but I feel like drupal is going to be better.
“Planning to move to drupal” is it a wise decision ?
Your comments…
I don’t see any issue of using Wordpress for my blog, but I feel like drupal is going to be better.
“Planning to move to drupal” is it a wise decision ?
Your comments…
Almoslim.net is an islamic website, and the website is contributing with so many good islam contents, especially in raising families.
A day in the last months, I evaluated their current content management software, unfortunately, they software so so old running using CFM, and only one developer knows how to do development on top of their proprietary softwares.
After the demonstration of how good is drupal, and how hard is to maintain the current old software, they decided to move to Drupal as the backend engine.
Recently, I start to see more of Arabic good content website release using Drupal. even the website are not that complicated but believe me, that’s only 2% of what you can utilize using drupal.
some of those websites:
Another company trusted drupal as a backend system for a show case. Flex is a development flash application platform (IDE),
The backend of the application uses Drupal, along with the Services, AMFPHP, Vote up / down and CCK modules. The front end of the application is written in Adobe Flex, with custom components written in Flash
As I’m interested in Drupal CMS, CNET announced their webware award, and as I believe in Drupal, they reserved their seat in the award, read the rest here
Yesterday , Drupal version 5 has been release. it sounds promising release. however if you have run over some development on version 4 you might get angry since your development wont be any longer valid and you need to make it compliant with 5.
Actually I didn’t do too much development on 4.7 , but I have some simple modules and I have to look for straight steps to use them to convert but unfortunately I couldn’t find anything yet, what I find only this too much talk about the changes
which is not easy go through. So I might write my own steps and post them here to so you benefit from them.
As I started using Drupal to built content websites, I paid attention to some contributed modules which are very useful and very intelligent and here I’m listing some of those modules so it will save time of anyone who would like to start using Drupal:
and Since Drupal 5 is released today I will be posting another post about what is new in Drupal 5, and what is good over all in Drupal.
Since I started using Drupal as my CMS engine for any website needs to be developed, I started trying to collect some template( in drupal called theme). and I found this website http://theme.drupaler.net/ it contains a good number of themes , however those themes does not work Right to left yet.
I selected some of them and inshallah soon I will past theme there and here too.
here are some of I selected,
Some poeple like to have a module called front_page , to have different template for their front page. I found a simple way to do so, if you are interested to this subject, keep reading
first of all, I suggest to you to use PHPTemplate Engine. since it’s simple and no need for any learning curve if you know how to write simple scripts in PHP.
in your Theme Directory, create a file called template.php, this file is used to control any variable just before it’s passed to the template files.
And paste this code in it,
function _phptemplate_variables($hook, $vars = array()) {
switch ($hook) {
case 'page':
if ($vars['is_front']) {
$vars['template_file'] = 'front_page';
}
break;
}return $vars;
}
and create a file named front_page.tpl.php and start use this file to template your front page.
I started using Drupal as PHP Content management System, to develop some website. And Day by day, I started to believe it’s wonderfull software for developers to build complicated software.
Here are some features that I like and is making the development on top of Drupal fast and nice:
I’m working to develop a large website on top of drupal. and I will get back to you with more experience about Drupal.