vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Major Additions - GRPS: Groups Commune 2.0.x (https://vborg.vbsupport.ru/showthread.php?t=127303)

sabret00the 09-09-2007 12:24 PM

Quote:

Originally Posted by CasperCBT (Post 1327630)

it doesn't even say "done"? are you getting any errors at the top of your groups pages?

sabret00the 09-09-2007 12:31 PM

Quote:

Originally Posted by Iskib (Post 1334672)
Well it has been a few days and no response... doesn't anyone know how to solve the problem I am having?

Just for the record, don't blame me. blame me vbulletin.org i put in a request a long time ago for an overhaul of the subscription system to give updates for every reply in support threads and i got a point blank refusal. if i see a reply in my inbox and i don't check the thread and then forget about the reply. i do not get another update to the thread and then i get people +++++ing about no support because they never got a reply within a few days of posting a problem.

As to your issues (not that it matters as you've uninstalled but for future people that have the same issues: There is no real support for the whosonline as per the stock vBulletin project. Please see this thread as to a solution regarding this problem.

As per your other issue. I believe someone wanted to mess with the breadcrumbs early in the thread. If a search doesn't turn up anything then i'm not sure what to say. It's outside the realms of 'support' i'm able to offer right now.

sabret00the 09-09-2007 12:33 PM

Quote:

Originally Posted by djilou (Post 1327661)
yes for me too

i'm really having problems locating the issue here. i know it exists but can't find the cause. sorry that's the best i can do it in terms of an update at this very moment in time. i'll have more of a look at it later.

sabret00the 09-09-2007 12:35 PM

Quote:

Originally Posted by CasperCBT (Post 1333000)
can someone tell me why this happend s?

http://www.cibertangas.es/pruebas/groups/groups.php?g=1

turn on your error reporting (ask your server guy/support to do it) and it'll display the error you're getting. i believe it's merely down to a misconfig in your grps config.

sabret00the 09-09-2007 12:38 PM

Quote:

Originally Posted by mickmel (Post 1331551)
Agreed. You assume that everyone has already installed multiple hacks before, which is probably taking too much for granted. Assume this is the reader's first install and go from there.

if you would like to offer suggestions, then please do. sadly that's all i can really say on this matter. i know what you're saying but i seriously don't see how it relates. if you can tell me that i should be saying XXXX instead of YYYY then i'll be sure to make an easier to comprehend version as per your guidance.

sabret00the 09-09-2007 12:38 PM

Quote:

Originally Posted by jilly (Post 1332343)
The "Ignore" feature doesn't seem to be working in the groups - i.e. if you put someone on ignore on the main board, it's not ignoring them in the groups

noted :)/:(

sabret00the 09-09-2007 12:40 PM

Quote:

Originally Posted by blindMoe (Post 1332509)
Not sure if anyone already posted this but is a bug fix for viewing the groups a user is in:
(Example url: http://www.yoursite.com/forums/group...ups.php?u=1234)

In groups/viewgroups.php on line 81:

Find:

Code:

        $grps_mygroups = $db->query_read("
                SELECT grps.groupid, grps.title, grps.description, grps.approved, grps.leaderid, grps_setting.image_name
                FROM grps
                LEFT JOIN " . TABLE_PREFIX . "user ON (user.userid = grps.leaderid)
                LEFT JOIN grps_setting ON (grps_setting.groupid = grps.groupid)
                WHERE grps.approved = '1' AND grps.groupid IN($grps_ids_imploded)
                ORDER BY grps.title ASC

Replace with:
Code:

        $grps_mygroups = $db->query_read("
                SELECT grps.groupid, grps.title, grps.description, grps.approved, grps.leaderid, grps_setting.image_name
                FROM grps
                LEFT JOIN " . TABLE_PREFIX . "user ON (vb_user.userid = grps.leaderid)
                LEFT JOIN grps_setting ON (grps_setting.groupid = grps.groupid)
                WHERE grps.approved = '1' AND grps.groupid IN($grps_ids_imploded)
                ORDER BY grps.title ASC


Sorry if someone already posted this but I just installed the newest version and it was still in there. Also, wasn't about to read through 123 pages to find out ;)

blindMoe

a fix was posted by me a few pages back. thanks for the assistance though. it REALLY helps.

sabret00the 09-09-2007 01:05 PM

Quote:

Originally Posted by sabret00the (Post 1335396)
i'm really having problems locating the issue here. i know it exists but can't find the cause. sorry that's the best i can do it in terms of an update at this very moment in time. i'll have more of a look at it later.

working on this atm.

sabret00the 09-09-2007 01:05 PM

Quote:

Originally Posted by sabret00the (Post 1335402)
noted :)/:(

fixed :)

if i can get the reply bug sorted. it'll be in the update i'll release today.

sabret00the 09-09-2007 01:29 PM

Ok here's a newreply.php i just tested. This problem is really getting on my goat now because i don't actually check for permissions at all. It checks to see if you're a member of the group and it checks to see if you're a member of the forums (if you have a userid) bar that. It doesn't check anything. i've put in a couple flags as to notify you of what the problem is. if you can let me know the results if any then i'd be grateful.

Please note i only have like a two hour window to work on this today. So if you get back to me with this info later than that, please don't get pissy if it takes me a while to reply.

Code Monkey 09-09-2007 02:45 PM

All I got is a white screen. I removed the . from ./ on lines 48 - 53. Page loaded fine but I still get the no permission. It could be because your not checking some things, that some other things that are needed aren't being set.

Melissa Miller 09-09-2007 03:01 PM

I get this warning:

Warning: main(/home/havanese/public_html./includes/functions_newpost.php) [function.main]: failed to open stream: No such file or directory in /groups/newreply.php on line 48

Fatal error: main() [function.require]: Failed opening required '/home/havanese/public_html./includes/functions_newpost.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/havanese/public_html/groups/newreply.php on line 48

I took out all the dots in lines 48-52 because I got the error on each line.
This fixed the quick reply... I can now use it! :)

I still can not use Go Advanced. It says I am not a member of that group, however I am going to see the update you posted today and see if it fixes that problem.

sabret00the 09-09-2007 03:21 PM

it says you're not a member of the group melissa. wonderful. it means there's been progress.

what's it say at the top of your no_permission_page() CM?

Code Monkey 09-09-2007 04:01 PM

Ahh, I didn't see it because it's a dark style.

Quote:

you're not a member of this group

sabret00the 09-09-2007 04:42 PM

Again no email from vBulletin.org how on earth am i supposed to fix bugs within a window of opportunity if i can't even be alerted as to feedback properly?

anyway here's another one. please test asap again.

Melissa Miller 09-09-2007 04:46 PM

Now I get this at the top of the page... still the no permission error.

you're not a member of this group (1)
Group ID: 0
Array ( [0] => 2 )

sabret00the 09-09-2007 05:18 PM

sorry got another one for you to test.

and just to confirm. your url when you click "new reply" is http://yoursite.com/groups/newreply.php?do=newreply&t=9

the bold part is the important bit.

txsbmw 09-09-2007 05:25 PM

Quote:

Originally Posted by sabret00the (Post 1335557)
sorry got another one for you to test.

and just to confirm. your url when you click "new reply" is http://yoursite.com/groups/newreply.php?do=newreply&t=9

the bold part is the important bit.

I get this, with the newest newreply.php file:

Quote:

$threadinfo:

Array
(
[threadid] => 4
[groupid] => 1
[userid] => 4
[username] => innersanctum
[title] => Division winners
[dateline] => 1188473013
[iconid] => 0
[lastposterid] => 4
[lastposterusername] => innersanctum
[lastpostdateline] => 1188473013
[replies] => 0
[firstpostid] =>
[closed] => 0
[stuck] => 0
[icontitle] =>
[iconpath] =>
[postcount] => 0
[status_icon] =>
[icon] =>
[threadstarted_date] => August 30th, 2007
[threadstarted_time] => 07:23 AM
[lastposted_date] => August 30th, 2007
[lastposted_time] => 07:23 AM
)

When I click New Reply, the url that shows is http://yoursite.com/groups/newreply.php?do=newreply&t=4

sabret00the 09-09-2007 05:33 PM

i killed the page before i got the info i wanted.

btw feel free to kill any info you want.a ll i really i need from that array is threadid, groupid, userid.

anyhoo another newreply.php

can i get all the info from the top of the page again please.

Melissa Miller 09-09-2007 05:35 PM

Now it gives me this on a white page instead of the no permission part.

$threadinfo:

Array
(
[threadid] => 18
[groupid] => 2
[userid] => 550
[username] => mintchip
[title] => lens
[dateline] => 1186187350
[iconid] => 0
[lastposterid] => 1
[lastposterusername] => Melissa Miller
[lastpostdateline] => 1189359899
[replies] => 3
[firstpostid] =>
[closed] => 0
[stuck] => 0
[icontitle] =>
[iconpath] =>
[postcount] => 0
[status_icon] => New Posts
[icon] =>
[threadstarted_date] => 08-03-2007
[threadstarted_time] => 07:29 PM
[lastposted_date] => 09-09-2007
[lastposted_time] => 12:44 PM
)

Go advanced gives me the same error as above.

txsbmw 09-09-2007 05:38 PM

Ok I get the same as my last thread but do get the message editor box to type a reply. When I click submit reply I get this at the top with the no permission message underneath:

Quote:

you're not a member of this group (1)
Group ID: 0
Array ( [0] => 1 )

sabret00the 09-09-2007 05:43 PM

all of this is actually helping. thanks all. every single post is like a huge leap forward here. of course i'm disappointed because i'm almost at the alpha stage of 3.0 so i'd rather this thread didn't exist for a week or two, but for you lot i'm happy, your issue looks like it's finally about to be solved.

sabret00the 09-09-2007 05:44 PM

PS Melissa you can delete the url from your post now. i got the info i needed.

Code Monkey 09-09-2007 05:46 PM

This last one worked

txsbmw 09-09-2007 05:48 PM

YIPPPPPPPPEEEEEEE Working now!!!! Other than I am still getting the $threadinfo stuff when you click new reply. But I can reply now.

sabret00the 09-09-2007 05:53 PM

https://vborg.vbsupport.ru/external/2007/09/37.jpg

Adrianneeeeeeeeeeeeeeeeee

I'll package it up now.

Melissa Miller 09-09-2007 06:01 PM

Ok I can reply now and it works, but this still shows up at the top of the page.

$threadinfo:

Array
(
[threadid] => 18
[groupid] => 2
[userid] => 550
[username] => mintchip
[title] => lens
[dateline] => 1186187350
[iconid] => 0
[lastposterid] => 1
[lastposterusername] => Melissa Miller
[lastpostdateline] => 1189364345
[replies] => 5
[firstpostid] =>
[closed] => 0
[stuck] => 0
[icontitle] =>
[iconpath] =>
[postcount] => 0
[status_icon] => New Posts
[icon] =>
[threadstarted_date] => 08-03-2007
[threadstarted_time] => 07:29 PM
[lastposted_date] => 09-09-2007
[lastposted_time] => 01:59 PM
)

Thanks so much!

sabret00the 09-09-2007 06:23 PM

NEW ZIP/RELEASE

Groups v2.0.13.zip:
various bug fixes including ability to ignore members in groups and newreply bug.

For those of you who were picking up the various dotted files posted here and there. they're all in here along with a new viewthread.php which fixes adds the ignore function to group threads. enjoy :)

txsbmw 09-09-2007 06:49 PM

Upgraded and working like a charm here!

Rickeo 09-09-2007 07:15 PM

*issue Resolved*

Didn't Run Installer

Doh!!!!! Lmao

Iskib 09-09-2007 10:02 PM

Well well.. Now that your answering questions. For the who's online link you gave in previous post . That don't really tell me anything other the way vbulletin handles WOL should be different.

I remember way back when we could just edit the /include/functions online .php mistake me if I am wrong with the name of the file.

Going on the thread you sent me to couldn't you just write a plugin that would tell all the WOL places in Groups ?

Also yes there was a post earlier in this thread I think by vprovision or something along those lines about changng the breadcrumb part of groups to make the vbulletin style (i.e. Forums ---> Group --- > Group name etc... Tried pming him no response for his step by step guide. So if anyone knows how to do this or what changes need to be made for this that would be great.

I know my members would like public Groups, but I can't release it public until The WOL places and breadcrumbs are fixed. Everything else is working great as far as I can tell.

Only suggestions other then the above ones would be to allow the group leader to upload a group images and to somehow integrate photoplog, photopost etc.. or maybe even not intregrate a gallery software and just let group members upload pics to the group kind of like myspace does.

sabret00the 09-09-2007 10:17 PM

Quote:

Originally Posted by Iskib (Post 1335778)
Well well.. Now that your answering questions. For the who's online link you gave in previous post . That don't really tell me anything other the way vbulletin handles WOL should be different.

I remember way back when we could just edit the /include/functions online .php mistake me if I am wrong with the name of the file.

Going on the thread you sent me to couldn't you just write a plugin that would tell all the WOL places in Groups ?

Also yes there was a post earlier in this thread I think by vprovision or something along those lines about changng the breadcrumb part of groups to make the vbulletin style (i.e. Forums ---> Group --- > Group name etc... Tried pming him no response for his step by step guide. So if anyone knows how to do this or what changes need to be made for this that would be great.

I know my members would like public Groups, but I can't release it public until The WOL places and breadcrumbs are fixed. Everything else is working great as far as I can tell.

Only suggestions other then the above ones would be to allow the group leader to upload a group images and to somehow integrate photoplog, photopost etc.. or maybe even not intregrate a gallery software and just let group members upload pics to the group kind of like myspace does.

Well well? wtf are you on? And please learn to talk to people better than that. I answer when i can based on my calender, not your desire. Please remember this is a hobby. As i stated in the thread it was my birthday so i never done anything and then i was allowed hangover time to get to grips with my life and the responsibilities i put to one side. Not to mention vbulletin.org doesn't mail me for every support request i get and i don't have time to sporadically refresh this thread.

WOL: You're not wrong, you can edit the files or it could be handled by login. however given the location of the files and the dynamic nature of the script. the current method isn't feasible as per stated in that thread.

Your Members: I do not know what to suggest regarding your breadcrumbs/WOL issues. As stated (not sure if you've read the thread) i'm working on 3.0, thus most of my creative juices and time go into that right now as it's the priority. Neither of those two issues will be sorted out for the 2.0.x branch of the code.

Group Images: It's already been coded for 3.0.x

txsbmw 09-09-2007 11:31 PM

Quote:

Originally Posted by Iskib (Post 1335778)
Well well.. Now that your answering questions.

WOW! Besides him being busy and having a life as well as celebrating a birthday, he was trying to get the reply feature to work for all of us so the groups would work properly. I would rather him have worked on that reply issue then spend the little free time he did have to get on here instead to answer questions that for the most part have already been answered in previous posts.

BTW sabret00the great work today getting that issue resolved. My members are all happy campers now.

Iskib 09-10-2007 01:59 AM

Quote:

Originally Posted by txsbmw (Post 1335826)
WOW! Besides him being busy and having a life as well as celebrating a birthday, he was trying to get the reply feature to work for all of us so the groups would work properly. I would rather him have worked on that reply issue then spend the little free time he did have to get on here instead to answer questions that for the most part have already been answered in previous posts.

BTW sabret00the great work today getting that issue resolved. My members are all happy campers now.

Txsbmw Yes you have a point if the problem that you are talking about happen before I posted questions like a week ago. I waited patiently and no one would respond. Finally he responded and then responded to the problem you all were having. I don't mean to be an A******, but as the same with you members get on my back about things not working/showing up the same as they would you. I guess it gets me frustrated when I don't have an answer for them.... same as you as a coder would get frustrated when you don't have an answer for someone like me.

sabret00the: bro I wasn't trying to be a d*** just wanted to get this up and running because it is a great mod and I know my members would love it. So I guess if you or anyone else good at php get some free time and would help with those problems that would be great.... if not I guess I can wait and make the groups public when 3.0 comes out. Not a problem.

Is there an ETA on 3.0 ?

rainyleaves 09-10-2007 07:04 PM

Thanks, sabret00the !!

This is my question for 3.0

* First : Will you include PM for Group members?
I mean, can I PMming only for my custom group members?
I really want this Group Tool function.

*Second: Can I use variable 'Groups Limit Per User' by VB user group permission?

And When you will upload 3.0?

Sorry my English. :)
Thanks.

sabret00the 09-12-2007 07:03 AM

Quote:

Originally Posted by Iskib (Post 1335876)
Txsbmw Yes you have a point if the problem that you are talking about happen before I posted questions like a week ago. I waited patiently and no one would respond. Finally he responded and then responded to the problem you all were having. I don't mean to be an A******, but as the same with you members get on my back about things not working/showing up the same as they would you. I guess it gets me frustrated when I don't have an answer for them.... same as you as a coder would get frustrated when you don't have an answer for someone like me.

sabret00the: bro I wasn't trying to be a d*** just wanted to get this up and running because it is a great mod and I know my members would love it. So I guess if you or anyone else good at php get some free time and would help with those problems that would be great.... if not I guess I can wait and make the groups public when 3.0 comes out. Not a problem.

Is there an ETA on 3.0 ?

No ETA on 3.0. Especially considering it'll go through heavy review for the beta test.

sabret00the 09-12-2007 07:06 AM

Quote:

Originally Posted by rainyleaves (Post 1336430)
Thanks, sabret00the !!

This is my question for 3.0

* First : Will you include PM for Group members?
I mean, can I PMming only for my custom group members?
I really want this Group Tool function.

*Second: Can I use variable 'Groups Limit Per User' by VB user group permission?

And When you will upload 3.0?

Sorry my English. :)
Thanks.

Your English is fine :)

PM's for group members. It's not a feature that i've put in at this point due to how open for abuse it is. However I'll be sure to reconsider this when I get it into beta and if I opt against it, I'll be sure to put in the necessary hooks to enable it with a simple plugin/product.

Regarding your second point/request: The group limit function was removed for 3.0 i'm afraid.

rainyleaves 09-12-2007 08:05 AM

Quote:

Originally Posted by sabret00the (Post 1337481)
However I'll be sure to reconsider this when I get it into beta and if I opt against it, I'll be sure to put in the necessary hooks to enable it with a simple plugin/product.

Really thanks for your reply and conclusion. :)

Your donation link is broken.
http://www.ebslive.com/forums/images...pal_donate.gif
How can I donation?
Please check it.

And I have new request.
Could you include 'This is my groups' link button at Memberinfo page.
This mean, Members can open who has group's list(Can open Own's group page or Own's groups list) from Memberinfo page.
I think this fuction is very useful for member's networks.

Thanks :)

txsbmw 09-12-2007 01:13 PM

I found a couple of "issues" at least I think they are issues. Maybe it was designed to be this way:

1) Posts within the groups are not reflecting on the members post count. In other words if you make a post within one of the groups it does not add to your post count.

2) If you make 2 posts right after one another within the same thread of a group it merges the 2 posts. What I mean by this is say I make a post within thread X a couple of minutes later I go to make another post within thread X in which no one else has replied to since my last post, it will merge my 2 posts. However, if I make a post, then member Y makes a post, then I come back and make a post. My posts will show up as individual posts (this is within the same thread of course).

Hope I made sense in explaining that.

djilou 09-12-2007 03:08 PM

2) AdminCp => GRPS settings => Disable Double Post Prevention => Yes


All times are GMT. The time now is 06:14 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02490 seconds
  • Memory Usage 1,869KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (19)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete