Announcement

Collapse
No announcement yet.

Theme installation

Collapse
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Theme installation

    Hi!

    I upload Planify theme through Wordpress admin and I get a message that the size of a file is over the meaning upload_max_filesize which is set in php.ini.
    What and where should i do?


  • #2
    Hi,
    Please try one of following methods:
    1. Create “php.ini” upload your root folder
    upload_max_filesize = 64M
    (for php 5: Create a new file, call it ”.user.ini”)
    upload_max_filesize = 64M

    2. Via ”.htaccess”
    php_value upload_max_filesize 64M

    3.by “wp-config.php”
    @ini_set( ' upload_max_filesize', '64M' );

    4. Still unable to change, please contact your host and ask them for changing.
    Best regards.

    Comment

    Working...
    X