Recent content by CyberAP

  1. CyberAP

    metro [Deleted]

    This resource has been removed and is no longer available. The following reason was provided:
  2. CyberAP

    Velour [Deleted]

    This resource has been removed and is no longer available. The following reason was provided:
  3. CyberAP

    XF 2.1 REST API

    Does it have frontend overhead when using only REST API?
  4. CyberAP

    XF 1.5 How to check if a visitor follows a user within member_view template?

    There's only a <xen:follow /> tag, but I need to conditionally change DOM depending on whether visitor follows a user or not. There's an opposite check for user: $user.isFollowingVisitor, I did not found the same check for visitor. Any suggestions?
  5. CyberAP

    XF 2.0 An exception occurred: [XF\Db\Exception] MySQL query error [126]: Incorrect key file for table '.\xf2\xf_session_admin.MYI';

    I believe MySQL has a built-in mechanism for table repair, PHPMyAdmin just provides a simple interface for it.
  6. CyberAP

    Whisper 2

    Update for XF2 is not planned.
  7. CyberAP

    Add-on [PAID] Convert old LeafNet blog (XF 1.x) records to threads

    Thanks to @NixFifty for the awesome service!
  8. CyberAP

    Add-on [PAID] Convert old LeafNet blog (XF 1.x) records to threads

    Looking for a developer who can convert LeavNet blog records to regular XenForo threads. You don't need to alter the add-on itself, just parse DB and create threads. Forum you'll be working with: https://www.lifecz.ru/blogs/ Cost: $50.
  9. CyberAP

    Lack of interest rel=bookmark for post permalinks

    It'd be a nice QoL improvement to include bookmark in a rel attribute for post permalinks. The meaning of that attribute:
  10. CyberAP

    XF 2.0 Running JS on the FilterMenu, closes the menu?

    A possible solution could be to place .pac-container inside your filter on geocode:result event. $(document).on('geocode:result', function(event){ $('body > .pac-container').appendTo('.menu:visible'); }); That will break positioning, so you'll have to fix it yourself unfortunately.
  11. CyberAP

    XF 2.0 add a new family font to editor

    Just found out that you can use any font you like.
  12. CyberAP

    XF 2.0 XENFORO 2.0 REST API HELP

    XenForo 2 does not provide REST API, neither is XenForo 1. Your REST API was implemented by an add-on which has to be updated (and more likely rewritten) by its developer in order to work on 2.0.
  13. CyberAP

    XF 2.0 Downsides to excessive use of cookies?

    That probably means that you don't store anything on a client but instead do it all on the server-side tracked by user_id.
  14. CyberAP

    XF 2.0 Downsides to excessive use of cookies?

    Cookies are sent with each request, event if they're not needed. I'd use Local Storage for that purpose and depending on how you retrieve that page send this data through JSON or GET\POST request body. If you don't need to store that data, using just request string would be fine I think (and...
  15. CyberAP

    XF 2.0 thread.post_date in PAGE_CONTAINER Template

    Use <xf:page name="someVar" /> tag in thread_view template, it's an analogue of <xen:container var="someVar" /> from XF1.
Top Bottom