What happened to my blogger theme????

Posted by ranit
















I noticed that from yesterday, that the theme that I have selected was not showing any of the background images reason being  http://www.webpagedesign.ws/jeans3c/content-bg.jpg was showing
http://127.0.0.1/jeans3c/content-bg.jpg. I think that they stopped hosting images for bloggers or is it that they are undergoing some maintenance work. I ll keep this theme for little bit more.
Hope infocreek is doing good.

Wifi config - Airtel Beetel 450bx1 vs BSNL wa3002g4

Posted by ranit

Everytime the Dell vostro comes in contact with the new router some changes are inevitable..

Home made nuclear reactor

Posted by ranit

home made reactor

It looks and sounds simple... only if able to do it without much of a fuss - FUSS here denotes blasting neighborhood out of the planet earth.

One valid point put is
"The best dang free energy machine I have ever seen. Of course the United States Government does not want regular people to have free energy because if people could be totally independent from major businesses and corporations, make their own shelter without going in debt, grow their own food, make their own energy, make their own transportation without going in debt ect... If people could do this then they would not need to work. If people did not work they could not pay taxes and keep the economy and of course government going. Are you worried? Your United States Government is very worried and they are taken steps to prevent this. Its a threat to all those in power and to all those that are rich."

Changed my recordkeeping functionality to gnumen.org

Posted by ranit

It's nice to have place of your own - have the feedom to take it down whenever you want, No questions asked..
For the time to come I ll be updating my personal space.
For blog it's gnumen/blog


Testing using Scribefire

Posted by ranit

yep its working

Lauched my scratchbox - gnumen.org

Posted by ranit

If I where to make use of the default cms package that came with the hosting company it would have been less scratchy but since the site was in the localhost with all the MySQL database, had to export and import the database then change the settings in the drupal. ofcourse uploading the local drupal to the public domain. Thanx to Rob of awakenedvoice for the valuable tip.


visit gnumen.org

Restriction of views2 in Drupal6

Posted by ranit

Even the views2 of drupal6 comes with some contrains on the type of query it can execute.
for eg in case of the displaying number of nodes for a term of blog type node some of query clause or fuctions are to be used are count() and group by

select count(node.nid) as nid, term_data.name as term_data_name, term_data.vid as term_data_vid, term_data.tid as term_data_tid from node node left join term_node term_node on node.vid = term_node.vid left join term_data term_data on term_node.tid =term_data.tid where (node.status <> 0) and (node.type in ('blog')) group by term_data_name;