| Re: wiwimod - Xoops 2.2.3 |
| by -gonzo- on 2005/12/20 21:28:53 Hey mpowell thanks for the reply. After I saw your post I decided to do some more digging and found out the problem was on my end. In PHP 5+, the php.ini has register_globals = Off register_long_arrays = Off by default. I changed register_long_arrays to On, restarted IIS and it worked! The reason is Wiwimod, and perhaps lots of other modules, depend on global PHP variables such as HTTP_GET_VARS and HTTP_POST_VARS. Now it looks like its working! Marc |
| Re: wiwimod - Xoops 2.2.3 |
| by mpowell on 2005/12/20 20:45:57 I'm using wiwimod on two sites running 2.2.3 without problem. I using one block on my sites without problem as well. No changes were made to wiwimod for them to work. I know this does not help your problem except that it does seem to work on at least some installations. You may consider using dokuwiki however, since it was designed for use with 2.2.x and is also an excellent wiki module. |
| Re: wiwimod - Xoops 2.2.3 |
| by -gonzo- on 2005/12/20 18:47:39 Ok looks like Wiwimod 0.8.3 is not fully supported in XOOPS 2.2.3. Is anyone using this combination? If so, what changes did you have to make for it to work? Thanks Marc |
| Re: wiwimod - Object of class XoopsUser could not be converted to int |
| by -gonzo- on 2005/12/20 18:28:40 Ok I figured out that the PHP notice "XoopsUser could not be converted to int" can be ignored. However, I did some digging in the wiwimod code and made the following change to get the myblocksadmin.php page to show: Replaced le="color: #000000"><?php // get blocks owned by the module $block_arr =& XoopsBlock::getByModule( $xoopsModule->mid() ) ; With le="color: #000000"><?php $block_handler = &xoops_gethandler('block'); $block_arr =& $block_handler->getByModule($xoopsModule->mid()) ; Looks like wiwimod is trying to call getByModule without instantiating a proper XoopsBlock object. Hopefully this change is ok. At least I can see the rest of the page now. However, I don't think this solves my root problem of not being able to create a new wiki page. I'll post a message at http://www.zonatim.com to see if I can get some more help. |
| wiwimod 0.8.3 on Xoops 2.2.3 |
| by -gonzo- on 2005/12/20 15:51:22 Hi, I'm setting up a XOOPS intranet and just installed wiwimod. I have not been able to create a new wiwi page. As an Administrator, when I go to the Blocks / Groups tab (http://localhost/xoops/modules/wiwimod/admin/myblocksadmin.php), I get the following text, the rest of the page is blank: le="color: #000000"><?php Notice [PHP]: Object of class XoopsUser could not be converted to int in file C:xoopsclasstheme.php line 442 I see this same message on several other pages (not just wiwimod pages), so I have been ignoring it. However, maybe this is something I need to fix. I am running: Win XP Pro, IIS MySQL 4.1.14 PHP 5.1.1 Xoops 2.2.3a Wiwimod 0.8.3 Thanks in advance for any help! Marc |