For everything related to documents, images, audio and video.

Adding images is a nightmare

All I want is to let my friends easily add their images to my website while being able to control max size and dimentions. I read about "upload module", "image module", "image assist module", "drupalimage pluging" and "lightbox module". I don't quite get it.. why all of those aren't integrated into one easy to configure module? Anyway I am lost. Please help!

Here is my website: www.meignorant.com

Collaborative Drawing in Drupal?

Hi,

I am working on a site that needs not only collaborative writing, but should also support sketching. As for the writing part, Drupal has really everything I need, I could not find anything for the drawing.

How do I prevent a thumbnail?

Is there a way I can prevent an image from appearing as a thumbnail? I want it to appear full size with a cut line underneath it.

curl patch for flickrstickr

here's a quick patch to flickrstickr.module that causes it to use curl if available, and fail back to fopen as a last resort. I needed this to get this module working on Dreamhost.com because they don't allow fopen($url)


--- flickrstickr.module.orig 2006-07-18 23:17:23.000000000 -0700
+++ flickrstickr.module 2006-07-18 23:33:44.000000000 -0700
@@ -29,11 +29,9 @@
function flickrstickr_proxy_user() {
header("Content-type: text/xml; charset=UTF-8");
$apikey= flickrstickr_getapikey();
- $fp= fopen("http://www.flickr.com/services/rest/?method=flickr.people.findByUsername&api_key=".$apikey."&username=".urlencode(arg(3)), "r");
- while (!feof($fp)) {
- $buffer= fgets($fp, 4096);
- echo $buffer;
- }
+ $query = "http://www.flickr.com/services/rest/?method=flickr.people.findByUsername&api_key=".$apikey."&username=".urlencode(arg(3));
+ $buffer = get_page($query);
+ echo $buffer;
}
/**
* public ajax proxy because the javascript restriction
@@ -53,11 +51,8 @@
if (arg(4) != null)
$query .= "&tags=".urlencode(arg(4));
}
- $fp= fopen($query, "r");
- while (!feof($fp)) {
- $buffer= fgets($fp, 4096);
- echo $buffer;
- }
+ $buffer = get_page($query);
+ echo $buffer;
}
/**
* implement hook_nodeapi to 4.6
@@ -338,16 +333,9 @@
}
//$url = flickrstickr_getflickrurl($matches[1],$matches[2],$matches[3],'o',$orient);

Easy browse taxanomy.

So, I've been in the community for drupal a while now, but there is one
thing I can not figure out. That is to make browsing categories/taxonomy
where easy.

Say I have tea, coffee and beer as main taxonomy containers. Within tea,
you have chinese tea, japanese tea, english tea and spanish tea...right..
And there are hundreds of tea-sorts from china.
How can I make an easy browsing at my frontpage to that certain chinese
tea? Could I do this ajaxfied maybe(a drop-down box kinda solution)?

Different user image sizes for profiles, teasers, and nodes.

You are allowed to customize the size of a user's profile image, but both teasers and nodes depend on those same image dimensions. I want my teaser and node user images (avatars) to be smaller than the profile image.

Is there an easy way to achieve this? I like a large profile pic, but it wrecks the layout on teasers. Thanks in advance for any hints or recommendations.

Pages

Subscribe with RSS Subscribe to RSS - Deprecated - Media and document management