User login

Drupal Development

Stop showing irrelevant results from my own site on internet searches: de-emphasize listing pages

Posted: http://groups.drupal.org/node/7698#comment-23573

I want to de-emphasize listing pages-- I'm not sure I don't want them indexed, and I certainly want them spidered so everything else will be indexed -- I'm tired of our own site coming up in search results when it isn't relevant, simply because so many terms are together on a big listing page (as for a taxonomy term).

Timelines in Drupal

Kara:
this is what i'm workign on

http://simile.mit.edu/timeline/docs/create-timelines.html

benjamin melançon
There's a Drupal module for that (and it's sure to be better than poll module, which is getting voted out of core), but it's not up to date: http://drupal.org/project/timeline

Select rows in a MySQL table that have no corresponding rows in another table using IS NULL

If there is no matching row for the right table in the ON or USING part in a LEFT JOIN, a row with all columns set to NULL is used for the right table. You can use this fact to find rows in a table that have no counterpart in another table:

How do I put Drupal's sitewide contact form on any page or panel I want?

Is Drupal's default contact form page a tad too restrictive? Do you want to have more than comfortably fits in the little option to have some text above the contact form? Do you need even that text to be multilingual? Would you rather not try to do all this with form_alter and creative use of blocks? Why can't one simply embed the contact form in a page, or better yet as one element in a panel, you ask? Why, indeed. Agaric has no idea why. But Agaric can tell you how (with or without generous use of text emphasis, we're flexible).

File-based caching with PHP

File-based caching can also be cool. Jay Pipes:

http://jpipes.com/index.php?/archives/100-Benchmarking-CacheEngine-vs.-the-MySQL-Query-Cache.html#serendipity_Co...

I'd like to see if there are places it could help Drupal. The current preferred solution for high-performance Drupal, though, is memory caching:

An upgrade module proposal

http://groups.drupal.org/node/7423#comment-23147
Benjamin Melançon - Sat, 2007-12-15 11:55

Like everyone else using a lot of Drupal, I want sophisticated change management where we have:

Fastest way to check if anything is in a MySQL table

http://forums.mysql.com/read.php?101,50600,50853#msg-50853

Vail wrote:

> When it checks to see if the
> group exists, however, and the table is empty, it
> always returns an error, which disables the script
> that calls the function.

Why not doing a simple

select count(*) from groups

?

Locale subset module motivation: remove, hide, get rid of non-public UI strings

Background:

http://hojtsy.hu/blog/2007-oct-10/comparison-your-localization-options-drupal-5-and-6

Doing the World Social Forum site right now has brought up two questions for me:

First, is there a way to tell either the translation interface or a PO export to ignore all strings in /admin pages?

Static variables in PHP last for a single execution

what does static caching mean in php?

That a variable is remembered when that instance of PHP next goes into the function holding the variable, and an instance is per-call, per-user, for a single page execution from the standpoint of a web app (simultaneous calls to PHP open different process threads).

static only applies for the life of the process

static variables are used to keep variable content between two function calls, not between two script executions, from what I can see in the manual and from how it behaves in C/++.

Syndicate content