61
ackbarr
Re: Xoops - Customizing Registration

first off, if you've modified the function insert() in kernel/user.php, turn on MySQL debugging in System -> Preferences -> General Settings and make sure that the problem isn't a sql syntax error. If that yields no possibilities, switch to PHP debugging mode and see if there are any php scripting errors that need to be addressed.



62
ackbarr
Re: New Install Quandries (Anonymous users, RSS, phpBB, and Gallery)

1. Go to System -> Groups, modify the Anonymous Users group and give module / block access rights to everything the anonymous users should see

2. According to the HTML source for your blog, your RSS feed url is:http://jazzmahn.livejournal.com/data/rss . You may consider using xhlds instead of the bundled headlines module as it has better unicode support and deals with more feed formats (RSS2, ATOM, etc).

3. Gallery - Gstarrett works very hard on the gallery port. I'm sure he would appreciate you describing to him what problems you had with the module, so they can be addressed properly.http://www.xoopsgallery.org/

4. phpbb - I can't find them at the moment, but I thought I saw a user migration script from phpbb. In addition, BBpixel has a port of phpbb embedded in XOOPS. Be forewarned though, bbpixel's port includes modified versions of some XOOPS core files (namely login / user management). So you must wait for bbpixel to update his port when new versions of XOOPS are released.



63
ackbarr
Re: Please help and think about suggestion

I moved this topic to "module requests"



64
ackbarr
Re: database problem : user_icq must be shorter than 15 characters.

you will also need to modify /kernel/user.php

$this->initVar('user_icq'XOBJ_DTYPE_TXTBOXnullfalse15);

The above line creates a new variable in the XoopsUser object with the following settings:

name: user_icq
type: XOBJ_DTYPE_TXTBOX (textbox)
default value: null (empty)
required: false
length: 15

So to use your new db lengths you need to modify that line to:
$this->initVar('user_icq'XOBJ_DTYPE_TXTBOXnullfalse, [color=008000][b]100[/b][/color]);


You'll need to make a similar change to the line for 'user_aim'



65
ackbarr
Re: Database not being queried for template

in your php code, you need to direct XOOPS to which template should be loaded for the current page:

require('../../mainfile.php');

// We must always set our main template before including the header
[color=008000][b]$xoopsOption['template_main'] = 'plots.html';[/b][/color]

// Include the page header
require(XOOPS_ROOT_PATH.'/header.php');


Also to ensure that your template name doesn't conflict with any others, it is a good practice to prefix your template file with the name of the module:

plots.html would be mymodule_plots.html



66
ackbarr
Re: White Screen of death

can you please enable PHP debugging as described in this FAQ:
https://xoops.org/modules/smartfaq/faq.php?faqid=80

Then respond back with any errors displayed on the "White Screen of Death"



67
ackbarr
Re: lostpass.php

The lostpass.php script attached to this tracker item fixes the lost password feature in 2.0.10 final.

http://sourceforge.net/tracker/index.php?func=detail&aid=1198408&group_id=41586&atid=430840



68
ackbarr
Re: Google Web Accelerator: is it an issue with Xoops?

I think that if you have Protector's flood protection settings enabled then it is possible for those IPs to be blocked automatically. This is the same problem with any proxy or NAT based network though.



69
ackbarr
Re: Google Web Accelerator: is it an issue with Xoops?

best answer I can give: some parts of XOOPS could be affected by this. I haven't looked through the entire core, but basically any GET request that changes application state (updating an object, removing an object) is at risk. From an application development standpoint, this is usually a bad idea anyway, but I know that several modules allow this.

A quick hack to disable prefetching on your XOOPS site might be to add this to your mainfile.php:
if (isset($_SERVER["HTTP_X_MOZ"]) && $_SERVER["HTTP_X_MOZ"] == "prefetch") {
    
header("HTTP/1.0 403 Forbidden");
}



70
ackbarr
Re: Error in chess module?

what version of XOOPS are you running on your site?




TopTop
« 1 ... 4 5 6 (7) 8 9 10 ... 121 »



Login

Who's Online

197 user(s) are online (110 user(s) are browsing Support Forums)


Members: 0


Guests: 197


more...

Donat-O-Meter

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

Latest GitHub Commits