Jump to content

teraßyte

Clients
  • Posts

    33,395
  • Joined

  • Days Won

    47

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by teraßyte

  1. The ips.ui.uploader.js file is a module, and there's no option to extend modules in the framework as far as I know.

    Let's hope something about it changed in v5. 🙄

     

    Your only option currently is to create a separate module (with a different/similar name), change only the code you need, and add the new module to the HTML.

  2. The same permission problem happens with the fluid view in the forums application loading extra topics. I think it's the same root issue in the code that checks the item permissions and loads them.

    IPS already mentioned they're working on a patch to fix several issues, it should be coming out in the next 1-2 days.

     

  3. There is some unused code in the Authy handler file /system/MFA/Authy/Handler.php in the verifyApiKey() function at the end of the file:

    	public static function verifyApiKey( $val )
    	{
    		try
    		{
    			return \IPS\Http\Url::external("https://api.authy.com/protected/json/app/details")->setQueryString( 'api_key', $val )->request()->get()->decodeJson();
    		}
    		catch ( \IPS\Http\Request\Exception $e )
    		{
    			throw new \DomainException( $e->getMessage() );
    		}
    		if ( !$response['success'] )
    		{
    			throw new \DomainException( $response['message'] );
    		}
    	}

     

    The IF after the TRY/CATCH is never executed, it either returns inside the TRY or throws an exception in the CATCH:

    		if ( !$response['success'] )
    		{
    			throw new \DomainException( $response['message'] );
    		}

    It can be removed.

  4. Trying to use the Code button in the editor on this site throws a JS error in the browser's console:

    Quote

    VM493:2390 Uncaught SyntaxError: Unexpected token 'if'
        at m (root_library.js.gz?v=d815db93211709847832:2:880)
        at Function.globalEval (root_library.js.gz?v=d815db93211709847832:2:3031)
        at text script (root_library.js.gz?v=d815db93211709847832:2:80933)
        at root_library.js.gz?v=d815db93211709847832:2:77288
        at l (root_library.js.gz?v=d815db93211709847832:2:77405)
        at XMLHttpRequest.<anonymous> (root_library.js.gz?v=d815db93211709847832:2:80204)

  5. They moved support from tickets to this forum, if a specific issue requires a more private discussion they'll create a ticket for you.

     

    In this case, it's a known issue:

     

    You can either ask your hosting to disable STRICT MODE for your MySQL server or wait for 4.7.16 (currently in beta) which contains a fix for this issue.

  6. 8 hours ago, Marc Stridgen said:

    Only items listed have been tested to work with the converters. I would think its quite unlikely that the 3.x converter will work with 6.x

    Since it's 3 major versions behind, I wondered if the site has outdated info and if the converter is actually updated for the latest version.

     

    P.S.: @Marc Stridgen The list in the box mentions wpForo 1.9.x, but clicking on it the version available in the dropdown is wpForo 2.1.x. It's just a minor bug, but I thought I'd let you know. 😋

  7. 1 hour ago, Shyrax said:

    As for the SMF, I see that there is an install of SMF on my site somehow. 

    Are you using this SMF forum? Based on your reply, you didn't even know it was there, I guess not. You can ignore/remove it. Or, if there are some posts or other content, and you want to preserve/import it, you can use the converter application after upgrading to 4.7.

     

    As for the steps to upgrade to 4.7, what you're doing won't work because you also need to change the PHP version as I mentioned before. You need to proceed with a manual upgrade. If you follow the instructions in the IPS guide I linked, you'll be okay and the data will be retained.

     

    If you're still uncomfortable doing the manual upgrade yourself, there's also the option of hiring a 3rd party Provider to do the upgrade for you: https://invisioncommunity.com/third-party/providers-directory/

    I'm also on that list if you want to send me a PM.

  8. The conversion page lists Woltlab 3.1.x as available, but I'm not sure if it also works with 6.x: https://invisioncommunity.com/services/convert/

    This migration will redirect your existing URLs
    
    WoltLab Suite (3.1) to Invision Community
    - Convert Profile Field Groups
    - Convert Profile Fields
    - Convert Emoticons
    - Convert Ignored Users
    - Convert Member Groups
    - Convert Members
    - Convert Private Messages
    - Convert Private Message Replies
    
    WoltLab Suite Forum to Forums
    - Convert Forums
    - Convert Topics
    - Convert Posts
    - Convert Attachments

     

    You can check this guide for how to use them: 

     

    If you're not comfortable doing it yourself, it's also possible to hire a 3rd party Provider to do it for you: https://invisioncommunity.com/third-party/providers-directory/

     

    However, as I mentioned above, I'm not sure if the current version of the converters supports the 6.x version. You'll need to wait for IPS to confirm whether that's the case. If 6.x isn't supported, developing a custom converter is the only option.

  9. I'm confused. Are you converting an SMF forum or are you upgrading from an old 4.2.9 version?

    What kind of permission error are you receiving exactly? Without more details, it's impossible to tell what the problem is.

     

    If you're indeed upgrading from 4.2.9 to 4.7.15, you need to perform a manual upgrade: https://invisioncommunity.com/4guides/advanced-options/server-management/install-and-upgrade-r259/#manualupgrade

     

    The auto-upgrade in ACP won't work because you need to change the PHP version along the way.

×
×
  • Create New...