manou
Forum Replies Created
-
Now the email Testing works, but the confirmation mail does not get there.
what I did, changed the gmail account password, and put the new made password in the SMTP Setting of newsletter, and did the send email test again, and I got a test email on my hotmail account.
this is the only thing I did.as Jason Hendriks suggested to Disable Gmail security, that was the first thing I did to Allow less secure apps be able to connect to gmail server.
anyhow I did a test signup and I should get a confirmation email, but I have not got any.Jason Hendriks, regarding the right password for the gmail account that I have, Yes I am sure the password is correct, perhaps I should try another SMTP plugin.
Thank you Jason Hendriks for your help;
well, it seems setting this plugin with Gmail server is not an easy task.
I was reading this post: newsletter plugin and Postman Smtp plugin Jan Dembowski suggested that postman SMTP plugin may work with the newsletter plugin, that is why I tried it,
so Jan Dembowski may be able to help me out with the setting.
do you have experience on using postman plugin with newsletter plugin?
Appreciate your help on this as well.
I tried that as well, I get a long error, it seems same error as the one I sent you.
Thanks for your help;
I sent a text file containing all the error code.this is some part of Error message, I can not post all of them, it will not show up, don’t know why,
anyhow, this error is for setting
SMTP to NO
TLS protocol
port 587SMTP -> get_lines(): $data was “”SMTP -> get_lines(): $str is “220 mx.google.com ESMTP ch2sm2593042wib.18 – gsmtp
“SMTP -> get_lines(): $data is “220 mx.google.com ESMTP ch2sm2593042wib.18 – gsmtp
“SMTP -> FROM SERVER:220 mx.google.com ESMTP ch2sm2593042wib.18 – gsmtp
CLIENT -> SMTP: EHLO naturalxxxxxxxx.is-best.net
SMTP -> get_lines(): $data was “”SMTP -> get_lines(): $str is “250-mx.google.com at your service, [185.27.134.47]
“SMTP -> get_lines(): $data is “250-mx.google.com at your service, [185.27.134.47]
“SMTP -> get_lines(): $data was “250-mx.google.com at your service, [185.27.134.47]
“SMTP -> get_lines(): $str is “250-SIZE 35882577
“SMTP -> get_lines(): $data is “250-mx.google.com at your service, [185.27.134.47]
250-SIZE 35882577
“SMTP -> get_lines(): $data was “250-mx.google.com at your service, [185.27.134.47]
250-SIZE 35882577Thanks for reply;
Yes you are right the SSL protocol is not right, but I have tried all the recommended setting and did not work, so I tried all other setting as well.Thank you for your reply;
I did try that way as well,
set SMTP to No,
protocol: SSL protocol,
Port: 587but getting this error :
SMTP -> ERROR: Failed to connect to server: (0)SMTP connect() failed.Forum: Fixing WordPress
In reply to: how to change the post view to complete in one clickProblem solved,
after searching old posts, eventually found some solution.
in my theme I had two files (search.php, archive.php) that contained
<?php the_excerpt() ?> in them, I changed them to <?php the_content(); ?>now i works,
Forum: Plugins
In reply to: [Resume Submissions & Job Postings] resume submit page not shownproblem solved;
it was my bad,
I did install wp before pointing the domain to our host, so logged in using ip address and userid in the url, so all the setting pointing to ip address not the actual domain, so after the pointing the domain to the host, the plugin did not work, so this was the reason the plugin did not work.thanks for the plugin.
Forum: Everything else WordPress
In reply to: Main category not shownYes, it is working now,
Thanks a lot.Forum: Fixing WordPress
In reply to: how to split the front page post?Thanks for the reply Samboll;
I am not technical, would you mind give more details please.
Forum: Plugins
In reply to: what is the value of $word in wpthanks for reply,
it gives me an error on the function:Parse error: syntax error, unexpected T_FUNCTION in /home/mysite/public_html/wp/testing_loop.php on line 16
line 16 is:
function dd($word, $words ) {here is all:
<? php
function dd($word, $words ) {
echo “<!– $words = “;
print_r($word);
echo ” –>n”;
}
?>thanks.
Forum: Fixing WordPress
In reply to: How to put adsense in the “loop” in the index.php file..thanks davidchait for the reply,
yes I have checked that out, but that is manual,
it would be nice to have one as loop, you could have full rss article and this way you don’t have to come back and insert ad.
can someone help with even a word count, istead of echo the number of words in the end of every post, put a if condition that when words are => than a number then echo a div code or even call a text file to echo.
I know this is way to easy for a good php coder but I have tried to work around a wordcount that already available in wp but as my php is not very good, I could not make it work.thanks
Forum: Fixing WordPress
In reply to: How to put adsense in the “loop” in the index.php file..Hi;
sorry to bring this up again,
I like to try this script,
I don’t know much about php, but here is question I have,
I want to have it this way:
add ad sense after certain amount of word insead of post,the ad should be inserted within content, say after 200 word.
of course I don’t mean ad senes just any ad, and it will be on every post, as long as there is post it will be a insertion, even two or three ads if the content is long enough.anyone willing to help me with code change please?
I have pasted the above code into the index page of theme( default), to just try this out, but becasue the page has already a condion expression “if” so the “endwhile” function will cause the problem, becasue there is one already there, even I took off the endwhile from the above code, but there is an error of that it is :unexpected $end in line 38, which is at the end of the page.
here is the whole code from index file of theme:<?php get_header(); ?>
<div id=”content” class=”narrowcolumn”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<small><?php the_time(‘F jS, Y’) ?> <!– by <?php the_author() ?> –></small>
<div class=”entry”><?php the_content(‘Read the rest of this entry »’); ?><?php $post_counter=0; ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php require(‘post.php’); ?>
<?php
$post_counter++;
if ($post_counter == 2 || $post_counter == 3) { ?>
INSERT ADSENSE CODE HERE
<?php } ?>
<?php endwhile; ?></div>
<p class=”postmetadata”>Posted in <?php the_category(‘, ‘) ?> | <?php edit_post_link(‘Edit’, ”, ‘ | ‘); ?> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?>
</div>
<?php endwhile; ?>
<div class=”navigation”>
<div class=”alignleft”><?php next_posts_link(‘« Previous Entries’) ?></div>
<div class=”alignright”><?php previous_posts_link(‘Next Entries »’) ?></div>
</div>
<?php else : ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.
<?php include (TEMPLATEPATH . “/searchform.php”); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>thanks for any help.