Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Re: TXPhorum: A simple forum solution for Textpattern
This looks promising. Is there any progress being made lately..? (Last dev post was three months ago)
cheers,
/Anton
Offline
Re: TXPhorum: A simple forum solution for Textpattern
Anton,
There’s been no progress that I know of, but there have been over 1000 downloads of the plugin and template, so I think there are working versions “out there” — can anyone post a link besides this one?
- Ben
Offline
Re: TXPhorum: A simple forum solution for Textpattern
Since people have been asking for another example of the txphorum in use, here goes…
No real entries yet, but it looks kinds pretty…
http://www.afterglowyoga.com/txphorum
Swim Kitten, A Magento Site
When nothing but incredibly revealing dresses and swimwear will do
Offline
Re: TXPhorum: A simple forum solution for Textpattern
This could be very helpful in distributing new templates for TXPhorum, especially since it seems to require a Page, Forms, etc. If you’ve got TXPhorum installed on a site and have reworked the design, please consider putting together a package for others.
- Ben
Offline
Re: TXPhorum: A simple forum solution for Textpattern
I’ve downloaded the last template and still have the same error when I try to display the page:
tag_error <txp:ign_if_logged_in> -> Textpattern Warning: unknown_tag: ign_if_logged_in on line 973
How can I make more fields to register and make them obligatory?
Thanks.
Offline
Re: TXPhorum: A simple forum solution for Textpattern
You either have not installed or have not activated the plugin that provides the <txp:ign_if_logged_in> tag.
Offline
Re: TXPhorum: A simple forum solution for Textpattern
Oh, thank you.
You have a lot of pacience with newbies as me lol
Anyway, I can’t find the self register form, to paste it on mu forms, where is it?
Sorry for being so dumb :)
Edited: Yes, I’m dumb, and found it :)
Last edited by Malize (2007-08-29 12:01:55)
Offline
#68 2007-09-10 15:35:22
- ringhio
- New Member
- Registered: 2007-09-10
- Posts: 6
Re: TXPhorum: A simple forum solution for Textpattern
Hi! I’ve installed TXPhorum following instructions but after login I see these errors:
Tag error: <txp:bab_if_gps check_for=“self_edit”> -> Textpattern Warning: tag does not exist on line 973
Tag error: <txp:bab_if_gps check_for=“password_edit”> -> Textpattern Warning: tag does not exist on line 973
Tag error: <txp:bab_if_gps check_for=“self_edit”> -> Textpattern Warning: tag does not exist on line 973
Tag error: <txp:bab_if_gps check_for=“password_edit”> -> Textpattern Warning: tag does not exist on line 973
Tag error: <txp:bab_forum_form type=“post” section=“txphorum” /> -> Textpattern Warning: tag does not exist on line 973
Also I don’t see any link/button to post a new message near “Add a post:”. What’s wrong?
asy_wondertag v0.5
ign_password_protect v0.5b4
mem_self_register v0.8.3
Thanks
Daniel
Offline
Offline
#70 2007-09-10 19:53:28
- ringhio
- New Member
- Registered: 2007-09-10
- Posts: 6
Re: TXPhorum: A simple forum solution for Textpattern
Yep!
Bye
Last edited by ringhio (2007-09-10 19:54:32)
Offline
Re: TXPhorum: A simple forum solution for Textpattern
ringhio,
It looks like TXPhorum is not installed properly. I know you said everything was installed and activated, but please double check that TXPhorum is activated on the plugins page. Otherwise, I think maybe just uninstall it and re-download the text file and re-install it.
- Ben
Offline
#72 2007-09-11 07:04:47
- ringhio
- New Member
- Registered: 2007-09-10
- Posts: 6
Re: TXPhorum: A simple forum solution for Textpattern
You’re right! I haven’t installed TXPhorum plugin, I saw that in the list but I don’t think at that like a plugin but just for section, pages, forms.
Thank you very much!
Daniel
Offline
#73 2007-09-11 15:43:08
- ringhio
- New Member
- Registered: 2007-09-10
- Posts: 6
Re: TXPhorum: A simple forum solution for Textpattern
Btw I’ve 2 others little problems.
1) When I post a new article I am redirected in the wrong way, is it possible to set paths? In my case the site is mydomain.net/textpattern/ and the forum is in mydomain.net/textpattern/txphorum, when I post I am redirected in mydomain.net/txphorum with a right 404 error. Posts are inserted correctly. Is it clear?
2) Search form points to mydomain.net/installation/index.php, problem similar the previous one.
Thanks
Daniel
Last edited by ringhio (2007-09-11 15:46:59)
Offline
Re: TXPhorum: A simple forum solution for Textpattern
ringhio,
You can try setting your site preference: Surf to TXP > ADMIN > PREFERENCES > SITE PREFERENCES > and then in the Site URL field set it to mydomain.com/textpattern. If that doesn’t work, you’ll have to hack the plugin — let me know how it goes and I can try and walk you through that.
- Ben
Offline
#75 2007-09-12 09:00:52
- ringhio
- New Member
- Registered: 2007-09-10
- Posts: 6
Re: TXPhorum: A simple forum solution for Textpattern
The site url is just defined properly, I think I must hack the plugin. I’ve done a little change about redirect after post action:
Before: with a var_dump($path) and commenting header(Location) it returns “/txphorum” instead of “textpattern/txphorum”
header(“HTTP/1.x 301 Moved Permanently”);
header(“Status: 301”);
header(“Location: “.$path);
header(“Connection: close”);
After: so I write a snippet of code and now it works
header(“HTTP/1.x 301 Moved Permanently”);
header(“Status: 301”);
if (trim($path) == “/txphorum”)
header(“Location: /textpattern-4.0.5”.$path);
else
header(“Location: “.$path);
header(“Connection: close”);
I think it could be better but for now it’s right like that.
Cheers
Daniel
Last edited by ringhio (2007-09-12 09:13:47)
Offline