Blogs

These days I am working on my other site www.ggsipu.info to build the database of all the colleges affiliated to GGSIPU. I created a Custom Content Type to have various fields like college address, phone, fax, email, rating, etc. During the counselling time the students wants to compare various colleges based on various parameters like infrastructure, campus and other things. Now I wanted to create a view where a table is shown with the names of the colleges in the header and these parameters on rows. This views snippet allows you to render a tableview with columns and rows switched. Suppose you have the following output: Title | Price 1 | Price 2 ---------------------------- Node #1 | $10 | $20 Node #2 | $15 | $25 but what you really want is the node titles displayed in the header, and the prices as the rows: | Node #1 | Node #2 ---------------------------- Price 1 | $10 | $15 Price 2 | $20 | $25 I created a view table, but obviously it showed the college names in the rows as it is the dynamic part. I searched around a lot on drupal and google and found this amazing piece of code that transpose the rows/columns. You just need to replace YOURTHEME with the name of the theme and VIEWNAME with the view name and that's it!
Internet Explorer does not display transparent PNG images, there is a drupal module "pngfix" to fix this. Image without installing pngfix Image after installing pngfix Step to enable PNGFIX Module and its configuration. 1. Upload the Module "pngfix" to your Drupal Modules directory 2. Enable the Module
I downloaded the latest drupal from the cvs using the command below. cvs -z6 -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal checkout drupal
I installed Drupal 6 today on my windows machine in office. After creating the first user I tried to access the Administration Page, but a blank page was returned. I searched google to fix this problem and got this link. http://www.tmsnetwork.org/blog/content/2008/08/22/drupal-6-slow-administ... Go to system table and change the value of 'status', 'bootstrap' and 'throttle' to 0
If you are hosting your Drupal website on Dreamhost then you may not be aware that Dreamhost provides a nice stats feature for all the domains. It is normally accessible at www.yoursite.com/stats but the problem is that with Drupal's clean_url enabled you will get "Page not found" error. Their is an easy resolution for this. Just add the following three lines on top of your .htaccess file. RewriteCond %{REQUEST_URI} ^/stats/(.*)$ [OR] RewriteCond %{REQUEST_URI} ^/failed_auth.html$ RewriteRule ^.*$ - [L]
Creating my own Database Driven Dynamic website was a dream for me, yeah I know it is not that difficult, but when you want a Blog, a Powerful CMS, User Registration, Email, Forums, Comments, Access Restriction based on User Roles and bla bla bla other cool things in your website then it get little tough. The very though of making a website with all these features used to Haunt me. I think I am a good Programmer but I am a Lazy person. I do not like do same things again and again.