Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
M

midm

@midm
About
Posts
4
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • baserow error on file column upload
    M midm

    @nebulon Yes there is a "file" column type on Baserow, to upload and store files. This is where I had this crash.

    Baserow

  • paperless-ngx tag bug since 1.4.0
    M midm

    Hello,

    I noticed 1.4.0 version of paperless-ngx introduced a bug in bulk-editing.

    When documents are selected, if they have a common tag, it should be ticked here :
    131fa1af8780286019b02fd4d68f2c4f2d9012c19ddf1ffdb3458fd62598ae9d.png

    Same goes for Document type and Correspondant. Since 1.4.0 it is never ticked, preventing any removal of tags in bulk.

    Thanks

    Paperless-ngx

  • paperless-ngx classifier error
    M midm

    Hello,

    I did a fresh paperless-ngx install and it seems the classifier cannot start, I have this error :

    [2022-12-28 14:47:49,172] [WARNING] [paperless.tasks] Classifier error: 
    **********************************************************************
      Resource stopwords not found.
      Please use the NLTK Downloader to obtain the resource:
    
      >>> import nltk
      >>> nltk.download('stopwords')
      
      For more information see: https://www.nltk.org/data.html
    
      Attempted to load corpora/stopwords
    
      Searched in:
        - '/app/data/data/nltk'
    
    Paperless-ngx

  • baserow error on file column upload
    M midm

    Hello,

    On a fresh install of Cloudron, I'm unable to upload files to Baserow, with followings error in logs :

    Dec 28 00:08:13 ERROR 2022-12-27 23:08:13,289 django.request.log_response:224- Internal Server Error: /api/user-files/upload-file/
    Dec 28 00:08:13 Traceback (most recent call last):
    Dec 28 00:08:13 File "/app/code/env/lib/python3.10/site-packages/asgiref/sync.py", line 482, in thread_handler
    Dec 28 00:08:13 raise exc_info[1]
    Dec 28 00:08:13 File "/app/code/env/lib/python3.10/site-packages/django/core/handlers/exception.py", line 38, in inner
    Dec 28 00:08:13 response = await get_response(request)
    Dec 28 00:08:13 File "/app/code/env/lib/python3.10/site-packages/django/core/handlers/base.py", line 233, in _get_response_async
    Dec 28 00:08:13 response = await wrapped_callback(request, *callback_args, **callback_kwargs)
    Dec 28 00:08:13 File "/app/code/env/lib/python3.10/site-packages/asgiref/sync.py", line 444, in __call__
    Dec 28 00:08:13 ret = await asyncio.wait_for(future, timeout=None)
    Dec 28 00:08:13 File "/usr/lib/python3.10/asyncio/tasks.py", line 408, in wait_for
    Dec 28 00:08:13 return await fut
    Dec 28 00:08:13 File "/app/code/env/lib/python3.10/site-packages/asgiref/current_thread_executor.py", line 22, in run
    Dec 28 00:08:13 result = self.fn(*self.args, **self.kwargs)
    Dec 28 00:08:13 File "/app/code/env/lib/python3.10/site-packages/asgiref/sync.py", line 486, in thread_handler
    Dec 28 00:08:13 return func(*args, **kwargs)
    Dec 28 00:08:13 File "/app/code/env/lib/python3.10/site-packages/django/views/decorators/csrf.py", line 54, in wrapped_view
    Dec 28 00:08:13 return view_func(*args, **kwargs)
    Dec 28 00:08:13 File "/app/code/env/lib/python3.10/site-packages/django/views/generic/base.py", line 70, in view
    Dec 28 00:08:13 return self.dispatch(request, *args, **kwargs)
    Dec 28 00:08:13 File "/app/code/env/lib/python3.10/site-packages/rest_framework/views.py", line 509, in dispatch
    Dec 28 00:08:13 response = self.handle_exception(exc)
    Dec 28 00:08:13 File "/app/code/env/lib/python3.10/site-packages/rest_framework/views.py", line 469, in handle_exception
    Dec 28 00:08:13 self.raise_uncaught_exception(exc)
    Dec 28 00:08:13 File "/app/code/env/lib/python3.10/site-packages/rest_framework/views.py", line 480, in raise_uncaught_exception
    Dec 28 00:08:13 raise exc
    Dec 28 00:08:13 File "/app/code/env/lib/python3.10/site-packages/rest_framework/views.py", line 506, in dispatch
    Dec 28 00:08:13 response = handler(request, *args, **kwargs)
    Dec 28 00:08:13 File "/usr/lib/python3.10/contextlib.py", line 79, in inner
    Dec 28 00:08:13 return func(*args, **kwds)
    Dec 28 00:08:13 File "/app/code/backend/src/baserow/api/decorators.py", line 90, in func_wrapper
    Dec 28 00:08:13 return func(*args, **kwargs)
    Dec 28 00:08:13 File "/app/code/backend/src/baserow/api/user_files/views.py", line 61, in post
    Dec 28 00:08:13 user_file = UserFileHandler().upload_user_file(request.user, file.name, file)
    Dec 28 00:08:13 File "/app/code/backend/src/baserow/core/user_files/handler.py", line 257, in upload_user_file
    Dec 28 00:08:13 storage.save(full_path, stream)
    Dec 28 00:08:13 File "/app/code/env/lib/python3.10/site-packages/django/core/files/storage.py", line 54, in save
    Dec 28 00:08:13 name = self._save(name, content)
    Dec 28 00:08:13 File "/app/code/backend/src/baserow/core/storage.py", line 8, in _save
    Dec 28 00:08:13 return super()._save(name, content)
    Dec 28 00:08:13 File "/app/code/env/lib/python3.10/site-packages/django/core/files/storage.py", line 279, in _save
    Dec 28 00:08:13 fd = os.open(full_path, self.OS_OPEN_FLAGS, 0o666)
    Dec 28 00:08:13 PermissionError: [Errno 13] Permission denied: '/app/data/media/user_files/sIjCc9JiqO2tnF3n7kcWdLaEJ3o1Geuv_a6e867bf79213cf4a792c688bfde862914c9faa44e1cb02e3c8c03ad89efc573.pdf'
    
    Baserow
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search