I solved it. I hadn't set COOKIE_DOMAIN in config.php
It works great now!
1 2006-05-28 18:32
Re: Steps to Integrate Login/Logout (17 replies, posted in PunBB 1.2 modifications, plugins and integrations)
2 2006-05-28 18:13
Re: Steps to Integrate Login/Logout (17 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I'm just wondering if it's possible to use the script when i have the login page and the forum on different sub domains? I want to use it on www. and make it log in on forum. that then redirects the user back to www.
3 2006-05-01 19:22
Topic: Prylforumet (swedish) (1 replies, posted in PunBB 1.2 show off)
I converted from phpBB to punBB and changed adress from http://www.mobilforumet.se to http://www.prylforumet.se
It's about gadgets like smartphones, PDAs and stuff like that.
4 2006-04-30 13:32
Re: Password Algorithim? (15 replies, posted in PunBB 1.2 discussion)
Thank you! It worked!
5 2006-04-30 12:52
Re: Password Algorithim? (15 replies, posted in PunBB 1.2 discussion)
I have just converted from phpBB to punBB and i use some scripts that integrate some other sites with the forum. i have a scripts that copy all users, passwords and their email-adresses and update the other sites databases. They all use MD5 encryption for the passwords.
Is it possible to change something in the code for punBB that makes it store the password as MD5 the next time the user changes the password? Then my scipts will continue to work without modification.
6 2006-04-27 18:02
Re: Bygga en sida som hämtar inlägg från forumet (1 replies, posted in Archive)
Fixade det. Jag byggde efter koden i AP_News_Generator och fixade så att den matar ut kod identisk med forumet så att jag kan använda vanliga punBB-teman på förstasidan.
7 2006-04-26 15:47
Topic: Bygga en sida som hämtar inlägg från forumet (1 replies, posted in Archive)
Jag sitter och försöker knåpa ihop en php-sida som hämtar alla första inlägg ur en viss kategori i mitt forum.
Jag har gjort en liknande sida tidigare som användes till phpBB men PunBB har en lite annorlunda uppbyggnad då det verkar separera trådar och inlägg.
Någon som kan hjälpa mig med koden?
/Thomas 'VaCUm' Svedin
8 2005-09-14 20:13
Topic: Lite problem med punBB till RSS-feed (0 replies, posted in Archive)
RSS-feeden på www.mactuellt.se fungerar inte bra och jag tänkte fixa felet.
Problemet är att det inte är jag gjorde koden och han som gjorde det gör lumpen nu. Dessutom vet jag inte hur en RSS-feed skall se ut och det är därför jag frågar er i forumet.
Här är feeden:
http://www.mactuellt.se/rss.php
Här är vad feedvalidator säger om ovan nämnda feed:
http://www.feedvalidator.org/check?url= … se/rss.php
Här koden till rss.php:
<?php
define('PUN_ROOT', '/home/mactel/www/forum/');
define('PUN_URL', "http://forum.mactuellt.se/");
require_once(PUN_ROOT."include/common.php");
require_once(PUN_ROOT."include/parser.php");
// setlocale(LC_TIME, "sv_SE");
header("Content-Type: application/rss+xml");
echo "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>";
?>
<rss version="2.0">
<channel>
<title>Mactuellt.se Nyheter</title>
<link>[url]http://www.mactuellt.se/[/url]</link>
<description></description>
<language>sv-sv</language>
<?php
$q = $db->query('SELECT foo_topics.id, foo_topics.poster, foo_topics.subject, foo_topics.posted, foo_posts.message, foo_posts.metadata FROM foo_topics INNER JOIN foo_posts ON foo_topics.first_post_id = foo_posts.id WHERE foo_topics.forum_id = 19 AND foo_topics.moved_to IS NULL ORDER BY foo_topics.posted DESC LIMIT 0,10') or error('Unable to check for new messages', __FILE__, __LINE__, $db->error());
while($r = $db->fetch_assoc($q))
{
?>
<item>
<title><?php echo $r['subject'] ?></title>
<link>[url]http://www.mactuellt.se/index.php?kat=nyheter&visa=[/url]<?php echo $r['id'] ?></link>
<pubDate><?php echo gmstrftime("%a, %d %b %y %T %Z", $r['posted']); ?></pubDate>
<description><?php echo substr($r['message'], 0, 50); ?></description>
<content:encoded><![CDATA[
<?php echo parse_message($r['message'], 1); ?>
]]></content:encoded>
</item>
<?php
}
?>
</channel>
</rss>
<?php
?>
Som ni ser hämtas innehållet till till feeden från ett forum. Forumet är punBB och vi skapar nyheter på förstasidan och i RSS-feeden genom att lägga ett inlägg i ett vist forum.
Nu när ni har fått allt ni kan behöva veta undrar jag vad jag skall ändra för att lösa detta.