Jump to content

BomAle

Members
  • Joined

  • Last visited

Everything posted by BomAle

  1. same, and i can't save changes like: these have in common bit... see applications\cms\modules\admin\databases\databases.php on form() function /* Bit options */ foreach ( array( 'comments', 'comments_mod', 'reviews', 'reviews_mod', 'indefinite_own_edit' ) as $k ) { if ( isset( $values[ "cms_bitoptions_{$k}" ] ) ) { $current->options[ $k ] = $values["cms_bitoptions_{$k}"]; unset( $values["cms_bitoptions_{$k}"] ); } }
  2. I think constructLoadQuery must be reviewed to populate variable or popolate \IPS\forums\Forum::roots() or children(...) like the "$forum->allowed_prefixes" /** * [Node] Fetch Child Nodes * * @param string|NULL $permissionCheck The permission key to check for or NULL to not check permissions * @param \IPS\Member|NULL $member The member to check permissions for or NULL for the currently logged in member * @param bool $subnodes Include subnodes? NULL to *only* check subnodes * @param array|NULL $skip Children IDs to skip * @param mixed $_where Additional WHERE clause * @return array */ public function children( $permissionCheck='view', $member=NULL, $subnodes=TRUE, $skip=null, $_where=array() ) thanks Ryan for the app
  3. Sat, 12 Mar 2016 15:44:25 +0000 (Severity: 2) ............... - https://invisionita.com/myadmin/?adsess=...........&app=forums&module=forums&controller=savedActions&do=form ErrorException 2: Parameter 1 to IPS\forums\_SavedAction::form() expected to be a reference, value given #0 [internal function]: IPS\IPS::errorHandler(2, 'Parameter 1 to ...', '/home/nginx/...', 13, Array) #1 /home/nginx/...../public/init.php(434) : eval()'d code(13): call_user_func_array('parent::form', Array) #2 /home/nginx/...../public/system/Node/Controller.php(413): IPS\forums\advancedtagsprefixes_hook_savedActionExtension->form(Object(IPS\Helpers\Form)) #3............ #4............ When i go on Saved Actions page i see EX2 Error... on system log i have this my temporary fix on /applications/advancedtagsprefixes/hooks/savedActionExtension.php line 13 $return = call_user_func_array( 'parent::form', array(&$form) ); php version 7.0.0
  4. On 3.4 the app permise to show categories on forum description like subforum. see the image attached. Front AdminCP I would know: 1. if the "show as categories" is almost a setting or not now 2. if the url contain filter by forum like on 3.4 (see Find more content tagged 'PS4' url on bottom of first screenshot)
  5. on each forum description you could see the prefix list setted for it
  6. Hello there is feature to show tags on forum index? with url like https://invisionita.com/tags/forums/?search_app_filters[forums][forums][]=78 this work on mod for 3.x but on screenshot i don't see this. EDIT https://invisionita.com/search/?&type=forums_topic&tags=forums&nodes=78 for 4.x
  7. I have solved with rewrite ^/forum/(?![0-9]+\-.+)(.*)$ /$1 permanent; bye
  8. @Makoto could you help me with rewrite url like: http://mysite.com/forum/forum/19-title-1/ http://mysite.com/forum/files/ http://mysite.com/forum/19-title-1/ don't touch this... this is ips4 url thing see @https://regex101.com/r/qY5lW3/4 onto nginx rules? Thanks for any replies #tested #1---------- location ~* ^/forum/(?![0-9]+\-.+).*$ { rewrite ^/forum/(?![0-9]+\-.+)(.*)$ /$1; } location / { try_files $uri $uri/ /index.php; } 2---------- location / { try_files @rules $uri $uri/ /index.php; } location @rules { rewrite ^/forum/(?![0-9]+\-.+)(.*)$ /$1 break; } not work for me