A Comparison Between 2 Popular Article Directory Scripts

A Comparison Between 2 Popular Article Directory Scripts

You want to run an article directory and can’t decide which script to use. In this article I compare 2 of the more popular article directory scripts and try to decide which I prefer and will tell you why.

Setting A Directory Up

Article Dashboard: I launched my first directory using the free Article Dashboard script on July 3rd 2007. It took about 3 weeks and many visits to the Article Dashboard forum asking for advice to get it up and running.

Article Friendly: I set my paid for Article Friendly script directory up on November 3rd 2008. It took 1 hour to get it up and running with no help.

Why the difference? First time round I was new to php and absolutely hopeless with understanding scripts and learned more over time. Even so I believe that the AF script is easier to install.

Although the really useful AD forum has been down for a while there are still several forums run by directory owners where you can get help. AF has it’s own forum where you can get help with your article directory and also advice about other scripts including AD.

Design

My fear of messing with php scripts has stopped me from doing major redesigns but there are a couple of sites offering very good free tutorials for AD directories and the AF forum offers lots of advice. There are also some great designers out there who own directories and offer design services especially for article directories. Good because they understand the functionality better than a general designer.

I personally have found it a little easier to redesign around the AD script, but as I’ve been using it longer I have more basic understanding of it.

Running Your Directory

Authors submit articles, you check them and either approve or decline them it’s simple – or is it? With both scripts you can set articles to auto approve. The function is inbuilt in the AF script alongside mass keyword approval – or disapproval but with the AD script you need to mess with the coding or get an add on. Personally I would never auto approve articles, there are too many people out there who want to submit adverts, plagiarised articles and basic crap rather than the quality articles that any website owner would want on their site.

There are quite a lot of add ons available for the Article Dashboard script, some free and some paid for and some of which I use. A duplicate title checker is a must and that I got free. Whenever somebody submits an article with the same title it is flagged. Sometimes it’s the same article, sometimes it’s just an author being unlucky and I can let them know that they need to change their title. Article friendly has a duplicate checker built in.

Article Friendly also has an automatic decline function if an article’s word count is lower than the amount that you choose to set up in the dashboard. I got a short article deleter free for AD and with that I can set the minimum wordage of articles that I want on the site, but as I could never get it to work it’s a mute point. I’m sure that there are more such scripts available if I really wanted one.

Blocking Undesirables!

Another feature that AF has that I like is being able to block unwanted authors with one click. It’s not something I like doing but if somebody constantly submits plagiarised articles, adverts etc. banning them saves my time and theirs.

You can also block email addresses with the AF script. I chose to block free email addresses as most of the problem submitters come from free email addresses. I have no problem with free email addresses personally, blimey I use them myself, but as that particular directory is in the travel niche and most genuine travel writers use their website email addresses the block saves me time.

Another good feature on AF is being able to delete authors with no articles with one click. Some of those authors may genuinely set accounts up intending to submit articles but never get around to it, but I suspect otherwise with some new authors who join up and fill in their profile with a link to anything but a travel site.

Those features are only available on AF, but as I said earlier in this article there are all sorts of add on scripts available for AD and more turn up occasionally.

Keeping Things Clean

With AF there is a bad word block area in the dashboard where you can input words that you don’t want appearing on your site. If an author uses any of those words the article is automatically declined.

I did buy an AD add on that scans resource boxes for words that you input into the script and you can delete offending articles in one go. That has proved invaluable as a time saver against masses of plagiarised articles.

More Article Friendly Goodies

AFs dashboard also lets you clean up, repair or optimise your database with one click, very handy for those of us who haven’t got a clue how to do it themselves. You can also keyword optimise all of the categories very easily, add extra admin access, find articles or authors and mass move articles from one category to another. You can also link up to 4 different mass submission companies from your dashboard if you want to.

Article Dashboard Goodies

I seem to be favouring AF over AD scripts, but the main reason that I haven’t converted my AD directory over to the AF script is that when I am checking articles I can also click on and check the authors links before approval. You would be surprised just how many authors submit articles with broken links, or links pointing to unacceptable sites. With Article Friendly I have to paste links in my browser to check them, or scrutinise the html and that takes time.

Another thing that I like better about the Article Dashboard script is that authors can use html within the article body whereas the Article Friendly script automatically rejects articles using html. Personally I prefer to use html where I can as long as it follows the directories guidelines. Html helps to make an article stand out and become more readable. However you can add html to articles in the admin area of Article Friendly.

In Conclusion

There are more features that I haven’t mentioned but I’m sure that you get the picture. Although the Article Friendly script is easier to install and use I still slightly favour the Article Dashboard script because of the last 2 features mentioned, but as there are regular updates to the AF script that could change.

Watch the video related to Php Scripts

Help answer the question about Php Scripts

Please give the link of PHP scripts ?
I am a beginner in PHP development. Somebody please tell me links that i can download professional PHP scripts.

Thanks in advance.

About Author


Which article directory script is best is really up to personal choice and you can see working examples of both scripts at my general subject Article Directory BB Articles and the top travel article directory Articles Abroad

18 Responses to “A Comparison Between 2 Popular Article Directory Scripts”

  1. monkeymanbob says:

    Nice work, you did pretty good.

  2. champ0y says:

    You’re really good man. You’ve got excellent talent.

  3. relientkfan153 says:

    The "something" can be accessed very easily with PHP. If you have a web page address that looks like this:

    index.php? month=september&name=smith&age=24

    Then you can access those values in PHP like this:

    <?php
    echo $_GET('month');
    echo $_GET('name');
    echo $_GET('age');
    ?>

    This will print septembersmith24.

    As for accessing a text file, that's easy too:

    <?php
    $text = file_get_contents( 'textfile.txt' );
    echo $text;
    ?>

    This will read the entire contents of the file textfile.txt into the variable $text, and then print it out for you.

    You can also access many databases with PHP, I highly recommend you use MySQL. It's a bit too complicated to describe here, though. There are some good references made to good books by folks above. The "Teach Yourself" series is great.

  4. Jeremy H says:

    I don't think there is such a thing as a PHP emulator, and I don't know why you'd need one. It's likely that you either didn't install PHP and apache correctly or you aren't using it right.

    Use XAMPP to install PHP and apache. It will also include MySQL and phpMyAdmin (which you will need sooner or later) and some other good stuff too. It's much easier than trying to configure PHP and apache by hand. Best of all, it's all configured to run together immediately. XAMPP and all of its components are free and open source.
    http://www.apachefriends.org/en/xampp.html

    Once you've got a web server, you need to turn it on (that's not automatic.) There's a nice control panel that makes this easy with XAMPP. PHP files will only work if they're in a specific subdirectory (usually htdocs in the apache directory structure) Also, you can't just load a PHP file into the browser the same way you do an HTML file. Instead, you need to point the browser to
    http://localhost/yourFileName.php

    PHP is called by the server, so if you use a mechanism (like the file:// directive) that bypasses the server, your PHP programs won't run.

  5. Atticus says:

    You can use a menu maker if you're not sure how to code something on your own. There are a gazillion of them out there and many are even free. Pick one that suits you…

    http://www.google.com/search?source=ig&hl=en&rlz=&q=web+menu+maker&btnG=Google+Search

  6. superchode20164 says:

    amazing! Willy teach me how to paint like you!

  7. Forbidia says:

    Brilliant Willy, Just Brilliant =D

  8. Sameer A says:

    http://www.elite.ro/free-hosting-php/
    http://www.awardspace.com/
    http://www.free-phphosts.com/
    http://www.freehostia.com/free_hosting.html

    Really what you need to run php is some one who also offers a sql database these do but I dont get the website builder thing?
    if your messing around with php why would you need a WYSIWYG builder?

  9. avb17018411 says:

    woww that’s really relax and beatiful soung .good picture of jhony depp !

  10. warah110 says:

    Perfect.

  11. Simplicated says:

    If you have sensitive files that should be accessible only by scripts, put them somewhere on the server other than the web root. Your scripts will still be able to access them, but nobody can pull them off the web.

    /
    – /htdocs
    – — /www.site.com
    – /securedocs

  12. Faithless863 says:

    hm i couldn’t tell the difference between photograph and painting comparing the final resault.

    This is sick

  13. virgocrabtiger373 says:

    http://www.phpfreaks.com/tutorial_cat/8/Basics-&-Beginner-Tutorials.php

  14. Mike says:

    Hi,

    Best Site to Learn PHP http://www.w3schools.com/php/default.asp

    I know this Answer Will solve your problem. Do one thing visit http://www.zakhas.com/Forum be a member first and Download 1800 Industry standard PHP Projects and source codes. Directly without any interrupting. Follow below link for direct access to the download link.http://www.zakhas.com/Forum/ViewThread.asp?Thread=161&Forum=26
    Definitly it will solve your problem. Download it BE Quick.

    Or you can try this sites below

    http://www.planetsourcecodes.com

    or

    http://www.scriptswave.com/free/scripts/php_scripts/9.html

    If you find this answer is best then you can choose it as best answer.

  15. TheTroubadourMusic says:

    :O

    :O

    :O

    how is this not a real photo?

  16. lidiabarbarita says:

    Very nice!!

  17. Ars Magicana Arcanum says:

    Windows XP PRO has functionality for running a web server built in

    IIS is an option, however, under a "Default" installation of XP Pro, it might not be installed

    Control panel – > add / remove programs -> Add Remove Windows COmponents – Check "Internet Information Services"

    You could also look @ apache as has been mentioned, however, IIS is PART of windows.

  18. ampersand1 says:

    http://www.phpfreaks.com

    If you are ready invest: Get Larry Ullman: 'PHP …" Nice book

Leave a Reply