February11
I need to redirect pages with .php extension to without. Like www.magrudy.com/mystore.php to www.magrudy.com/mystore
Use the following
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/\ ]+/)*([^.\ ...
February10
Make sure the website is not in maintenance mode :) took me atleast 20 mins to figure it out.
February10
I had installed tweetmeme on my drupal website, it was working great on the content type 'page' but not on ...
February3
Go to - admin - input formats
click configure next to "filtered html"
disable HTML filter
February3
The <p> tags were dispearing from the content on my nodes. Couldnt figure out what did i do wrong.
The solution ...
January27
How can we change the ul to ol in drupal view list, here I am referring to drupal 5. It ...
January27
The drupal blog module present in the core is not sufficient lacking the main features of a blogging website. Wordpress ...
January27
Do not bother with all those modules out there for the archives of the module blog just use the code ...
December20
In the node.tpl file add the following:
<span><?php print t('!date', array('!date' => format_date($node->created, 'custom', 'D, Y-m-j'))); ?></span>
Where we add
format_date ...
November23
How to create different template files depending on various factors.
I had a situation where i wanted a left column on ...