Category: configs

  • WordPress Post limit.

    WordPress has a 2MB of post limit, Many posts online sates that methods includes plugins, .htaccess, etc.
    Which is not accurate, WordPress don’t use .htaccess except in debugs.

    To change post limit, just change the apache2.conf

    AllowOverride all

    this will allow php.ini to make change to the server.

    Then just edit the php.ini file.

  • PHP.ini mode constants.

    I have a aways thought that I could just use php in the wp-content/themes/themesname/functions.php and just add a line of ini_set() and change them however I like.

    But, then when I see some of my code didn’t work, for some reason there is a note on php.net and says that there is so called INI mode constants

    I kinda find this annoying, once again I need to change my php.ini and my .htaccess.