Parse error: syntax error, unexpected ‘[‘ & functions_main.php on line 1114

Im installing my WordPress theme and when I click activate I get the following error:

Parse error: syntax error, unexpected ‘[‘ in E:WebsitesHostingSpacesmov1movies.inwwwrootwp-contentthemeswp_movfunctions_main.php on line 1114

Read More

Anyone have any idea of how fix it?

Related posts

Leave a Reply

1 comment

  1. This is caused by new-style array initialization (“short array syntax”), introduced in PHP 5.4:

    <?php
    $myArray = ["one", "two", "three"];
    
    $myAssociativeArray = [
        "key1" => "value1",
        "key2" => "value2",
    ];
    

    You’ll have to upgrade to PHP 5.4 or better. If you let me know what OS you’re using, I can provide specific instructions.

    More info can be found in the array type manual.