Jump to content

zoeck

Members
  • Posts

    382
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by zoeck

  1. Check your config file for something like this:

    $config->prependTemplateFile = '_init.php';
    $config->appendTemplateFile = '_main.php';

    I think this will be the line with the _main.php 😉 

    This is a standard configuration in the Regular Site Profile

    • Like 2
  2. 3 hours ago, wumbo said:

    So in short: How do I upgrade ProFields: Table?

    Renew the Profields licence (Store -> Manage Purchases, it costs $39) with the account that bought the licence at the time, and then go to the Profields Board and download the new version 😉 

    If there is no possibility to renew, you have to contact ryan, he will unlock it.

    • Like 1
  3. You have too hook the Lister:

    $wire->addHookBefore('ProcessPageLister::execute', function(HookEvent $event) {
    	/* @var ProcessPageLister $lister */
    	$lister = $event->object;
    
    	// I'm not sure, but the parent of the "Search Lister" has the ID 0?
    	if($lister->parent->id !== 0) return;
    
    	// Set sort
    	$lister->defaultSort = 'title';
    	bd("Changed Search Sort");
    });

     

    • Like 1
  4. 7 hours ago, sharvey2023 said:

    and all of the settings in the Cpanel should be correct and the PHP 8.1 settings have all be maxed out. 

    Did you increase the PHP settings post_max_size and upload_max_filesize or only one of them?
    I think the normal setting is 32MB

×
×
  • Create New...