Jump to content

teraßyte

Clients
  • Posts

    33,406
  • 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 content field for custom databases in Pages is a MEDIUMTEXT column, so it can hold ~16,7 million characters. The character count includes also the HTML tags you can't see while using the editor: bold format, italic, font size, colors, etc.

     

    I believe older versions used TEXT until a certain point, though. If that is your case, a TEXT column can hold only 65k characters.

  2. The Nexus support module is installed hidden by default, and there's a code check to add it to the ACP menu on the fly only if it's set as visible. Basically, fresh installations won't even show it since it's been deprecated. I don't remember in which version the change was made, though.

     

    Here's the code I'm talking about in \nexus\Application.php:

    	public function acpMenu()
    	{
    		$menu = parent::acpMenu();
    
    		if( $m = \IPS\Application\Module::get( 'nexus', 'support', 'admin' ) AND $m->visible )
    		{
    			$menu['support'] = array( ... );
    		}
    
    		return $menu;
    
    	}

     

  3. Well, the issue is that you can't connect to MySQL with the account/credentials you've used so far.

    It's not a question of supporting non-WP-specific software or not, the MySQL account simply isn't working. 🤷‍♂️

     

    You could upload a simple PHP script that tries to connect to MySQL with the same account to prove your point I guess. Here's an example code:

    <?php
    $servername = "localhost";
    $username = "username";
    $password = "password";
    $database = "database";
    
    // Create connection
    $conn = new mysqli($servername, $username, $password, $database);
    
    // Check connection
    if ($conn->connect_error) {
        die("Connection failed: " . $conn->connect_error);
    }
    
    echo "Connected successfully";
    
    // Close connection
    $conn->close();

     

    If they still won't help, it's probably time to change hosting... 🙄

×
×
  • Create New...