My YunoHost server
Hardware: old computer, bare metal. not vps
YunoHost version: 11.2.12
I have access to my server : Through SSH and through the webadmin
Are you in a special context or did you perform some particular tweaking on your YunoHost instance ? no
Wordpress: Installed version: 6.5~ynh1
Description of my issue
I am attempting to migrate Wordpress sites from a third party host to my yunohost box by using the “All-in-One WP Migration and Backup” by servmask. All-in-One WP Migration and Backup – WordPress plugin | WordPress.org
When trying to import my WP site into the blank yunohost Wordpress site, I get the following error message: Your file exceeds the maximum upload size for this site: 50 MB. How-to: Increase maximum upload file size:
- Edit .htaccess file
php_value upload_max_filesize 128M php_value post_max_size 128M php_value memory_limit 256M php_value max_execution_time 300 php_value max_input_time 300
OR
- Edit wp-config.php file
@ini_set( ‘upload_max_filesize’ , ‘128M’ ); @ini_set( ‘post_max_size’, ‘128M’); @ini_set( ‘memory_limit’, ‘256M’ ); @ini_set( ‘max_execution_time’, ‘300’ ); @ini_set( ‘max_input_time’, ‘300’ );
When choosing one of the above methods, I need to make the following changes:
upload_max_filesize – set this to a value > than your backup
post_max_size – set this to a value > than your backup
memory_limit – set this to a value > than your backup
max_execution_time – set this to 0 (infinite)
Since Yunohost is different than a standard Wordpress install, I do not know where those files are located within yunohost OS or whether they are the files I need to change. Can anyone help? Merci.