Hey,
I want to upload and install a plugin and the size of the plugin is 6 MB. But as I click the install now button WordPress gives an error.
“The uploaded file exceeds the upload_max_filesize directive in php.ini”.
Please Help.
]]>php.ini
file, increase the memory limit. For example, memory_limit = 128M
2. If you cannot edit or override the system php.ini
file, add php_value memory_limit 128M
to your .htaccess
file.
3. If neither of these work, it’s time to ask your hosting provider to temporarily increase PHP’s memory allocation on your account.
(in the above examples, the limit is set to 128MB)
See also: How do I Import a WordPress WXR file when it says it is too large to import?
]]>/wp-content/plugins/plugin_name
and proceed with the usual installation from the dashboard.
]]>