Jump to content

SUBRTX

Members
  • Posts

    149
  • Joined

 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 SUBRTX

  1. 5 hours ago, Jim M said:

    Are you intending to provide this feature to all your users? Unfortunately, that was not intended to do with this feature so you may hit some bumps in the road. However, I have reported this internally as these permissions should be separate for a moderator.

    Thank you for bringing this issue to our attention! I can confirm this should be further reviewed and I have logged an internal bug report for our development team to investigate and address as necessary, in a future maintenance release.

     

    Thank you, and Yes, I would like provide this feature to my members.

     

  2. On 7/8/2022 at 12:03 PM, teraßyte said:

    This modification is already compatible with 4.7 and I've just submitted a new version to mark it as compatible (no actual changes).

    Those who have it already installed can keep using it without problems. 👍

    Thank you sir! Is this already ips 4.7.3 and php 8.x compatible or it needs an update?

  3. 46 minutes ago, Jarrod Davis said:

    Ok, I discovered an automated way to remove the invoices. Not ideal, but one level above the sanity of deleting 1000s of invoices manually.

    Discovered this extension for Edge that allows you to record and playback actions. So I guess this is it for the time being. Sigh.

     

     

    Lol, just saw this topic. I was using the same macro function but from different software months ago to deal with 100s of invoice page.

  4. This same thing happened to me few weeks ago...I was checking the server load, it was 0 0 0. So, I login to my site, I saw the message "Licence Key Invalid" Apparently, my site went down for 2 hours already.

    After I clicked the message, it led me into ACP, I didn't fix anything, the message was gone, and my site went normal.

    Do I need to worry about 3rd party app? 🤕

  5. On 4/20/2022 at 11:49 AM, Stuart Silvester said:

    I have opened an internal issue for this so one of our front-end developers can look into it.

     

    On 4/18/2022 at 4:27 AM, Marc Stridgen said:

    I have tagged our developers on this so they can review what you are referring to on the loading of that item

    any update on this?

  6. On 7/10/2022 at 9:38 PM, Michael.J said:

    New update released pending approval that fixes some group permission issues and a few minor bug fixes.

    I got your email, so now this app is IPS 4,7 AND PHP 8 compatible, how about PHP 8.1? Thanks!

  7. 1 hour ago, Marc Stridgen said:

    Actually, just to add to this, you could potentially also rename "Recommended" to anything you like using the language system.

    Isn't Recommended only available for Admin and Mod? Plus, it would show the comment above the title of a post where pin post works like the traditional "top comment" like Reddit or YouTube. (You see them under the main post but above other comments)

    Anyway, so pin post doesn't work with IPS 4.7 then?

  8. 3 hours ago, Jim M said:

    Are these still occurring? If so, it looks like a few hooks are being thrown in here to cause an issue so I would advise disabling any third party applications/plugins then try to see if the error is still present. If it isn't, this would be an issue with one of those third party applications/plugins which you would need to review which one and reach out to the author for assistance.

    If the error does not have a recent date/time in the log and you cannot reproduce it at the URL, it likely can be ignored and you will want to check your log purge settings to ensure they are set to the advised 30 days.

    so it's cause by third party plugs/aps? got it, thanks!

  9. On 12/20/2021 at 9:20 PM, Michael.J said:

    Just tested and not able to reproduce this. Can you PM me admin login details so I can look over this please?

    Hello, I fixed the issue. I don't know why but my original code in the forumsource.php is different from yours, here is mine:

    /**
    	 * Set form for creating a node of this type in a club
    	 *
    	 * @param	\IPS\Helpers\Form	$form	Form object
    	 * @return	void
    	 */
    	public function clubForm( \IPS\Helpers\Form $form )
    	{
    		try
    		{
    	        /* Club points disabled? */
    	        if( !\IPS\Settings::i()->basicPoints_club_points )
    	        {
    	            return parent::clubForm( $form );
    	        }
    	
    	        /* Add tab for default fields */
    	        $form->addTab('basicpoints_club_settings');
    	
    	        /* Show default fields */
    	        parent::clubForm( $form );

    I have this "Try" in my code.

    So, I added the extra code from the fixed solution, and keep that "try", and my setting didn't reset and club feature is normal

    /**
    	 * Set form for creating a node of this type in a club
    	 *
    	 * @param	\IPS\Helpers\Form	$form	Form object
    	 * @return	void
    	 */
    	public function clubForm( \IPS\Helpers\Form $form, \IPS\Member\Club $club )
    	{
    		try
    		{
    	        /* Club points disabled? */
    	        if( !\IPS\Settings::i()->basicPoints_club_points )
    	        {
    	            return parent::clubForm( $form, $club );
    	        }
    	
    	        /* Add tab for default fields */
    	        $form->addTab('basicpoints_club_settings');
    	
    	        /* Show default fields */
    	        parent::clubForm( $form, $club );

     

×
×
  • Create New...