Note that there are some explanatory texts on larger screens.

plurals
  1. POsorl-thumbnail not working
    primarykey
    data
    text
    <p>I have been trying for several hours now to get sorl-thumbnail working, but it just won't work.</p> <p>The hard part is that it's not showing errors so I have no idea whats wrong. I followed the instructions to install it.</p> <p>My full code can be found here: <a href="https://github.com/samos123/Samos-IT/tree/master/samosit" rel="nofollow noreferrer">https://github.com/samos123/Samos-IT/tree/master/samosit</a></p> <p>template: <a href="https://github.com/samos123/Samos-IT/blob/master/samosit/templates/projects/project_detail.html" rel="nofollow noreferrer">https://github.com/samos123/Samos-IT/blob/master/samosit/templates/projects/project_detail.html</a></p> <pre><code>{% load thumbnail %} {% thumbnail object.image "100x100" crop="center" as im %} &lt;img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}"&gt; {% endthumbnail %} </code></pre> <p>view: <a href="https://github.com/samos123/Samos-IT/blob/master/samosit/projects/views.py" rel="nofollow noreferrer">https://github.com/samos123/Samos-IT/blob/master/samosit/projects/views.py</a></p> <pre><code>def detail(request, project_id, slug): project = get_object_or_404(Project, pk=project_id) imageurl = "/media/"+project.image.url return render_to_response('projects/project_detail.html', {'object' : project, 'imageurl' : imageurl}, context_instance=RequestContext(request)) </code></pre> <p>Thanks to <a href="https://stackoverflow.com/users/521814/sorl">sorl</a> I can now finally see what the problem is. This seems to be the error: See the full error here: <a href="http://pastebin.com/0Yddt10N" rel="nofollow noreferrer">http://pastebin.com/0Yddt10N</a> </p> <pre><code>TemplateSyntaxError at /projects/2/test Caught ValueError while rendering: timestamp out of range for platform time_t Request Method: GET Request URL: http://localhost:8000/projects/2/test Django Version: 1.2.3 Exception Type: TemplateSyntaxError Exception Value: Caught ValueError while rendering: timestamp out of range for platform time_t Exception Location: /usr/local/lib/python2.6/dist-packages/django/core/cache/backends/db.py in _base_set, line 83 Python Executable: /usr/bin/python2.6 Python Version: 2.6.6 Python Path: ['/home/samos/workspace/Samos-IT/samosit', '/home/samos/.eclipse/org.eclipse.platform_3.5.0_155965261/plugins/org.python.pydev.debug_1.6.3.2010100422/pysrc', '/usr/local/lib/python2.6/dist-packages/psycopg2-2.3.1-py2.6-linux-i686.egg', '/usr/lib/pymodules/python2.6', '/usr/lib/pymodules/python2.6/gtk-2.0', '/usr/lib/python2.6', '/usr/lib/python2.6/dist-packages', '/usr/lib/python2.6/dist-packages/PIL', '/usr/lib/python2.6/dist-packages/gst-0.10', '/usr/lib/python2.6/dist-packages/gtk-2.0', '/usr/lib/python2.6/lib-dynload', '/usr/lib/python2.6/lib-old', '/usr/lib/python2.6/lib-tk', '/usr/lib/python2.6/plat-linux2', '/usr/local/lib/python2.6/dist-packages', '/usr/local/lib/python2.6/dist-packages/virtualenv-1.5.1-py2.6.egg', '/usr/local/lib/python2.6/dist-packages/yolk-0.4.1-py2.6.egg', '/usr/lib/panda3d', '/usr/share/panda3d'] Server time: Tue, 7 Dec 2010 11:28:56 -0600 </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload