Jump to content

Iyda

Clients
  • Posts

    15
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by Iyda

  1. It actually has a value of 1.00

     

    btw when i go to customize i get a error

    Error: Undefined constant "IPS\Theme\spacious_lp_boxtrans" (0)
    #0 /home/admin/domains/justified.co/public_html/system/Theme/Theme.php(5348): IPS\Theme\css_spaciouswidgets_admin___spaciouslogin_css()
    #1 /home/admin/domains/justified.co/public_html/system/Theme/Theme.php(2543): IPS\_Theme::writeCss()
    #2 /home/admin/domains/justified.co/public_html/system/Theme/Theme.php(621): IPS\_Theme->compileCss()
    #3 /home/admin/domains/justified.co/public_html/applications/spaciouswidgets/modules/admin/spaciouswidgets/customization.php(96): IPS\_Theme->css()
    #4 /home/admin/domains/justified.co/public_html/system/Dispatcher/Controller.php(101): IPS\spaciouswidgets\modules\admin\spaciouswidgets\_customization->manage()
    #5 /home/admin/domains/justified.co/public_html/applications/spaciouswidgets/modules/admin/spaciouswidgets/customization.php(33): IPS\Dispatcher\_Controller->execute()
    #6 /home/admin/domains/justified.co/public_html/system/Dispatcher/Dispatcher.php(153): IPS\spaciouswidgets\modules\admin\spaciouswidgets\_customization->execute()
    #7 /home/admin/domains/justified.co/public_html/admin/index.php(13): IPS\_Dispatcher->run()
    #8 {main}

    But when i reload the page it then works fine? so not sure

  2. Error: Undefined constant "IPS\Theme\spacious_lp_boxtrans" (0)
    #0 /home/admin/domains/justified.co/public_html/system/Theme/Theme.php(5348): IPS\Theme\css_spaciouswidgets_admin___spaciouslogin_css()
    #1 /home/admin/domains/justified.co/public_html/system/Theme/Theme.php(2543): IPS\_Theme::writeCss()
    #2 /home/admin/domains/justified.co/public_html/system/Theme/Theme.php(621): IPS\_Theme->compileCss()
    #3 /home/admin/domains/justified.co/public_html/applications/spaciouswidgets/modules/admin/spaciouswidgets/customization.php(96): IPS\_Theme->css()
    #4 /home/admin/domains/justified.co/public_html/system/Dispatcher/Controller.php(101): IPS\spaciouswidgets\modules\admin\spaciouswidgets\_customization->manage()
    #5 /home/admin/domains/justified.co/public_html/applications/spaciouswidgets/modules/admin/spaciouswidgets/customization.php(33): IPS\Dispatcher\_Controller->execute()
    #6 /home/admin/domains/justified.co/public_html/system/Dispatcher/Dispatcher.php(153): IPS\spaciouswidgets\modules\admin\spaciouswidgets\_customization->execute()
    #7 /home/admin/domains/justified.co/public_html/admin/index.php(13): IPS\_Dispatcher->run()
    #8 {main}

     Having this error admin/?app=spaciouswidgets&module=spaciouswidgets&controller=customization&tab=loginpage

  3. 2 hours ago, Fosters said:

    Are you using the recent version? I can't see the code which you've mentioned.

    	/**
    	 * @brief	Cached URLs
    	 */
    	protected $_url	= array();
    
    	/**
    	 * Get URL
    	 *
    	 * @param string|NULL $action		Action
    	 * @return	\IPS\Http\Url
    	 */
    	public function url( $action="viewApplication" )

     

    I'm currently using the latest version that was posted i just deleted it and reinstalled and still have the same error

    Fatal error: Declaration of IPS\applicationform\Position\_Data::url(?string $action = 'viewApplic...') must be compatible with IPS\Content\_Item::url($action = null) in /home/admin/domains/justified.co/public_html/applications/applicationform/sources/Position/Data.php on line 119

     

    This is my 119 line to 134

        public function url( ?string $action="viewApplication" )
        {
            $_key    = md5( $action );

            if( !isset( $this->_url[ $_key ] ) )
            {
                $this->_url[ $_key ] = \IPS\Http\Url::internal( "app=core&module=modcp&controller=modcp&tab=application_approval&id={$this->id}", 'front' );

                if ( $action )
                {
                    $this->_url[ $_key ] = $this->_url[ $_key ]->setQueryString( 'action', $action );
                }
            }

            return $this->_url[ $_key ];
        }

  4. Fatal error: Declaration of IPS\applicationform\Position\_Data::url(?string $action = 'viewApplic...') must be compatible with IPS\Content\_Item::url($action = null) in /home/admin/domains/justified.co/public_html/applications/applicationform/sources/Position/Data.php on line 119

     

    Here is the error

  5. 2 hours ago, Adriano Faria said:

    Goals adds new features to Members Shop, that's why it is called MEMBERS SHOP GOALS. It isn't an app that has its own public module to be set as default app. It has a module but it is for internal functions.

    Not now. In a future version maybe.

    INSERT INTO `core_content_featured` ( `feature_content_id`, `feature_content_class`, `feature_content_author`, `feature_date` ) VALUES ( 17, 'IPS\membersshop\Shopitems', NULL, 1637792329 )
    IPS\Db\Exception: Column 'feature_content_author' cannot be null (1048)
    #0 /home/admin/domains/justified.co/public_html/system/Db/Db.php(938): IPS\_Db->preparedQuery()
    #1 /home/admin/domains/justified.co/public_html/system/Content/Content.php(827): IPS\_Db->insert()
    #2 /home/admin/domains/justified.co/public_html/system/Content/Controller.php(929): IPS\_Content->modAction()
    #3 /home/admin/domains/justified.co/public_html/system/Dispatcher/Controller.php(90): IPS\Content\_Controller->moderate()
    #4 /home/admin/domains/justified.co/public_html/system/Content/Controller.php(50): IPS\Dispatcher\_Controller->execute()
    #5 /home/admin/domains/justified.co/public_html/applications/membersshop/modules/front/shop/view.php(40): IPS\Content\_Controller->execute()
    #6 /home/admin/domains/justified.co/public_html/system/Dispatcher/Dispatcher.php(153): IPS\membersshop\modules\front\shop\_view->execute()
    #7 /home/admin/domains/justified.co/public_html/index.php(13): IPS\_Dispatcher->run()
    #8 {main}

     

    Found this issue when attempting to feature things on my shop? It does seem to put it on the feature page but still errors, so not sure.

  6. 4 minutes ago, Adriano Faria said:

    Goals adds new features to Members Shop, that's why it is called MEMBERS SHOP GOALS. It isn't an app that has its own public module to be set as default app. It has a module but it is for internal functions.

    Not now. In a future version maybe.

    Alright makes sense I'll do some further testing  couldn't get the reaction issue to happen again after reinstalling so not sure.

  7. 6 hours ago, Adriano Faria said:

    Sometimes? Anything you can identify to help, like group permission (react), etc.? Need more info to try to reproduce.

    Sorry!

    That page does not exist.
     
    Whenever I set the Member Shop Goals page to default, it says this. Not sure if this is normal, but yeah, just wanted to mention.
  8. Not sure if this was caused by the new update but after updating I was invited by an HTTP ERROR 500 on certain parts of my website including the /notifications/ place and managing applications

     

    I tested it was caused by this by disabling and enabling it multiple times, and every time it was disabled the issue was fixed.

    Tested uninstalling and reinstalling it to see if it's an issue with my configuration and seems to still break those pages

  9. TypeError: in_array(): Argument #2 ($haystack) must be of type array, null given (0) #0 /home/admin/domains/justified.co/public_html/init.php(902) : eval()'d code(129): in_array() #1 /home/admin/domains/justified.co/public_html/system/Content/Controller.php(2207): IPS\Content\membersshop_hook_ReactHook->_react() #2 /home/admin/domains/justified.co/public_html/applications/forums/modules/front/forums/topic.php(1215): IPS\Content\_Controller->__call() #3 /home/admin/domains/justified.co/public_html/system/Dispatcher/Controller.php(90): IPS\forums\modules\front\forums\_topic->__call() #4 /home/admin/domains/justified.co/public_html/system/Content/Controller.php(50): IPS\Dispatcher\_Controller->execute() #5 /home/admin/domains/justified.co/public_html/applications/forums/modules/front/forums/topic.php(39): IPS\Content\_Controller->execute() #6 /home/admin/domains/justified.co/public_html/system/Dispatcher/Dispatcher.php(153): IPS\forums\modules\front\forums\_topic->execute() #7 /home/admin/domains/justified.co/public_html/index.php(13): IPS\_Dispatcher->run() #8 {main}

     

    After installing MemberShop Goals (which didn't work very well) I was given an error sometimes when trying to add reactions to a post.

  10. On 11/18/2021 at 10:01 AM, Eric BXL said:

    The same thing happened on my forum last night after updating to the newest 1.0.2 version.
    Only the main page was showing all section pages returned the following error:
    OutOfRangeException:  (0)
    #0 C:\inetpub\vhosts\forum-andr.net\httpdocs\init.php(902) : eval()'d code(31): IPS\Patterns\_ActiveRecord::load()
    #1 C:\inetpub\vhosts\forum-andr.net\httpdocs\system\Dispatcher\Controller.php(101): IPS\forums\modules\front\forums\readthistopic_hook_forcetopicforums->manage()
    #2 C:\inetpub\vhosts\forum-andr.net\httpdocs\system\Dispatcher\Dispatcher.php(153): IPS\Dispatcher\_Controller->execute()
    #3 C:\inetpub\vhosts\forum-andr.net\httpdocs\index.php(13): IPS\_Dispatcher->run()
    #4 {main}

    Strange is that the personal message was still functioning.
    After disabling the plugin, all returned to normal. Could you please check it? Your login and PWD remained the same.
    I'm on v4.6.8 of the forum software.

    Yup same happened to me as well.

×
×
  • Create New...