• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[PHP] tfscms

WibbenZ

Global Moderator
Staff member
Global Moderator
Joined
Oct 16, 2008
Messages
6,374
Solutions
229
Reaction score
1,503
Location
Sweden
I have a small problem.

PHP:
<?php
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * TFSCMS - The Forgotten Server Content Management System
 * * * * * * * * * * * * * * * * ' * * * * * * * * * * * * * * * * *
 * Copyright (c) Mark Samman 2008 - 2009 <[email protected]>
 * All Rights Reserved.
 * This file may not be redistributed in whole or significant part.
 * http://otland.net
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

require_once('includes/global.php');
$userInterface = new UserInterface('News');
$userInterface->display();
echo nl2br(file_get_contents('news.txt'));

$limit = 4;

require('lib/rss_fetch.inc');
$rss = fetch_rss('http://otland.net/blogs/twifysoft/feed/');
foreach ($rss->items as $entry) {
	echo '<h3>' . $entry['pubdate'] . ' - <a href="' . $entry['link'] . '">' . htmlspecialchars($entry['title'], ENT_QUOTES) . '</a></h3>' . $entry['content']['encoded'];

	$limit--;
	if ($limit == 0)
		break;

	echo '<hr />';
}
?>

how can I get it to NOT run by the blog?

rep++
wibben
 
require('lib/rss_fetch.inc');
$rss = fetch_rss('http://otland.net/blogs/twifysoft/feed/');
foreach ($rss->items as $entry) {

I wanna it to work as an admin panel~ like gesior or smt
 
require('lib/rss_fetch.inc');
$rss = fetch_rss('http://otland.net/blogs/twifysoft/feed/');
foreach ($rss->items as $entry) {

I wanna it to work as an admin panel~ like gesior or smt

?????????? I still don't get it.... Take your time explaining every single detail so we may help you, btw do you know what does the file you posted?
 
Like gesior latest news script..

like go on admin panel and its like

Lates News Adder

and it will be like gesior you write


Titel: Hi otland was up (with öäå if you can.)

Hi guys I wanna an script that is like gesior latest news but includes the letters (öäå)
like in swedish.

rep++

Writen by Admin Wibben 21/01-10
 
Like gesior latest news script..

like go on admin panel and its like

Lates News Adder

and it will be like gesior you write


Titel: Hi otland was up (with öäå if you can.)

Hi guys I wanna an script that is like gesior latest news but includes the letters (öäå)
like in swedish.

rep++

Writen by Admin Wibben 21/01-10
??? then why you post a RSS fetcher as example for that?.... BTW the letter thing have nothing to do with the php script (Only if the php scripts block those letters) but the encode you set on your html header.....
 
Not to burst your bubble, Wibben. But I strongly doubt that anyone would actually create all these requests for you for free. You keep creating new topics regarding the editing of TFSCMS to fit your needs.

I'd recommend you to find someone, whom you will pay for his/her effort, to create you a brand new system for your needing, seeing as you said that this wasn't for an OT.
 
I would only say the word 'learning'... Requesting functions etc are okay but not requesting all the time a new script...

I AGREED WITH MANGO <3
 
Back
Top