Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)
  • Thread Starter strom

    (@strom)

    Just in case anyone has an idea here, please read the previous posts. I cannot get WP to send email notifications after posts. I have edited my php.ini file so that any call for an SMTP server routes to my available SMTP server, the “comments_notify” option is set to True, and a phpbb forum I have running on the same server sends mail through the external server as expected. If anyone with php configuration experience reads this…Help!

    Thread Starter strom

    (@strom)

    I’ll take another stab at asking this question–is it possible to order the category list in a defined order rather than alphabetically or by category ID number? Thanks!

    strom

    (@strom)

    I’ve also used this to add a sidebar containing the last X number of posts. However, is it possible to also add the date after the title, in the format mm/dd/yr?

    Thread Starter strom

    (@strom)

    Oh geesh, yes there was a space before the “<?php” ! Thanks!

    Thread Starter strom

    (@strom)

    I found it! (by trial and error and finding the variable listings for archives in the template_functions.php file.
    is restored to the index page hack by adding:
    <pre>
    if (isset($m)) $cat = ”;
    </pre>
    Therefore the entire code for the my_hacks.php file is:
    <pre>
    if (!isset($cat) && !isset($p)) $cat = 1;
    if (isset($s)) $cat = ”;
    if (isset($m)) $cat = ”;
    </pre>
    Now if I could just figure out my emailing problem….(http://wordpress.org/support/3/3042), I’m good to go.

    Thread Starter strom

    (@strom)

    Yes I have all of the notify settings turned on. Is there a file within the WP directly that hard codes the external server (like phpbb)? If there is and it’s set to local or something, this would explain the problem. I haven’t been able to find any such line though.

    Thread Starter strom

    (@strom)

    I’m still hoping someone can help me in setting up WP and php to send mail through a separate mail server. It was suggested that I edit my php.ini file. I did by adding
    <pre>
    SMTP = mailserver.com
    </pre>
    and in looking at what’s active in my php setup, this addition “takes” after restarting the server. However, emails (such as those sent after comments are posted) are not sent. I seem to be missing something here; probably trivial but I’m not getting it! Thanks.

    Thread Starter strom

    (@strom)

    I’m hoping someone can tell us. I don’t know enough about WP or php; I was just trying to copy the syntax used for the search variable.

    Thread Starter strom

    (@strom)

    OK, now I find out that with the above lines are inserted in “my_hacks.php”, when archives are selected only the posts present in category 1 are displayed. I tried adding a few permutations such as:
    <pre>
    if (isset($archives)) $cat = ”;
    if (isset($a)) $cat = ”;
    </pre>
    but with no luck. I’ve searched through all the files looking for any other string that calls “archives” but can’t find anything obvious. Help!

    I found (through help here: http://wordpress.org/support/3/2980), that to make sure “search” works for all categories, add this code after the line above
    <pre>
    if (isset($s)) $cat = ”;
    </pre>
    Otherwise,only the first category will be searched.

    Thread Starter strom

    (@strom)

    Hi allusion
    I’m having a bit of trouble determining the right line(s) to add in the php.ini
    I’ve tried the following, singly and in various combinations, including all 3 (I do restart the server everytime, and when I check the php configurations, it shows that these are being recognized):
    sendmail_from = mailserver.dom
    sendmail_path = mailserver.dom
    SMTP = mailserver.dom
    What is this clueless person missing?

    Any luck with this metalious?

    Thread Starter strom

    (@strom)

    I was hoping selecting “private” in the edit menu for a particular post (in my proposed “private” category) would hide the post from visitors who are not logged in. Unfortunately (for me) that just hides the post from everybody, including the admin.

Viewing 13 replies - 1 through 13 (of 13 total)