wordpressmikeuk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: can’t create directory@jdembowski If you don’t have anything useful to add to the users support request, please don’t respond at all. I am not using the forums to solicit contacting people. Are you just trying to get your stats up?
Forum: Fixing WordPress
In reply to: Integrating a booking manager and payment gatewayI have created quite a few online booking systems for WordPress and I would recommend the following plugins:
WooCommerce (FREE)
WooCommerce Bookings (PAID)
WooCommerce Subscriptions (PAID)
Stripe for WooCommerceIf you have any problems with integration just drop me a message over on Twitter and I will guide you through the process. It’s not so difficult, just time consuming.
Forum: Fixing WordPress
In reply to: can’t create directoryYou have a couple of different options available to you;
1) Speak to your hosting provider directly and have them set the correct file structure permissions. Depending upon your host they should be able to resolve this issue for you in a few seconds flat. It’s an easy task!
2) Login via SSH and perform the following commands. (Make sure you’re in the WordPress root directory – the same directory that contains the wp-config.php file).
CentOS users should do:
sudo chown apache:apache -R *
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;Ubuntu / Debian users should do:
sudo chown www-data:www-data -R *
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;3) Login via FTP and follow the actions on the link below. I would guide you through it here, but that post will do the job.
http://www.wpbeginner.com/beginners-guide/how-to-fix-file-and-folder-permissions-error-in-wordpress/
[ redacted ]
- This reply was modified 8 years, 10 months ago by Jan Dembowski.
- This reply was modified 8 years, 10 months ago by Jan Dembowski. Reason: Removed contact info