I just noticed in articles.php
require_once('./global.php');
require("config.php");
the require("config.php"); part is old and obsoleted. Might as well have the display quit opening that file.
Currently the categories are handled with ID numbers. When adding articles just enter 1 for anything in the first category. I haven't improved the categories side of things yet. It's something I have planned.
You will have to use HTML in all of the fields. That would be why your paragraphs are gone. It doesn't do ANY formatting. it's best to insert HTML in here. Use some sense when using those fields, Don't insert all the HTML header garbage. the first part should be something like "<p>After slipstreaming my SP2 CD I decided to take..." do NOT put the /body and /html tags in either. this will end the html page!
Also to change the Title on the articles list page look here:
//Default Page title
$home['pagetitle'] = 'Articles List';
}
I do plan on setting some global variables at the top of the file, but haven't gotten around to it.... Some people wanted to see where I was at on this so it's a BETA that needs quite a bit of work to make it a full release.
|