inline image?

General Discussion

Suggested Topics


  • 1 Votes
    3 Posts
    119 Views

    This is fixed and will be available in our next release.

  • 0 Votes
    5 Posts
    4k Views

    @baris Thank you 👍

  • 0 Votes
    3 Posts
    918 Views

    My friend managed to do a bottched job with adding this code into the "Custom Javascript" section:

    $("link[rel='icon']").attr("href", "/assets/uploads/system/favicon.ico?v=1515805137459");

    Anyway here's the picture:
    0_1515999429639_Untitled-1.png

    I had to use PNG as ICO isn't supported

  • 0 Votes
    3 Posts
    1k Views

    Let's limit discussion to those topics 😄

  • 0 Votes
    8 Posts
    3k Views

    I have the same issue:

    if i press the smiley button in the editor, all smileys get displayed correctly. If I add one to the post though, they wont get displayed correctly:

    the url to the image is always the localhost url.

    my config.json:

    { "url": "http://localhost", "port": ["4567", "4568", "4569"], "secret": "cce14e14-b1f8-4e2d-b859-3885564a4e6e", "database": "redis", "redis": { "host": "127.0.0.1", "port": "6379", "password": "", "database": "0" } }

    my nginx config: (path and server_name changed)

    upstream io_nodes { ip_hash; server 127.0.0.1:4567; server 127.0.0.1:4568; server 127.0.0.1:4569; } server { listen 80; server_name nodebb.example.org; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_redirect off; # Socket.io Support proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; gzip on; gzip_min_length 1000; gzip_proxied off; gzip_types text/plain application/xml application/x-javascript text/css application/json; location @nodebb { proxy_pass http://io_nodes; } location ~ ^/(images|language|sounds|templates|uploads|vendor|src\/modules|nodebb\.min\.js|stylesheet\.css|admin\.css) { root /path/to/nodebb/public/; try_files $uri $uri/ @nodebb; } location / { proxy_pass http://io_nodes; } }