Topic: Need help for News Generator

Hello,

Before telling you my problem; i just say thank you for this good board smile

So, i install News Generator in my forum, after that, i don't see how to generate new news in an another site, because my forum isn't in the same account at the name of index.htm and not news.htm.

Thx big_smile

2

Re: Need help for News Generator

maybe you just should modify that with the field you want:

// Directories in which plugin will save generated markup (must end with slash)
$output_dir_latest = PUN_ROOT.'plugins/AP_News_Generator/';
$output_dir_archive = PUN_ROOT.'plugins/AP_News_Generator/archive/';

It's in AP_News_Generator.php

Ludo,

Re: Need help for News Generator

...or, you could call the "news.html" page to whatever page you want using a PHP include:

Example:

<html>
<head>
</head>

<body>

<div class="content">

<?php include('http://www.mysiteroot.com/forum/plugins/AP_News_Generator/news.html'); ?>

</div>

</body>
</html>

Of course, replace the path to the include with your own site address. Plus, I added the 'divs' for effect. They don't have to be there.

Re: Need help for News Generator

Thx, but for smileys ?

5

Re: Need help for News Generator

you just have to create a file called /images/smileys in which you upload the smileys.

Ludo,

Re: Need help for News Generator

Ok good big_smile Thx