Download & Extend

Some inserted images not found. Possibly manually deleted or other internal error occured.

Project:Flickrstickr
Version:5.x-1.x-dev
Component:Miscellaneous
Category:support request
Priority:normal
Assigned:Unassigned
Status:closed (cannot reproduce)

Issue Summary

Hi, does anyone know what this message means and how I can make it go away?
I've checked, and the images haven't been deleted.

I'm using the latest version of drupal, and upgraded the module to the instructions here http://drupal.org/node/129235
Any input would be much appreciated. Thanks!

Comments

#1

Version:master» 5.x-1.x-dev
Status:active» postponed (maintainer needs more info)

Do you still have the issue with the latest dev version of this module?

#2

well I got the same problem here too. Any updates on this?

#3

Did you use the patch or the dev version?

#4

Dev version. I found my problem. It was around line 383:

$result = db_query("SELECT filepath, filename FROM {files} WHERE nid='%d' AND filepath LIKE '%s%'", $nid, $this_file);

it needed an additional % at the LIKE '%s%' as I have done below:

$result = db_query("SELECT filepath, filename FROM {files} WHERE nid='%d' AND filepath LIKE '%%s%'", $nid, $this_file);

Is there a better version to use? I found and fixed several issues with the dev version. I was planning on writing a comment on how to fix all of the issues I found. Maybe I should hold off if they already been fixed in a patch?

My issues: API Key, "possibly manually deleted.." error, and a z-index issue where the undocked popup was being overlapped.
There's another issue that I haven't fixed yet, ( I did a round about fixed, probably not appropriate), where the css file doesn't load up in the regular view mode.

#5

No the dev version is the newest version and it overrules the patch. So it would be great if you could contribute your findings, that would be great!

#6

Status:postponed (maintainer needs more info)» closed (cannot reproduce)