Jump to content

teraßyte

Clients
  • Posts

    33,395
  • Joined

  • Days Won

    47

Reputation Activity

  1. Like
    teraßyte got a reaction from Marc Stridgen in Changing allowAdminEmails through API   
    You can use this API: https://invisioncommunity.com/developers/rest-api?endpoint=core/members/POSTitem
    Pass the correct key/value pair using the rawProperties parameter: allow_admin_mails
  2. Like
    teraßyte got a reaction from Owdy in Forum down   
    Do you have some kind of caching enabled (for example: Cloudflare)? If so guests might still be getting the cached page (which bypasses the server), while logged-in members get the disk full error since they hit the server.
  3. Like
    teraßyte got a reaction from Safety1st in Forum down   
    Do you have some kind of caching enabled (for example: Cloudflare)? If so guests might still be getting the cached page (which bypasses the server), while logged-in members get the disk full error since they hit the server.
  4. Like
    teraßyte got a reaction from MaNiAc LRSC in php8 incompatibility...but no application is listed?   
    You can find the list of incompatible modification on the Support page.
  5. Like
    teraßyte got a reaction from Jim M in php8 incompatibility...but no application is listed?   
    You can find the list of incompatible modification on the Support page.
  6. Agree
    teraßyte reacted to Sonya* in Will blocking guests from viewing threads also block search engines?   
    It sounds like a doorway technique, called cloaking. You will be penalized by search engines if you try it.
  7. Haha
    teraßyte reacted to Randy Calvert in PHP 8 & MySQL version 5.7.34-cll-lve problem   
    MySQL5 no longer receives support/updates from the manufacturer.  So if they won't upgrade, I would highly recommend a new host.  That's basically waiting for an accident to happen.
    https://endoflife.date/mysql
    But IPB still works on 5.7... later versions however most likely won't.  So you have time to figure out your plans.  
    EDIT: teraByte and I apparently were on the same train of thought there!  JINX! 😄
  8. Like
    teraßyte got a reaction from Marc Stridgen in Uploading Fresh Files & Removing Outdated Files/Folders?   
    There isn't any need to make a copy of the database. Unless you made one and then cleaned infected tables/content from there, too?
    The best option is to re-upload a fresh set of files, and then compare the folder to check if there are any extra folders/files. Comparing the database tables to a fresh installation helps find the extra ones there, too. You also need to account for 3rd party applications and plugins, though.
     
    If you'd like, I offer a cleanup service. You can check my site or send me a PM.
  9. Like
    teraßyte got a reaction from Safety1st in Anonymous comments to be "reactable"   
    With the way it works now when someone likes a content you post (topic, post, file, image, etc), it shows up in your profile's activity, and you can also look up all the reputation a user has received in their profile.
     
    For example, if you look at my profile right now, you'll see this item in it:
    A list of reputations given and received is also available on this page: https://invisioncommunity.com/profile/145950-teraßyte/reputation/?type=forums_topic_post&change_section=1
    If you follow a link from there, and the post is anonymous, you'll be able to figure out who made the post.
     
    It doesn't work like this right now, it's a function that IPS would need to implement in the framework. I guess you can ask for this topic moved to the Feedback forum instead.
     
    And no, it's not possible to create a custom modification to change this behavior, either. Because of the way reputation is currently implemented (traits), it's not possible to overload/extend the necessary code.
  10. Like
    teraßyte got a reaction from Safety1st in Where is robots.txt file?   
    If you use the "optimized" option it's automatically generated. That's as long as you don't have a robots.txt file on the server itself. In that case, the request isn't rerouted and the static file is provided.
  11. Like
    teraßyte got a reaction from Adlago in 3rd Part Marketplace?   
    Some active developers moved to a new site and created a marketplace there.
    Here's the link: https://www.invisioneer.org/
  12. Like
    teraßyte got a reaction from Adriano Faria in 3rd Part Marketplace?   
    Some active developers moved to a new site and created a marketplace there.
    Here's the link: https://www.invisioneer.org/
  13. Thanks
    teraßyte got a reaction from tim260 in Template Broken after move from Cloud   
    Downgrade to PHP 8.1, the 8.2 version is not supported yet.
  14. Like
    teraßyte got a reaction from Safety1st in [BUG 4.7.15] Fresh install throws an error trying to enter the Web App settings page   
    None that I can think of without editing the code/database.
     
    I managed locally by temporarily altering the code to disable the json_decode line and saving the settings page.
    Updating the setting's default value in the DB and clearing the caches from ACP should work too.
  15. Like
    teraßyte got a reaction from Safety1st in [BUG 4.7.15] Fresh install throws an error trying to enter the Web App settings page   
    @Safety1st I sent you a PM. 👍
  16. Like
    teraßyte got a reaction from Marc Stridgen in Dangerous PHP Functions Message - But Can't Find the Cause   
    Do note also that the message doesn't disappear automatically even if you fix the issue. If you disabled the function after you saw the message in ACP, you need to close it yourself.
    Also, if you want to double-check that the functions are indeed disabled, there is a phpinfo link on the support page. See what it says there rather than testing with an external phpino().
  17. Like
    teraßyte got a reaction from Marc Stridgen in I can't access to Web App in ACP   
  18. Like
    teraßyte got a reaction from Safety1st in I can't access to Web App in ACP   
  19. Like
    teraßyte got a reaction from Safety1st in [BUG 4.7.15] Fresh install throws an error trying to enter the Web App settings page   
    After a fresh install, going to "ACP > System > SETTINGS > Web App" throws a TypeError:
    TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given (0) #0 path\to\system\Dispatcher\Controller.php(118): IPS\core\modules\admin\settings\_webapp->manage() #1 path\to\applications\core\modules\admin\settings\webapp.php(39): IPS\Dispatcher\_Controller->execute() #2 path\to\system\Dispatcher\Dispatcher.php(153): IPS\core\modules\admin\settings\_webapp->execute() #3 path\to\admin\index.php(13): IPS\_Dispatcher->run() #4 {main}  
    The issue is this code:
    /* And finally, additional manifest and livetile details */ $manifestDetails = json_decode( \IPS\Settings::i()->manifest_details, TRUE ); $form->add( new \IPS\Helpers\Form\YesNo( 'configure_manifest', \count( $manifestDetails ) > 0, FALSE, array( 'togglesOn' => array( 'manifest_shortname', 'manifest_fullname', 'manifest_description', 'manifest_defaultapp', 'manifest_themecolor', 'manifest_bgcolor', 'manifest_display', 'manifest_custom_url_toggle' ), ) ) );  
    The problem is that $manifestDetails at this point is NULL because the json encoded data is wrongly using square brackets:
    ["cache_key":1692875360] Instead of curly brackets:
    {"cache_key":1692875360}
  20. Like
    teraßyte got a reaction from Safety1st in Banning privilege to moderator   
    You are mixing up the terms here. If they can login into ACP they are restricted admins rather than restricted moderators. 🙄
     
    Admins = Admin CP
    Moderators = Front End
  21. Thanks
    teraßyte reacted to Marc Stridgen in Broken link in AdminCP   
    Updated with the latest, thanks 🙂 
  22. Like
    teraßyte got a reaction from sobrenome in Update problem with 4.7.15   
    Yes. The code is not fully compatible with 8.2, so it's the same for any version higher than that.
  23. Like
    teraßyte got a reaction from Sonya* in Broken link in AdminCP   
    While the link is now visible, the suggested robots.txt file in the guide is outdated.
    For example:
    Profiles are not disallowed anymore The tags page is not included The cookie page is not included The embed controller is not included
  24. Haha
    teraßyte reacted to Marc Stridgen in [BUG 4.7.15] Wrong template parameter in "nexus > global > forms > businessAddress"   
    But there was more than one! 😄 
    jk. Reported it as a bug internally for you
  25. Like
    teraßyte got a reaction from georgebkk in Using same db for both livev forumn and dev forum   
    Don't. Simply don't. It will cause all kinds of issues. And if you enable IN_DEV mode on the dev forum, there's no way to know what will happen.
     
    If you want to have a dev forum, make a copy of both database and files.
×
×
  • Create New...