Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 27
  1. #11
    Join Date
    Aug 2005
    Location
    Nibelheim
    Posts
    6,074
    Tokens
    0

    Latest Awards:

    Default

    CuteNews README

    Information About The Script

    CuteNews v1.4.0 by CutePHP Team.

    Cute news is a powerful and easy for using news management system that use flat files to store its database. It supports
    comments and archives that can be organized by months.
    Please read the provided license.txt file to get familiar with the legal usage of this script.
    Registered Customers can seek support on at our support mail (technichal issues are discussed in our Forums!)


    Installing CuteNews

    The installation of CuteNews is really easy and you should do it without any problems if you fallow these steps:

    1) Create a directory on your server ( e.g. cutenews )
    2) Upload the content of the cutenews.1.4.0.zip to the directory you created in step 1
    3) Now You must CHMOD the the directory cutenews/data/ and all files and
    folders under the data/ directory must be also chmod'ed to 777.
    4) Finally, go to http://yoursite.com/cutenews/index.php with you favorite browser and fallow the instructions.


    Getting The News On Your Page...

    You can show the news, archives on your page by using some of the following php codes in your page.
    The page where you include news, should be with extension .php
    If you want these codes to be auto-generated for you, login into CuteNews and go to Options > Integration Wizards


    --------------------------------------------------------------------------------

    General

    when showing news, archives you can use $number = x; to limit the to x the number of maximum showed news on one page. If you use $number, "next >>" link to remaining news will be displayed.

    if you want to show news, archives from certain category you can use $category = "ID"; where ID is the id of the category, you can choose and more that one category like this: $category = "ID1,ID2,ID3";

    when you want to display news and headlines on one page for example, and want when a headline is clicked, the article to be displayed on the place of the news you must use $static = TRUE; before including headlines.

    Showing Active News

    <?PHP
    include("path/to/show_news.php");
    ?>


    Showing with Different Template

    <?PHP
    $template = "YOUR_TEMPLATE_NAME";
    include("path/to/show_news.php");
    ?>

    Showing Archives

    <?PHP
    include("path/to/show_archives.php");
    ?>

    Showing 5 Latest News

    <?PHP
    $number = "5";
    include("path/to/show_news.php");
    ?>

    Showing 5 News from Category with ID 2

    <?PHP
    $number = "5";
    $category = "2";
    include("path/to/show_news.php");
    ?>

    Showing All Headlines And The 1 Latest News Article On One Page

    <?PHP
    $static = TRUE;
    $template = "Headlines";
    include("path/to/show_news.php");

    $number = "1";
    include("path/to/show_news.php");
    ?>



    --------------------------------------------------------------------------------

    Remember that:

    in all of the above examples you must replace path/to/... to with your path where you installed CuteNews
    and not to use the URL but the path
    WRONG: include("http://site.com/cutenews/show_news.php);
    CORRECT: include("cutenews/show_news.php);
    in most cases when you include news and headlines in one page, you must use $static = TRUE; .
    when you use $number, $category, $template or any other variable, it must be BEFORE include("show_news.php");
    if you have any problems, you can always go to our support forums and we'll be more than glad to help you


    Help & Support

    If you have some problems with CuteNews you can go to our support forum.
    But before posting your problem on our forums, please look at the included Help Documentation with CuteNews. You can access it through CuteNews > Help > CuteNews internal Help Documentation

  2. #12
    Join Date
    Sep 2005
    Posts
    79
    Tokens
    0

    Default

    ermm? can i be a news reporteR?

  3. #13
    Join Date
    Aug 2005
    Location
    Nibelheim
    Posts
    6,074
    Tokens
    0

    Latest Awards:

    Default

    After Cutenews is installed, I can give people interviews, FarmerBob.

  4. #14
    Join Date
    Jun 2005
    Location
    Manchester
    Posts
    4,748
    Tokens
    0

    Latest Awards:

    Default

    Ahhh kk
    Right let me see if i get this right, im tired and i want to go bed =P

    PHP Code:
     <?PHP
    $category 
    "2";
    include(
    "cutenews/index/show_news.php");
    ?>
    On cutenews the actual webpage, go to options i think it is and make a category such as Habbo international news, [you will get a catogory number]
    Replace the 2 with that number.
    Paste that on youre desired page and it should work. if not try this code.

    PHP Code:
     <?PHP
    $category 
    "2";
    include(
    "cutenews/show_news.php");
    ?>
    If its not under options have a look around. =]

    Woo at star idea, got 2 sexy pink stars now

    I DONT KNOW HOW MODERATORS SLEEP AT NIGHT -CRI-

  5. #15
    Join Date
    Aug 2005
    Location
    Nibelheim
    Posts
    6,074
    Tokens
    0

    Latest Awards:

    Default

    It's not working... I tried renaming the page to a .php file and I tried pasting it on through Yahoo PHP edit, but I can't seem to do it by my self... I really need someone to install it for me.

  6. #16
    Join Date
    Jun 2005
    Location
    North LDN
    Posts
    425
    Tokens
    0

    Default

    trunks, have you chmod the files yet to 777 i can install for you if you want?

    Inovate, Inspire, Imagine, Create.


  7. #17

    Default

    This wont last long..

  8. #18
    Join Date
    Aug 2005
    Location
    Nibelheim
    Posts
    6,074
    Tokens
    0

    Latest Awards:

    Default

    Yup, Chmod'd them.

    Dom, I've owned several sucessful sites before, this is my third.

  9. #19
    Join Date
    Aug 2005
    Posts
    769
    Tokens
    0

    Default

    You Wouldnt Be Looking For Rare Valuers Would You? =l

  10. #20
    Join Date
    Jul 2005
    Location
    Bristol
    Posts
    2,054
    Tokens
    -10

    Latest Awards:

    Default

    <?PHP
    include("cutenews/show_news.php");
    ?>
    Copy that EXACT code into the content box you wish the news to be displayed on

Page 2 of 3 FirstFirst 123 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •