vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Hideaways (https://vborg.vbsupport.ru/showthread.php?t=92397)

djsydeburnz 04-07-2006 11:13 AM

if i create the forum, i get this error: Fatal error: Unable to proceed with save while $errors array is not empty in class vb_datamanager_forum in /includes/class_dm.php on line 758

then if i hit refresh it says i allready have a forum.

when i try to edit, i get this error:
Invalid Forum specified. If you followed a valid link, please notify the administrator.

i cannot see any forums, there are none listed in my adminCP either.

any help is appreciated!

amykhar 04-07-2006 11:27 AM

First, tell me every change you made to hideaway.php. And, if you didn't make any, that's your first problem. You were supposed to ;)

Amy

djsydeburnz 04-08-2006 12:30 AM

i would assume you are talking about post 21 in this thread. my hideaway.php says the following:

Code:

// Throw the whole mess in the database.
        $db->query_write("INSERT INTO ".TABLE_PREFIX."usergroup (title,usertitle,ispublicgroup) VALUES ('$title','$usertitle',$ispublicgroup)");

post 21 says this:

Quote:

Originally Posted by aethro
open hideaway.php

Find
Code:


// Throw the whole mess in the database.
$db->query_write("INSERT INTO ".TABLE_PREFIX."usergroup (title,usertitle,showinlist,ispublicgroup) VALUES ('$title','$usertitle',$showinlist,$ispublicgroup)");

Replace with
Code:

// Throw the whole mess in the database.
$db->query_write("INSERT INTO ".TABLE_PREFIX."usergroup (title,usertitle,ispublicgroup) VALUES ('$title','$usertitle',$ispublicgroup)");



djsydeburnz 04-08-2006 12:31 AM

seems like the file i got allready had this change in it. is there another edit?

djsydeburnz 04-08-2006 12:36 AM

if its the edit about:

Code:

eval(print_standard_redirect('hideaway_added'));
i added that in both places in the hideway.php

how about the original install txt so i can try it the right way.

amykhar 04-08-2006 02:44 AM

no, it's the edit about setting the parent forum id and the forum title names. :)

and as far as it telling you that you already have a hideaway, delete the usergroup that it created.

djsydeburnz 04-08-2006 05:38 PM

ah...i think i might be getting somewhere now. i didnt think to look in the actual php script. thanks for being patient. i forsee visiting paypal in your near future.

SuperFly 04-08-2006 07:59 PM

Code:

Database error in vBulletin 3.5.4:

Invalid SQL:
UPDATE vbusergroup SET

### UPDATE QUERY GENERATED BY fetch_query_sql() ###
        `title` = 'Administrators',
        `description` = '',
        `usertitle` = '',
        `opentag` = '<b><font color=\"gray\">',
        `closetag` = '</font></b>',
        `passwordexpires` = '180',
        `passwordhistory` = '360',
        `forumpermissions` = '1048575',
        `attachlimit` = '0',
        `pmquota` = '50',
        `pmpermissions` = '3',
        `pmsendmax` = '5',
        `calendarpermissions` = '63',
        `wolpermissions` = '31',
        `adminpermissions` = '3',
        `genericpermissions` = '205520831',
        `genericoptions` = '23',
        `profilepicmaxwidth` = '100',
        `profilepicmaxheight` = '100',
        `profilepicmaxsize` = '65535',
        `avatarmaxwidth` = '92',
        `avatarmaxheight` = '92',
        `avatarmaxsize` = '20480',
        `vbspacecomments` = '31',
        `journalpermissions` = '34783',
        `arcadepermissions` = '255',
        `photoplogpermissions` = '32767',
        `photoplogmaxfilesize` = '512000',
        `photoplogmaxfilelimit` = '10',
        `ecdownloadpermissions` = '4095',
        `ecexcludecatlist` = '',
        `ecmaxdailydl` = '-1',
        `ecmaxuploadtotal` = '-1',
        `hideawaypermissions` = '1'
WHERE usergroupid=6;

MySQL Error  : Unknown column 'hideawaypermissions' in 'field list'
Error Number : 1054
Date        : Saturday, April 8th 2006 @ 03:55:30 PM
Script      : http://www.beforums.net/admincp/usergroup.php
Referrer    : http://www.beforums.net/admincp/usergroup.php?do=edit&usergroupid=6
IP Address  : 24.131.110.97
Username    : Terowin
Classname    : vb_database

any ideas?

Tyegurl 04-08-2006 08:34 PM

you are missing the file edits like the rest of us. if you go to amy's forum and pay $10 for the vbulletin membership you can find out the edits needed. i personally haven't sorry or i would give you the edits for free.

SuperFly 04-08-2006 10:28 PM

That makes no difference if im using the admincp and geting it.

Tyegurl 04-08-2006 10:30 PM

yes but her files have not been edited....not the templates the files you uploaded...i believe there are edits on them if i am not mistaken...look at post hold on...#82 have to make edits to hideaway.php

i have the same error...post #76

amykhar 04-08-2006 11:59 PM

wait a sec gang - the file edits are't there. They're here in this support thread.

Tyegurl 04-09-2006 12:07 AM

i must have missed them then....i thought they were for something else. lol sorry....i will look and read a little closer this time.

SuperFly 04-09-2006 11:30 AM

Code:

ALTER TABLE xusergroup ADD hideawaypermissions INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL
Edit x with your userbase data table, for instance mine is vb

open hideaway.php
Find
Code:

// Throw the whole mess in the database.
$db->query_write("INSERT INTO ".TABLE_PREFIX."usergroup (title,usertitle,showinlist,ispublicgroup) VALUES ('$title','$usertitle',$showinlist,$ispublicgroup)");

Replace with
Code:

// Throw the whole mess in the database.
$db->query_write("INSERT INTO ".TABLE_PREFIX."usergroup (title,usertitle,ispublicgroup) VALUES ('$title','$usertitle',$ispublicgroup)");


Tyegurl 04-10-2006 02:53 AM

tyvm! finally got it to work....couldn't do the query for some reason through my vbulletin...contacted my host...but i went to mysql directly and ran it from there. perfect and finally!!! woohoo ty amy

okay not so perfect....still getting errors and i tried both ways of that code...

Fatal error: Unable to proceed with save while $errors array is not empty in class vb_datamanager_forum in /includes/class_dm.php on line 758

i do not understand i am sorry can someone treat me like a 2 year old and tell me what i haven't done?

i have my usergroup but i just don't get how i get this message after i hit my hideaway.php link....

amykhar 04-10-2006 09:56 AM

Tyegurl, it looks like you also didn't do the required edits to the hideaway.php file to set the parent forum for the hideaways.

Tyegurl 04-10-2006 10:41 AM

Find
Code:

// Throw the whole mess in the database.
$db->query_write("INSERT INTO ".TABLE_PREFIX."usergroup (title,usertitle,showinlist,ispublicgroup) VALUES ('$title','$usertitle',$showinlist,$ispublicgroup)");

Replace with
Code:

// Throw the whole mess in the database.
$db->query_write("INSERT INTO ".TABLE_PREFIX."usergroup (title,usertitle,ispublicgroup) VALUES ('$title','$usertitle',$ispublicgroup)");


these right? i did them....and my phrases are there i checked each one....
okay i reread that line about 20 times and now i see what you are saying....omg i am so frutsrated!! sorry it just wasn't registering in my brain....

i need to do the file edit dealing with the parent forum...i will go look through this again but i don't remember seeing it and i know the txt file is still missing because i tried to download and reinstall last night....

i get my line 758 error...i refresh and i get the all ready have a forum....then i delete the user group and i get try again...back to the beginning....

okay so i have looked through the thread again and i came up with the one post anywhere...and theput the link anywhere you want....what is the edit link? and what is the create link?(hideaway.php??) and they go in the hideaway.php file file right?

nm i guess if i actually read the php file it would tell to change the forum ID omg do i feel blond....

amykhar 04-10-2006 11:44 AM

No. I'm talking about the line near the top of the code that is clearly commented and tells you to put in the parent forum id. Forums have parents - sometimes categories, sometimes other forums.

Amy

Tyegurl 04-10-2006 12:15 PM

okay and finally lol i have it up and my own hideaway is running...phew

i think it might have been easier to just say read the the hideaway.php file where the main script starts and edit between the " " and then replace the code in this thread...IMO that is. There is no install text and you have been very vague about where to look. Alll you keep saying is code code code... I am not stupid but when you say file edits and i did the "file" edits listed in the thread...you could have just been a little clearer. but thanks i finally got it just before you posted. which btw is still very vague. We are not all coders like you Amy. Wish I was. I am still learning a lot here. I hope some day to be able to code. Until then well I just have to muddle through.

amykhar 04-10-2006 01:08 PM

There was an install text file and I lost it somehow during the upgrade. I just haven't had time to rewrite the thing.

Tyegurl 04-10-2006 03:43 PM

okay it worked once and i have not edited anything since i created my hideaway....now its reverted somehow and i can't create my hideaway again....and i get the error i had b4 line 758 one and wow this sucks!!!

worked great once but then it disappeared after i followed the link. i don't understand how this is happening....i am jinxed i swear to god.

wait could it be because i deleted the link for the forum?

oh i figured it out...when i set up the forum id to create the hideaways i created a link to them but that didn't work so i deleted it unfortunately it was the parent forum of the hideaways and it deleted them too....darnit!!

Replicators 04-10-2006 09:59 PM

This is the first mod i have come across that has no instructions o0

I have tried to figure this out, and seems good, but there is so much room for improvement, like a better userface or something. This would confuse the hell out of my users. Could it be possible for you to make a readme giving installation instructions, as well as a user guide of some sort?

Tyegurl 04-10-2006 10:34 PM

Quote:

Originally Posted by amykhar
There was an install text file and I lost it somehow during the upgrade. I just haven't had time to rewrite the thing.


lol

just a few posts up should help you immensely if you are confused! i had problems too...LOTS

djsydeburnz 04-29-2006 02:53 PM

amy, i have been testing fine for about 2 weeks, and i have a question. is there a limit to the number of forums allowed? been working fine and then all of the sudden, i am getting that same error:

PHP Code:

Fatal errorUnable to proceed with save while $errors array is not empty in class vb_datamanager_forum in /includes/class_dm.php on line 758 

it creates the usergroup and sets the leader, but then does not create the forum. i checked the hideaway.php file and all the changes I made are still in tact not sure what changed??

harry1951 05-18-2006 10:39 AM

Quote:

Originally Posted by amykhar
There was an install text file and I lost it somehow during the upgrade. I just haven't had time to rewrite the thing.

I knew that I was having it somewhere and found it on a backup :)

amykhar 05-22-2006 05:09 PM

OK. I have just discovered an issue that makes this very much an ADVANCED modification. This mod will conflict with other mods, such as the forum statusicon mod and other modifications that impact the forum database table.

If you are getting datamanager errors when it tries to create the forum, this is what's going on. Go lookin in the forumdata_start plugins and see which ones have required variables and adjust your hideaway.php file to set those required variables.

If you are not a coder, I am sorry, but I can only provide compatibility fixes as a premium service. I'm going to leave the code here because many of you do not use conflicting modifications and others of you can modify the php.

amykhar 05-22-2006 05:10 PM

Quote:

Originally Posted by harry1951
I knew that I was having it somewhere and found it on a backup :)

Thank you :)

LBSources 05-23-2006 05:17 PM

Quote:

Originally Posted by wcbryant
I've got it set up on a test forum, but for some reason the new usergroups aren't being given permission to even view the new forum.

So user 11 'Dotty' (name changed to protect the innocent) is in a usergroup allowed to create. She makes one, and both the 'Dottyhideaway' group and the 'Dotty's Hideaway Forum' are both successfully created. People can apply to Dotty's group, she can add people. But no one can see or access the forum, even with a direct link (except me, the administrator). When I go in to 'Edit Forum Permissions For Usergroup: Dottyhideaway in Forum Dotty's Hideaway Forum', it's set to all no straight down through the options.

Clearly I've done something wrong along the way if no one else has run into it, but after looking around with some help for a while at the hideaway.php code (stock from the download with the modifications directed in this thread), I'm not seeing where the problem is.

Thanks in advance, and great extensions, Amy. I've flagged a few of yours as features I'd like to go live with on my production site. :)

have you figured this out wc? amy any ideas? same issues here ..

LBSources 05-23-2006 05:27 PM

Quote:

Originally Posted by nexus851
When a register user try to create a forum, it gives them a "you do not have permission to access this page. This could be due to one of several reasons: etc..." message, but yet still made the forums for then.

I have the "Registered" usergroup set to yes for making forums, so i dont understand why it would give that message.

Please help...

another similar happening here ...

i believe it has something to do with
Code:

// Now, to set up the basic usergroup permissions.
        $usergroupid = $db->insert_id();
        // I cloned the permissions from the Registered user group.
        $usergroupinfo= $db->query_first("SELECT forumpermissions FROM ".TABLE_PREFIX."usergroup where usergroupid=23");
        $db->query_write("UPDATE ".TABLE_PREFIX."usergroup set forumpermissions=$usergroupinfo[forumpermissions] where usergroupid=$usergroupid");

Im trying to clone/replicate user permissions based on usergroup 23, yet its all set to 'NO' in the forum permissions ..

any ideas?

amykhar 05-23-2006 05:34 PM

The first thing you need to do when debugging the problem is to look at the $usergroupinfo array and make sure it's not empty.

Also, make sure that it's getting the right usergroupid when it inserts it.

Commenting out the database inserts and putting in print statements for debugging should help you figure out why it's failing with your changes in place.

LBSources 05-23-2006 05:39 PM

Quote:

Originally Posted by amykhar
The first thing you need to do when debugging the problem is to look at the $usergroupinfo array and make sure it's not empty.

Also, make sure that it's getting the right usergroupid when it inserts it.

Commenting out the database inserts and putting in print statements for debugging should help you figure out why it's failing with your changes in place.

hello amy, the only thing i have done is change change your original 2 to 23 :cross-eyed: i havent made any other drastic changes except whats in the install docs .. and the db changes needed here which have it working somewhat ..

amykhar 05-23-2006 06:07 PM

yes, but to find the problem, you've got to see where in the process it's going wrong. I can't do that with the one running on my server because it works. I can't reproduce the problem :)

LBSources 05-23-2006 07:24 PM

understood .. unfortunately i dont know how to set the output to print ... hmmm ... ok ..

can anyone else suggest a solution .. or have any of the other members having this problem resolve them ..

LBSources 05-23-2006 07:43 PM

Well its ok .. Amy i understand your busy and dont have time to officially support this hack .. ill just uninstall since youve indicated that it can be problematic with other hacks and since i soo many hacks ill leave it at that ..


All times are GMT. The time now is 11:31 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.03698 seconds
  • Memory Usage 1,832KB
  • 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
  • (11)bbcode_code_printable
  • (1)bbcode_php_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (34)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