Recent content by ForumDevs

  1. ForumDevs

    Confirmed IndexNow error: [500] An unexpected error occurred

    We are also getting the same error. Maybe @Chris D can have a look at this.
  2. ForumDevs

    [OzzModz] Force Users To Read Threads

    Ozzy, on XF 2.3.6 we still get this error even using the latest addon version: InvalidArgumentException: Class xenMade\STFRT\Clear does not match formatter pattern %s\%s\View\%s src/XF.php:1437 Stack trace #0 src/XF/App.php(1906): XF::stringToClass('xenMade\\STFRT\\C...', '%s\\%s\\View\\%s'...
  3. ForumDevs

    Graphic Se busca diseñador gráfico y programador

    We can do the job without any problems. I'll send you a private message.
  4. ForumDevs

    XF 2.3 Issue Installing Steam Authentication & Integration Add-on – ZIP Archive Not Recognized

    Yes, of course. Converting a XenForo 1.x add-on to be compatible with XenForo 2.x requires several modifications due to significant architectural changes (it is not as simple as editing a configuration file). The differences between the two versions are substantial, requiring code refactoring...
  5. ForumDevs

    vbulletin 5.7.5 to XENFORO migration

    We can handle all the points you mentioned and ensure a smooth migration to XenForo. Additionally, we might be able to recover the romanian diacritics that were lost (we just need to check your database). If you're interested, we can discuss the details by private message.
  6. ForumDevs

    XF 2.3 Message Entry box slow to load on XF sites

    Have you tried opening the site in incognito mode? Since the issue only happens on your desktop and not on mobile, it could be something related to your browser setup. If the problem still occurs in incognito mode try opening the developer tools (press F12 in Brave/Edge) and check the console...
  7. ForumDevs

    Translate phrases! Hard work!

    Have you tried exporting the phrases from the add-on as a .xml file, sending it to ChatGPT, and getting back the translated .xml file?
  8. ForumDevs

    XF 2.2 How to Remove "Robots" from Members Online?

    Using nth-of-type(4) isn't the best approach because it hides the third tab no matter what it is. If more tabs are added or the order changes, it could end up hiding the wrong tab.
  9. ForumDevs

    XF 2.2 How to Remove "Robots" from Members Online?

    Sorry for reviving this old thread. We were just looking for something similar. The conditional should be added between this line in the online_list template: <a href="{{ link('online', null, {'type': 'robot'}) }}" class="tabs-tab {{ $typeLimit == 'robot' ? 'is-active' : '' }}">{{...
  10. ForumDevs

    Style Looking for someone to install and setup my forums style

    Hi there, Are you still looking for someone?
  11. ForumDevs

    [OzzModz] Advanced Forms [Deleted]

    Thank you. We were able to successfully upgrade the addon. Thank you for fixing it so quickly.
  12. ForumDevs

    [OzzModz] Advanced Forms [Deleted]

    The new version triggered errors when it was upgraded from 2.2.5 Patch Level 1 version: Stack trace #0 src/XF/AddOn/StepRunnerUpgradeTrait.php(124): Snog\Forms\Setup->upgrade2020600Step1(Array) #1 src/XF/AddOn/StepRunnerUpgradeTrait.php(73): Snog\Forms\Setup->upgradeStepRunner(2020600, 1...
  13. ForumDevs

    XF 2.2 Custom User Title Badges

    Sorry for reviving an old thread. We were recently working on similar styling. Here it is: /**************LEGENDARY MEMBERS***************/ .userBanner.LegenMember{ background-image: url(https://lh3.googleusercontent.com/pw/AL9nZEU3zi0ayFa); display: block; background-size: 100px; //...
  14. ForumDevs

    XF 2.3 Unable to Connect to Managed MYSQL Digital Ocean via SSL

    Humm, the "Cannot connect to MySQL using SSL" error typically indicates an issue with the client configuration. Can you try to set the full path of the CA certificate? It should look like this: mysql -u username -p -h your-db-host --ssl-ca=/path/to/ca-certificate.crt --ssl-mode=REQUIRED
  15. ForumDevs

    XF 2.3 Unable to Connect to Managed MYSQL Digital Ocean via SSL

    If you are sure that CA certificate is the correct for the database instance you should verify if SSL is enabled in MySQL: mysql -u root -p SHOW VARIABLES LIKE '%ssl%';
Back
Top Bottom