johnibom
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: No Notification Emailscontact your Hosting and state that even PHP MAIL is not sending emails, so something wrong with the server not withe WP.
Forum: Fixing WordPress
In reply to: No Results shown in any of my categoriesI think you’ve logged in as admin!
Forum: Fixing WordPress
In reply to: No Notification Emailslastly try this code:
replace the line where it says:
echo mail($to,$subject,$message);
REPLACE WITH:
echo mail($to,$subject,$message, null, ‘-fwebmaster@YOUR-DOMAIN.com’);Report if you still unable to receive the mail?
Forum: Fixing WordPress
In reply to: No Notification Emailswell, it’s your server problem,
You see the “1” means it Returns TRUE if the mail was successfully accepted for delivery, FALSE or 0 otherwise.It is important to note that just because the mail was accepted for delivery, it does NOT mean the mail will actually reach the intended destination.
Kindly contact your Hosting/System Admin about this issue.
Forum: Fixing WordPress
In reply to: No Notification Emailsplease check your email spam folder!
Forum: Fixing WordPress
In reply to: Problem with Category and ArchivingUse this code at the top of the query_post code:
<?php $wp_my_archives=wp_get_archives(‘type=postbypost&limit=5&echo=0’); ?>
so with the above code the archives post are stored into the string: $wp_my_archives
you can place this string where you used the wp_get_archives();
<?php echo $wp_my_archives;?>Thanks
Forum: Fixing WordPress
In reply to: Blank Screen on Log-Inplease mark the issue resolved.. 🙂
Forum: Fixing WordPress
In reply to: One more timein browser..
Please JUST FTP the WORDPRESS FOLDER and let me know the URL
Forum: Fixing WordPress
In reply to: No Results shown in any of my categoriesI only see 29 days 18 hours 58 minutes remaining!
Forum: Fixing WordPress
In reply to: Code DuplicationThe plugins are causing this issue..
You should deactivate and then reactive the ALL IN ONE SEO plugin!Forum: Fixing WordPress
In reply to: No Notification Emailsdoes this a regular email?
have you checked the mails into the spam folder?
I want you to create a test page on your server.. (NOT IN WORDPRESS)Open an editor like notepad and put the following code..
<?php
$to=’YOUR-EMAIL@DOMAIN.com’; //Put your email here
$subject=”testing phpmail”;
$message=”Hello World”;
echo mail($to,$subject,$message);echo “
.Check your inbox and quote what you see before this line”;
?>SAVE IT WITH “testmailer.php” and FTP it on the root of your hosting..
Forum: Fixing WordPress
In reply to: My post ID's are are increased by 3 or 4 in every new post I makeYeah, that’s true!
Forum: Fixing WordPress
In reply to: Code Duplicationpost your URL
Forum: Fixing WordPress
In reply to: Link not visible on pageAHH!! I thought you must be known of BASIC HTML.. lol!
anyways, ALL THE BESTForum: Fixing WordPress
In reply to: No Notification EmailsAssume my last msg null..
First of all >> go to the Settings
Check An administrator must always approve the comment!and make a test comment to see if you receive email..