Forums

Unfortunately no one can be told what FluxBB is - you have to see it for yourself.

You are not logged in.

#1 Re: Modifications (1.4 / 1.5) » [Mod] Usermap » 2011-04-16 21:45:19

Gizzmo

Just re upload the files (usermap/ and usermap.php) and re edit the files with the changes in readme.txt, and even tho the install_mod.php was changed no actual changes to the database have changed.

#2 Re: Modifications (1.4 / 1.5) » [Mod] Usermap » 2011-04-16 20:59:36

Gizzmo

Just wanted to post and say that version 1.1.1 has been approved. Tones of fixes and tweaks, check it out here

#3 Re: Modifications (1.4 / 1.5) » [Mod] Usermap » 2011-04-11 18:55:16

Gizzmo

I just checked and it seems to be working just fine now.

#4 Re: Modifications (1.4 / 1.5) » [Mod] Usermap » 2011-04-11 07:05:14

Gizzmo

Cyberman, i took a look at your site and when i view 'usermap/list.php' there are two errors that appear on line 21 of 'include/common.php' having to do with requiring a file. I think you need to include PUN_ROOT.

#5 Re: Modifications (1.4 / 1.5) » [Mod] Usermap » 2011-04-08 18:49:38

Gizzmo

Thanx cyberman will get fixed in the next version. As to nothing showing on the map, check if the console has any errors (in Google Chrome press ctrl-shift-j). Also maybe check that the users's group has permission to add to the map.

#6 Re: Modifications (1.4 / 1.5) » [Mod] Usermap » 2011-04-08 06:57:41

Gizzmo
cyberman wrote:

would it be possible to add a checkbox for users to have their location inside their profile but switch off showing on map?

First off, the location a user sets to the User map is not the same as the basic 'Location' ( set in profile->personal ). Second, the location a user sets to the User map is no were displayed on their profile (yet). So if a user doesn't want their location on the map, they can just remove it.

#9 Re: Modifications (1.4 / 1.5) » [Mod] Usermap » 2011-04-07 18:54:25

Gizzmo
Franz wrote:

I just unpublished the release so that you can reupload the package. (You should receive an email now.)

Thanx, but maybe there should be a better way to do this. wink

#10 Re: Modifications (1.4 / 1.5) » [Mod] Usermap » 2011-04-07 18:42:25

Gizzmo

Thanx, has been added to my Github repo, but im not sure how to get it onto Fluxbb resource page with out creating a new version.

#11 Re: Modifications (1.4 / 1.5) » [Mod] Usermap » 2011-04-07 06:53:51

Gizzmo

Well there are only two files per language, so it seems a little redundant to use a folder.

#12 Modifications (1.4 / 1.5) » [Mod] Usermap » 2011-04-06 18:43:36

Gizzmo
Replies: 25

Its been a while since i updated my mods, and it took alot to start again, and it has updated for Fluxbb 1.4.5. I rewrote 99% of the JS code and Added a context menu. No new features tho.

Modification here: http://fluxbb.org/resources/mods/usermap/releases/1.1/

Thank you.

#13 Re: Core development » Only admins should be able to run the upgrade script » 2010-08-02 21:11:44

Gizzmo

What so wrong with making the admin login first? Just check for a logged in admin. Then use daris' idea to make sure no other admins use the update script.

#15 Re: General support (1.4 / 1.5) » I would like to create a new page » 2010-07-11 21:55:20

Gizzmo

The reason it does that is because the style links in the header dont have a base url.

#16 Re: Modifications (1.4 / 1.5) » UserMap » 2010-07-11 21:51:35

Gizzmo

File: "./usermap/lang/English.php" line:9. Change the second 'User map'

#18 Re: General support (1.4 / 1.5) » hiding top menu items » 2010-07-08 01:02:57

Gizzmo

This is what your link code should look like:

$links[] = '<li id="unique_id"><a href="somefile.php">Text</a></li>';

As for where to put it. If you want it to display only for guests you'd put it after:

if ($pun_user['is_guest'])
{

If you want it to display for users only then put it after:

if (!$pun_user['is_admmod'])
{

If you want just one member group to see it then you need to add the following in the previous if statement:

if($pun_user['g_id'] == GROUP_ID)
    $links[] = 'Your Link Code Here'

Hope this helps.

#19 Re: General support (1.4 / 1.5) » hiding top menu items » 2010-07-07 00:01:40

Gizzmo

Currently there is no way to add group permissions to the links added though the admin interface. The best way to do that is to edit the source.

#20 Re: Modifications (1.4 / 1.5) » UserMap » 2010-07-06 23:51:01

Gizzmo

Very odd that having your base_url set to that would screw it up. Must be the way you server is set up.

#21 Re: Modifications (1.4 / 1.5) » UserMap » 2010-07-04 23:27:00

Gizzmo

Glad to hear that.

Iv been thinking, since the code that updates the Usermap options and Usermap group permissions are 99.99% exactly the same as in Fluxbb options and Fluxbb groups, do you have any trouble updating the Fluxbb options and Fluxbb group permissions?

#22 Re: Modifications (1.4 / 1.5) » UserMap » 2010-06-27 21:40:33

Gizzmo

Odd. First off, the readme says to add it after the user list link. Second are you sure you copied the whole code in there? There is no reason the text shouldn't be displaying.

#23 Re: Modifications (1.4 / 1.5) » UserMap » 2010-06-27 10:54:39

Gizzmo

First off, what database type are you using?

mattT09 wrote:

If I select the Location it returns me to the User map settings with the lat/long etc, but once I click Save it resets to: 0 0, 1, 500 defaults...

Those are the defaults from the install, not the defaults the plugin defines if it needs to. So that means the query isn't even updating the database.

mattT09 wrote:

I can set the flags and visibility for different user groups, but the link (on menu bar) is visible to Guests and clickable through to the map!  Hence why I think it is not storing the Guest settings.

As mentioned above if the queries are not updating the database, it would explain why the guest settings aren't saving, but wouldn't explain why the other groups are updating fine.

mattT09 wrote:

Are you hiding the link through CSS - just a thought as I set different padding on my menu bar to the default in the Air style?

No css is used to hide the link.

Sorry this post isn't very helpful but for the life of me i cant find out whats wrong.

#24 Re: Feature requests » New slogan. » 2010-06-27 10:43:12

Gizzmo

Well its just a quote from the Matrix movie, with Fluxbb instead of Matrix. Maybe if we find a different movie quote and add the word Fluxbb into it.

#25 Re: General support (1.4 / 1.5) » just upgraded to 1.4.0 and have a CSS question » 2010-06-26 23:23:07

Gizzmo

Look in section 2.1 (Common Styles - Page Layout)

Try something like this.

.pun {
    padding: 30px 0;
    width:700px;
    margin: 0 auto;
}

Board footer

Powered by FluxBB 1.5.0