TinyPortal

Development => Support => Installation => Topic started by: xKillswitchx on February 22, 2006, 06:29:41 PM

Title: Permissions Error After Instal
Post by: xKillswitchx on February 22, 2006, 06:29:41 PM
Im am currently on SMF 1.06, with the VisualWarning mod and Now Playing Mod installed.  I just installed TinyPortal after reading up on it a bit, and started in on creating and moving blocks around.  I am using the default theme at the moment.  A link to the forums can be found here, if needed. 
http://zeldalegacy.net/forums/index.php (http://zeldalegacy.net/forums/index.php)

My problem is, when I try to go to set member permissions now, I get this error message ...

Parse error: parse error, unexpected ',', expecting ')' in /home/zeldaleg/public_html/forums/Sources/ManagePermissions.php on line 996

This never happened before TP was installed.  Is there anyway to fix this without rolling backwards?  Im not even sure how this happened, even if it was caused by installing TP. 

Ive been wanting to allow members to write articles and submit downloads, but I cant get into the controls.  Also, while Im at it , I have set the download size to be no higher than 8,000 kb, so I can upload a 4 mb zip, but I keep getting an error.  Will look around forums to solve that, unless anyone can dive into that quickly.

Thanks for any help, and thanks for TinyPortal.  It is a very nice system.
Title: Re: Permissions Error After Instal
Post by: borgBOB on February 22, 2006, 06:48:13 PM
You will have to manually edit the ManagePermissions.php file.
Copy the one from your server to your hard drive, and open it with a editing program. Not Wordpad. (It messes up the formating)
I think 2 mods tried to access the same area of this file and there is some fixing to do.
I recomend ConTEXT, for editing php files, but there are many other good free applications. Or you could post the code around line 996 here, and let one of us take a shot.

For download, permissions, use the admin Download link in the user block.

For article permissions, use the TP links in the admin page.
Title: Re: Permissions Error After Instal
Post by: xKillswitchx on February 22, 2006, 06:58:56 PM
Ok, here is line 994 to 1015.  I hope this isnt too much.  Thanks for all the help you can give me.

),
         // Tinyportal end
         ,
         'visual_warn' => array(
            'visual_warn_any' => false,
            'visual_approve_any' => false,
         )
      ),
      'board' => array(
         'general_board' => array(
            'moderate_board' => false,
         ),
         'topic' => array(
            'post_new' => false,
            'merge_any' => false,
            'split_any' => false,
            'send_topic' => false,
            'make_sticky' => false,
            'move' => true,
            'lock' => true,
            'delete' => true,
            'post_reply' => true,
            'modify_replies' => false,
            'remove_replies' => false,
            'announce_topic' => false,
         ),
         'post' => array(
            'remove' => true,
            'modify' => true,
            'report_any' => false,
         ),
         'poll' => array(
            'poll_view' => false,
            'poll_vote' => false,
            'poll_post' => false,
            'poll_add' => true,
            'poll_edit' => true,
            'poll_lock' => true,
            'poll_remove' => true,
         ),
         'notification' => array(
            'mark_any_notify' => false,
            'mark_notify' => false,
         ),
         'attachment' => array(
            'view_attachments' => false,
            'post_attachment' => false,
         )
      )
   );

   // This is just a helpful array of permissions guests... cannot have.
   $non_guest_permissions = array(
      'karma_edit',
      'pm_read',
      'pm_send',
      'profile_identity',
      'profile_extra',
      'profile_title',
      'profile_remove',
      'profile_remote_avatar',
      'poll_vote',
      'mark_any_notify',


Should it be this?? 

),
         // Tinyportal end
         ,
         'visual_warn' => array(
            'visual_warn_any' => false,
            'visual_approve_any' => false,
         )'  <---- add the ' after the ) ?
Title: Re: Permissions Error After Instal
Post by: xKillswitchx on February 22, 2006, 07:02:27 PM
Oh wow, sorry but I actually figured it out.  Thanks for all the help.  There was just a " ,  " in the wrong spot.  Have no clue how that got there, but I removed it and all works now.  Thanks again for the help.
Title: Re: Permissions Error After Instal
Post by: borgBOB on February 22, 2006, 07:31:45 PM
Sometimes we help, without doing a thing. Glad you got it working.