403 Forbidden Localhost Wamp Apache Php

Somethings wrong with your permission setting. Login to your server via SSH. You can login using your terminal. I’ve created a blog about how to connect to your server via SSH if you’re using windows. Run the following commands: chown www-data:www-data -R * # Let Apache be owner find . -type d -exec chmod 755 … Read more

submit form data to wordpress existing database table using my plugin

I think I found out where the problem was. the datatype for check_in and check_out in the database was set to DATETIME Instead of DATE yet the code $check_in_db=date(“Y-m-d”,strtotime($check_in)); was converting it to date. I don’t know why it prevented entry of the other data, but after changing that, it is working now. to use … Read more

WP website showing blank page after moving from subdomain to main domain

you need to see below post to move word-press site one server to other Ref :- WordPress link some simple steps follow and change site location you can update your database using following queries UPDATE wp_options SET option_value = replace(option_value, ‘https://www.oldurl’, ‘https://www.newurl’) WHERE option_name=”home” OR option_name=”siteurl”; UPDATE wp_posts SET guid = replace(guid, ‘https://www.oldurl’,’https://www.newurl’); UPDATE wp_posts … Read more