1
gravies
bbcode plugin for Dokuwiki
  • 2005/12/2 21:29

  • gravies

  • Not too shy to talk

  • Posts: 119

  • Since: 2004/8/18


Dokuwiki is an excellent Wiki module for Xoops. However, it uses its own syntax and ignores bbcode used by the rest of xoops.

There is a plugin available for DokuWiki to allow it to read bbcode but it only works with the latest version of DokuWiki.

http://wiki.splitbrain.org/plugin:bbcode

Hopefully the XOOPS versions can be updated soon to allow this plugin to work.
Join the xoops chat lounge on irc.freenode.net #xoops or use this java clienthttp://www.hyperpod.net/modules/ircmod



2
gravies
Re: cbb 2.2 Admin blank page
  • 2005/11/8 18:45

  • gravies

  • Not too shy to talk

  • Posts: 119

  • Since: 2004/8/18


I am having a slightly different problem. I have set my forums to require approval for anonymous posts. Since updating to 2.30 I can no longer see the unapproved posts. According to 'Waiting Contents Block' I have 3 posts that require approval - but I cannot access them via the admin menu.

Any ideas?
Join the xoops chat lounge on irc.freenode.net #xoops or use this java clienthttp://www.hyperpod.net/modules/ircmod



3
gravies
CBB 2.2 bug with unapproved posts
  • 2005/9/8 0:53

  • gravies

  • Not too shy to talk

  • Posts: 119

  • Since: 2004/8/18


I tried to report these to the module bug reporting form but there is no category for CBB and newbb only goes up to version 2.0RC.

I am using XOOPS 2.2.3 on a Debian Sarge system.

If you try to edit an unapproved (anonymous) post from the admin menu you get this error:

Fatal error: Call to undefined function: newbb_adminmenu() in /var/www/html/modules/newbb/admin/index.php on line 102

from this url:

/modules/newbb/admin/index.php?op=mod&post_id=xxx

It is useful for the administrator to edit unapproved posts before approving.
Join the xoops chat lounge on irc.freenode.net #xoops or use this java clienthttp://www.hyperpod.net/modules/ircmod



4
gravies
Re: Could not register new user.
  • 2005/9/7 20:35

  • gravies

  • Not too shy to talk

  • Posts: 119

  • Since: 2004/8/18


You might also try updating the Profile module from modules administration. This update seems to check for missing fields and it may restore any fields that are missing.

I went through each of the fields in a working database and the broken one and only when I added those specified above (+ user_interest) did I see the fix.

You might also need to check the user permissions for each of the fields for edit / view etc. Try adding permissions for the YIM/AIM etc...

I filed the bug report so hopefully Mith will look into it soon.
Join the xoops chat lounge on irc.freenode.net #xoops or use this java clienthttp://www.hyperpod.net/modules/ircmod



5
gravies
Re: Could not register new user.
  • 2005/9/7 18:51

  • gravies

  • Not too shy to talk

  • Posts: 119

  • Since: 2004/8/18


FIXED

I added back the YIM, MSN, AIM, ICQ fields to the extended profiles module and it now works again.

I will file this as a bug.

EDIT: You also need to rm -f templates_c/*.php !!!

I only found this out after updating to 2.2.3 RC so I can't tell if you need to upgrade for the fix to work.
Join the xoops chat lounge on irc.freenode.net #xoops or use this java clienthttp://www.hyperpod.net/modules/ircmod



6
gravies
Re: Could not register new user.
  • 2005/9/7 16:11

  • gravies

  • Not too shy to talk

  • Posts: 119

  • Since: 2004/8/18


I updated to 2.2.3, retried registration - encountered password bug, fixed with s/trim/strlen/ at line 75 of modules/profile/register.php, got past password problem, clicked finish button.....

Could not register new user.

I have another site running 2.2.2 where none of the custom fields have been edited. I just checked this site and it registers users perfectly.
Join the xoops chat lounge on irc.freenode.net #xoops or use this java clienthttp://www.hyperpod.net/modules/ircmod



7
gravies
Re: Could not register new user.
  • 2005/9/7 15:52

  • gravies

  • Not too shy to talk

  • Posts: 119

  • Since: 2004/8/18


I am having the same problem. You try and register a new user and it says 'Could not register new user.' There are no errors in any of the debug windows. I have edited the user registration form. I am fairly sure that the registration process worked after I updated to 2.2.2 but I think that i must have broken since editing the user fields. I have 2 new fields that are text fields. I deleted some of the base fields from the user field table: eg. YIM, MSN, AIM etc.

I am using 2.2.2 on a Linux server with all permissions correct. There are no firewall issues becuase the problem occurs if you connect to the machine directly. I will try update to cvs version to see if that fixes the problem.

The error message is not completely correct since the user does get entered in the database but they are inactive and no email is sent. The date of registration is also null. This also highlights a bug in the user editing system because inactive users cannot be edited or deleted by the administrator in 2.2.x.
Join the xoops chat lounge on irc.freenode.net #xoops or use this java clienthttp://www.hyperpod.net/modules/ircmod



8
gravies
Re: Xoops 2.2x istats can't count
  • 2005/8/24 17:51

  • gravies

  • Not too shy to talk

  • Posts: 119

  • Since: 2004/8/18


Good question - I have the same problem but no time to investigate.
Join the xoops chat lounge on irc.freenode.net #xoops or use this java clienthttp://www.hyperpod.net/modules/ircmod



9
gravies
Re: Mailing list integration
  • 2005/8/17 23:57

  • gravies

  • Not too shy to talk

  • Posts: 119

  • Since: 2004/8/18


Did you ever get anywhere with this?

I just created a simple block to allow my members to subscribe to two GNU Mailman mailing lists by clicking on a submit button.

I would be very interested to know if you got any more integration.

Here is my very simple block for subscribing:

global $xoopsUser;

if (
is_object($xoopsUser)) {
    
$email $xoopsUser->getVar('email');
}

echo 
"<b>Click to subscribe</b>";
echo 
'<FORM Method=POST ACTION="http://example.com/cgi-bin/mailman/subscribe/YOURLIST">';
echo 
'<INPUT name="email" type="hidden" value="';
echo 
$email;
echo 
'">';
echo 
'<INPUT type="Submit" name="email-button" value="YOURLIST">';
echo 
'</FORM>';


This brings up a minor bug with the XOOPS 2.2.x custom php block method - you cannot use \ to escape things! When you submit the page it comes back without the \ . eg. using \" doesn't work.
Join the xoops chat lounge on irc.freenode.net #xoops or use this java clienthttp://www.hyperpod.net/modules/ircmod



10
gravies
Re: Tar.gz Files
  • 2005/8/16 4:26

  • gravies

  • Not too shy to talk

  • Posts: 119

  • Since: 2004/8/18


I you want to unzip the file on the server you can do this little trick... create a file called untar.php with something like this...

<?php system('/usr/bin/tar xvfz /path/to/file.tgz'); ?>

If you put that file and the .tgz in the right place then it should work.

This is probably very dangerous and should not be attempted. (But I have done it).

If you use Windows you should consider installing Cygwin - it gives you a *nix shell-like environment from which you can tar, ssh, scp, rsync, etc.
Join the xoops chat lounge on irc.freenode.net #xoops or use this java clienthttp://www.hyperpod.net/modules/ircmod




TopTop
(1) 2 3 4 ... 8 »



Login

Who's Online

236 user(s) are online (140 user(s) are browsing Support Forums)


Members: 0


Guests: 236


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits