5001
Mithrandir
Re: Admin:updating modules

Shouldn't have to update individual modules. If nothing is changed in them, there's nothing to update.



5002
Mithrandir
Re: Bit of a toughie - database column into select field - how?

Try this:
function UserDropDownMenu () {
global 
$xoopsDB;
$sql "SELECT DISTINCT location FROM ".$xoopsDB->prefix("users")." ORDER BY location";
$result $xoopsDB->query($sql);
echo 
"<SELECT name='location_text'>";
while (
$location $xoopsDB->fetchArray($result)) {
echo 
"<OPTION value='".$location["location"]."'>".$location["location"]."</OPTION>";
}
echo 
"</SELECT>";
}



5003
Mithrandir
Re: New Xoops User

Error handling looks great Good work!

There is a wiki for module development - but it's a bit hard to find after the recent site changes, so a bit of patience or someone else will have to tell you

Keep up the good work



5004
Mithrandir
Re: Bit of a toughie - database column into select field - how?

Not using SMARTY templates:

echo "<SELECT name='country'>
$sql = SELECT DISTINCT user_from FROM ".$xoopsDB->prefix("users")." ORDER BY user_from";
$result = $xoopsDB->query($sql);
while ($country = $xoopsDB->fetchArray($result)) {
echo "<OPTION value='".$country."'>".$country."</OPTION>";
}
echo "</SELECT>";

That working for ya?



5005
Mithrandir
Re: Module install question

Then when you have uploaded the files, go to your site and login.
Go to the Administration Menu -> System Admin -> Module Admin and find the new module in the list below the already installed modules. Click on the install icon and you should be set

HF and good luck with XOOPS



5006
Mithrandir
Re: how to add php code to a block? help!

What do you get from a PHP Debug?



5007
Mithrandir
Re: Multiselect in preferences - how do I?

k thanks

(Btw - shouldn't you get more of the HTML in some smarty templates? And the DB calls into some classes? )



5008
Mithrandir
Re: Newbb unable to post

Administration Menu -> System Admin -> Preferences -> PHP Debug on -> Write here, what error you get, when trying to post in Newbb



5009
Mithrandir
Re: Locked out of my own site!

Top page is the page, which you set as the start page in system preferences.

As you discovered, the login block is just that... a block, which you can move around and make visible/invisible for different groups.

Logon doesn't have a page for itself as such - well... not normally, anyway.



5010
Mithrandir
Re: Newbie questions

1) Yep
2) Yep
3) Yep
4) Dunno

(ok, longer version:)
1) Just allow uploading of avatars in XOOPS preferences
2) Look in the language/English folder for files with define(_XX_SOMETHING, "occupation");
3) Per default yes. Admins can message several users at a time, but anyone can message anyone else, provided it is allowed in preferences (I think)
4) Take a browse through the modules download




TopTop
« 1 ... 498 499 500 (501) 502 503 504 ... 506 »



Login

Who's Online

147 user(s) are online (77 user(s) are browsing Support Forums)


Members: 0


Guests: 147


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