Forum Replies Created

Viewing 9 replies - 121 through 129 (of 129 total)
  • Joe Hall

    (@redbmedia)

    “I can also set them all to a future date,”

    If you can do this, then why do you need the cron job?

    Joe Hall

    (@redbmedia)

    Exactly, you can upload the file anywhere that you would like. Just copy the entire URL or address location and paste it in the code they provided. See below:

    URL OR ADDRESS LOCATION OF ASCIIMathML.js:

    http://www.YourDomain.com/RandomFolder/ASCIIMathML.js’

    ORGINAL CODE:

    <script type=”text/javascript” src=”ASCIIMathML.js”></script>

    NEW CODE:

    <script type=”text/javascript” src=”http://www.YourDomain.com/RandomFolder/ASCIIMathML.js”></script&gt;

    Joe Hall

    (@redbmedia)

    Dave,

    Do you have access to a FTP or another method of uploading the folder files to your server?

    1. If so, then upload all of the files to your server.
    2. Then you will need to find the URL path of the .js file.
    3. After you have found this then you can paste that URL into your line of code that ASCIIMath gave you.
    4. Then take that whole code and copy it.
    5. Then open up wordress and open up the theme editor under “presentation”.
    6. Open up the file called “header” or “header.php” and paste your code anywhere between the < head> & < /head> tags.
    7. That should be it!

    I hope it works out for you!

    Thread Starter Joe Hall

    (@redbmedia)

    I think I have discovered my problem here. However, in doing so i have discovered a new issue that needs attention read about it here.

    Joe Hall

    (@redbmedia)

    I am having this same problem. And atlas! I find the solution here! But heres another issue. For the site that I want to use this feature on, it is hosted with a company that does not provide cron! (GoDaddy) I do have another hosting account over at HostGator that does support cron. Would setting up a cron to preform this task at my hostgator account work even if I am hosting the blog at Godaddy? It seems as if it shouldn’t be a problem as long as I use complete URL pathes. What are your thoughts?

    Joe Hall

    (@redbmedia)

    Awesome blog! I like the idea. However, if i were you I might slightly change a bit of the design options to give your audiance a clearer picture of what your all about. For example when the site loaded my eyes went straight for the image of the coke can. And this continued as i scrolled down for each post’s image is relitively large compared to the other aspects of your page. This normally wouldn’t be a big deal except for the fact that it took me a few minutes to discover what the topic of your site is. perhaps if you tweak the size of several of your elemens in the header like: making “Skinverse” larger, and then “all.about.skin” maybe in bold or something. Anything to make your topic and title to stand out a bit more! Otherwise its a beautiful site.

    Joe Hall

    (@redbmedia)

    I don’t. When I want the post to start posting I start the cron job. When I want it to stop posting I just delete the script and then the cron. If you want to automate a time and a date to publish a posting, WP already has a feature for that build in.

    My application is just for those that want a posting to conitually republished over and over again at designated intervals.

    Joe Hall

    (@redbmedia)

    I am actually working on the same type of application at the moment. Although going about it differently. I am writing a simple email script that can send a message with my posting in it to WP using the “Post by Email” feature. I am automating the script using a cron job. I like this method because I don’t have to fool around with inserting data to the db. Instead I let WP do that for me. Below is an example of the script I am using:

    ‘<?php
    $to = “SECRETEMAIL@mysite.com”;
    $subject = “POST TITLE”;
    $body = “POST BODY/CONTENT”;

    if (mail($to, $subject, $body)) {
    echo(“<p>Post successfully sent!</p>”);
    } else {
    echo(“<p>Post delivery failed.</p>”);
    }
    ?>’

    The only problem that I am having is setting up my POP3 server to work well with WP. Hope this helps.

    Forum: Plugins
    In reply to: Automated Posting Script??
    Thread Starter Joe Hall

    (@redbmedia)

    Because I want it to re-post several times through out the day. In fact I would like it if it could automaticly post like every several hours until I “stop” it.

Viewing 9 replies - 121 through 129 (of 129 total)