WebBuddy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress AWS Bitnami – Site down after instance rebootI can see your website on my side, hopefully the issue has been resolved. By the way, it is loading pretty fast here in Singapore.
Forum: Fixing WordPress
In reply to: I can’t access wp-admin or my siteI would suggest you contact your hosting provider on this. If not, try to restore the backup copy of your website before the upgrade. Perhaps there is something wrong in the midst of the update.
Forum: Fixing WordPress
In reply to: Admin lost access to adminAre there any administrators account currently in your database (in the users table)? If so, you just need to update any admin’s password (use MD5 format) in phpmyadmin then login using the new password.
Forum: Fixing WordPress
In reply to: Can not upload picturesFirst, you want to make sure that you can still upload images to your wordpress. Start by uploading a small sized image and see if it works. If it fails too, it means your wordpress is blocking the upload, do contact your hosting provider.
If you can upload small sized images, it could mean that your server disk space is running out. Do check how much space you have.
Hope this helps.
Forum: Fixing WordPress
In reply to: Can not upload picturesMay I know what is the error message you see?
Thank you for your reply, Carlos.
I managed to find a custom validation article on contact form 7 and it teaches me to code the following to check if end date is earlier than the start date. Just posting here in case in future others may need it:
// to check if form end date is earlier than start date add_filter( 'wpcf7_validate_text', 'custom_email_confirmation_validation_filter', 20, 2 ); function custom_email_confirmation_validation_filter( $result, $tag ) { if ( 'enddate' == $tag->name ) { $dateTimestamp1 = strtotime($_POST['startdate']); $dateTimestamp2 = strtotime($_POST['enddate']); if ( $dateTimestamp1 > $dateTimestamp2) { $result->invalidate( $tag, "End date cannot be earlier than Start date!" ); } } return $result; }The article for reference is at – https://contactform7.com/2015/03/28/custom-validation/
Forum: Plugins
In reply to: [WooCommerce] Not getting new order notification by emailHi,
You may want to check yoru spam fodler first and see if the email is there.Second (if the email is not in your spam folder), troubleshoot by installing the plugin – https://wordpress.org/plugins/wp-mail-logging/ – and do a test order, this is to test if wordpress sends out the email.
Hopefully from there, you will be able to find the cause. Hope this helps.
Forum: Fixing WordPress
In reply to: Site is not available over httpsHi,
The only way is to change the url back. If you have access to your phpmyadmin, you can do that. Or you can do it via the config.php method. Refer to the following article for the steps:
– https://kinsta.com/knowledgebase/change-wordpress-url/Hope this helps!
Forum: Plugins
In reply to: [Contact Form 7] Advice on using contact form 7 hookThank you so much!
Forum: Fixing WordPress
In reply to: Advice on using contact form 7 hookThank you for your advice, I will post it there.
Forum: Fixing WordPress
In reply to: How do I get rid of line?Sorry… there should be a . before the code, it should be like:
.entry-header::after { border-bottom: none; }Hope it works now.
Forum: Fixing WordPress
In reply to: How do I get rid of line?Hi,
You can try to see if the following codes work (in the additional css section):entry-header::after { border-bottom: none; }Forum: Fixing WordPress
In reply to: Email for Admin Access UnknownI would suggest to get into your server cpanel and edit the password from there so as to minimize disturbance to other personnels. Like what t-p has suggested in the first point. Hope this helps.
Forum: Fixing WordPress
In reply to: Site Down and Up Multiple timesLike what James has suggested, uptimerobot has helped me log all the downtime. If your host still can’t rectify the issues after you send them future logs, then I suggest you change the hosting company.
Forum: Fixing WordPress
In reply to: Page viewsThe views might have been counted by some plugins, you need to find that plugin and see if there’s any settings to exclude admin users. If not, contact the plugin developers. Hope this helps.