Recent content by developr

  1. developr

    Moderator Essentials [Paid]

    My mods would like to see rejected users in the mod log.
  2. developr

    [DigitalPoint] PWA

    Hm... I had to reinstall this addon. Now I can see it. Don't know what happened.
  3. developr

    [DigitalPoint] PWA

    Where I can edit the manifest json file? I didn't find any settings.
  4. developr

    Redis View Counters

    What will happen if we have more then 100k threads?
  5. developr

    Fixed Video Insert Problem -> Thumb vs Full

    We hide the full image button and now the user are not able to insert a video in cursor position.
  6. developr

    XF 2.2 Thumbnails Look Like Crap

    We used 800px thumbnails (layer-8 problem) for XF2.1. Since XF2.2 the thumbnails are displayed in 150px, regardless of the settings. Xenforo should consider the size of the thumbnails from the settings, otherwise this setting is useless.
  7. developr

    long query in attachment manager

    Hi there, we have about 3 mio attachments. For MySQL it is not a lot. When I open the attachment manager in the backend it takes about 7 seconds to run the queries. Does exists a solution to speedup this query? The machine has 64gb ram and nvme ssds.
  8. developr

    XF 2.2 batch update forum_type_id

    Hi there, in my forum I have 1000+ forums and I would like to enable questions, poll and articles for every forum. Via SQL? I dont't want to change the settings for every forum manually :-). How can I do it?
  9. developr

    API: no permissions after creating a node

    I had hoped that the bug would be fixed with version 2.2. From my point of view, it makes no difference whether a node is created or updated via the backend or the api. in both cases you want to use the forum immediately and edit or delete it if necessary (like in backend). So from a remote...
  10. developr

    Enable transcoding of all XenForo video to ensure best video upload user experience

    Hi there, the ffmpeg transcoding exists in XFMG already. Why is this option not available for threads? In a test I uploaded the same file of 41,8MB in XFMG and in the forum: Forum: 38,9MB XFMG: 4,5MB !!!
  11. developr

    API: no permissions after creating a node

    Hi there, when I create a node via the endpoint /nodes/ the node is not visible in the frontend and I have no permission to update or delete these node. You are only able to update or delete via API after a forums rebuild. Subforums are only visible after editing some forum manually.
  12. developr

    API endpoint: profile-posts

    Hi there, The parameter "message" is missing in the docs. API endpoint: https://xenforo.com/community/pages/api-endpoints/#route_post_profile_posts_ In the file the required parameters are listed: /** * @api-desc Creates a new profile post. * * @api-in int $user_id <req> The ID...
  13. developr

    XF 2.1 REST API attachment_key_context_wrong

    I found the solution... The mistake was the wrong content-type multipart/form-data in the header which I used to send the POST request. So you have to POST data in attachments/new-key with application/x-www-form-urlencoded and multipart/form-data to POST attachment to attachments/
  14. developr

    XF 2.1 REST API attachment_key_context_wrong

    Hi there, I want to upload files via the Rest Api. If I reply to an existing conversation or post I have to create a new attachment_key with POST to attachments/new-key containing a context. Which format is expected for the context? This code doesn't work. $attach_param = array( 'type' =>...
  15. developr

    XF 2.1 File upload via API

    Try and error... now here is the solution. function apiattach($action,$scope,$post) { $headers = array( 'XF-Api-User: 1', 'XF-Api-Key: '.APIKEY ); $url = 'https://127.0.0.1/api'.$scope; $ch = curl_init(); $headers = array( 'Content-type...
Top Bottom