If the Startup Apps settings in Windows 10 system settings is not saving try using the start-up tab in Task manager instead.
Confirmed issue with some apps in Windows 10
If the Startup Apps settings in Windows 10 system settings is not saving try using the start-up tab in Task manager instead.
Confirmed issue with some apps in Windows 10
Install NFS plugin
vagrant plugin install vagrant-winnfsd
Update Homestead.yaml
folders: - map: ~\projects to: /home/vagrant/Code type: nfs
Reload vagrant
Vagrant reload
May also need
vagrant plugin install vagrant-vbguest
To import sql file into existing database use the code below
mysqldump -u[username] -p[password] [database_name] > [file.sql]
Here is a good resource for enabling cross-origin resource sharing when experiencing errors through javascript.
Blank pages can be seen in wordpress if the X-Frame-Options are set to deny. You can view the problem using browser dev tools and view the console log.
X-Frame-Options are used to indicate whether or not a browser should be allowed to render a page in a frame, iframe or object. Sites can use this to avoid clickjacking attacks.
Changing from DENY to SAMEORIGIN should work in most cases.
Nginx configuration
add_header X-Frame-Options SAMEORIGIN;
Run the following MySql query to generate the new download limit of 100 for all Woocommerce products in WordPress.
UPDATE wp_postmeta SET meta_value = "100" WHERE meta_key = "_download_limit"
If you get the error ‘http error’ while uploading media:
1.Edit nginx.conf
nano /etc/nginx/nginx.conf
and add to the http block
client_max_body_size 100m;
2.Edit PHP config
nano /etc/php5/fpm/php.ini
and increase upload sizes
post_max_size = 100M upload_max_filesize = 100M