i have installed image module ($Id: image.module,v 1.132 2004/10/02 09:52:14 bruno Exp ). I had no problems in uploading the image, i could see the thumbnail too, but when i navigate to personal gallery
http://sitename/?q=image/uid/1 and http://sitename/?q=image/tid,
i get a "page not found" error.

I refer to post by bruno, http://drupal.org/node/11195.
So, this bug is already fixed, isn't it?

Comments

gkrishna’s picture

the above link i refered to is incorrect, here is the correct information of the link posted by bruno,

http://drupal.org/node/1593

So, this bug is already fixed, isn't it?

--**--
krishna

robertdouglass’s picture

Please tell us what versions of Drupal and of the image.module you have installed.

The link that you read from bruno is quite old and the code base has changed significantly since then.

- Robert Douglass

-----
visit me at www.robshouse.net

gkrishna’s picture

Drupal v 1.2 2004/05/17 19:35:49 kjartan
and image module version 1.132 2004/10/02 09:52:14 bruno Exp.

I have no problem in the upgrading the image module and image uploading, thumbnails and original image links were perfectly fine. Exceptions are image/uid/1 and image/tid.

--**--
krishna

gkrishna’s picture

I would like to have a response for this post, as i find this bug is not corrected in image.module. Bruno, if you have seen this post please let me know your comments
--**--
krishna

robertdouglass’s picture

Since you are using the latest image.module version, it might be wise to update file.inc as well. If you are really using a file.inc version from May, it is not surprising that it doesn't work with an image.module version from October. I think that there have been file.inc changes and that the image.module has kept up with them in order to stay synchronized with the upcoming 4.5 release.

- Robert Douglass

-----
visit me at www.robshouse.net

robertdouglass’s picture

Since you are using the latest image.module version, it might be wise to update file.inc as well. If you are really using a file.inc version from May, it is not surprising that it doesn't work with an image.module version from October. I think that there have been file.inc changes and that the image.module has kept up with them in order to stay synchronized with the upcoming 4.5 release.

- Robert Douglass

-----
visit me at www.robshouse.net

gkrishna’s picture

I have updated file.inc v,v 1.25 2004/09/17 18:18:04 dries Exp $.

But it didnt solve the problem.

--**--
krishna

gkrishna’s picture

I checked the and it said
warning: rename(images/tmp/tmpthumb_.jpg,images/thumbs/thumb_-710.jpg
): No such file or directory in /var/www/html/modules/image/image.module on line 833.

i checked the directory permissions and its fine (777 for images images/tmp and images/thumbs)

--**--
krishna

robertdouglass’s picture

_image_validate_do_transform

That doesn't seem to fit your page not found problem.

- Robert Douglass

-----
visit me at www.robshouse.net

gkrishna’s picture

_image_validate_do_transform, so any changes/updates to the function required

--**--
krishna

bruno’s picture

Did you give "access images" permission to your users?

gkrishna’s picture

yes, access permissions were already enabled.

--**--
krishna

gkrishna’s picture

well, i have made changes/upgrades to mailhandler module and
"Access denied" bug is fixed. Please update the cvs accordingly,

-- function mailhandler_menu() {
++ function mailhandler_menu($may_cache) {

global $user;

$items = array();

++ if ($may_cache) {
++ $access = user_access('administer mailhandler');

$items[] = array('path' => 'admin/settings/mailhandler',
'title' => t('mailhandler'),
'callback' => 'mailhandler_admin',
- 'access' => user_access('administer mailhandler'));
+ 'access' => $access);
$items[] = array('path' => 'admin/settings/mailhandler/list',
'title' => t('list'),
- 'type' => MENU_DEFAULT_LOCAL_TASK);
+ 'type' => MENU_DEFAULT_LOCAL_TASK,
+ 'access' => $access);
$items[] = array('path' => 'admin/settings/mailhandler/add',
'title' => t('add mailbox'),
- 'type' => MENU_DEFAULT_LOCAL_TASK);
+ 'type' => MENU_LOCAL_TASK,
+ 'access' => $access);
+ }
return $items;
}

sepeck’s picture

perhaps you can post this to the appropriate project
http://drupal.org/project/mailhandler

There the issue can be tracked appropriatly

-Steven Peck
---------
Test site, always start with a test site.
Drupal Best Practices Guide

gkrishna’s picture

I have already submitted the fix here, http://drupal.org/node/11277

thanks
--**--
krishna

wedge’s picture

i think that you might have missed this step in the installation notes:
11. Return to "administer > settings > image" and scroll down to "Gallery Navigation Vocabulary". Select the vocabulary you just created in step 10.