Wordpress Plugin for php.ini

Hey guys, is there a plugin for bumping up the file size when I upload a theme to Wordpress? Currently it is at 2mb, but I need it to be 4 mb. I can’t find the php.ini file inside the servers directory to change it so that is why I am asking if there is a plugin I can install that will do this for me?

Thanks!

Hey, just create a new text file and call it php.ini

In there, paste this:

upload_max_filesize = 4M
post_max_size = 4M

Upload it to WordPress directory and you should be fine.

  1. What program do I use to create this?
  2. Where exactly do I place this file in the directory?

If I create this in a text file, then how does it know it is a .ini file? DO I just change the .rtf to a .ini?

cac003 said
  1. What program do I use to create this?
  2. Where exactly do I place this file in the directory?
  1. You use a simple text editor, like Notepad
  2. You place it in the root folder of your WordPress directory, where wp-config.php file resides
  3. Just create a file and then rename it to .ini extension

Excellent Thank you!