Jump to content

balazsp

Clients
  • Posts

    149
  • 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 balazsp

  1. Currently I am still using this plugin (I know, it is a plugin, not an app, but it works with 4.7.x).

    "Friendly URL Translit By Ilya Hoilik https://ipshelp.ru" (the url is not working either it is for search purposes if you want to hunt for it)

    Iirc it used to be a free plugin in the marketplace, it removes all non-standard chars from the url. 

    It keeps the emojis (and accented non-English characters, etc) in the topic title, but removes them from the URLs.

    Imo it should be part of the core functionality for SEO. 

     

  2. On 1/22/2024 at 7:35 PM, Marc Stridgen said:
    On 1/20/2024 at 5:40 AM, 403 - Forbiddeen said:

    I hope it is not exclusive to Cloud subscription, but for all customers. Spectacular addition.

    Live topics is something already available to customers on our Creator plan and above. 

    So... Is that a yes, it will be available for self-hosted/classic? 🙂

    I could not find any tags or mention of cloud-only / not for self hosted in the article (usually there is a very small fineprint in the bottom of the post). Does it mean it will be available for all customers?

     

  3. 42 minutes ago, Miss_B said:

    Do you mean Ipb 5? If that is what you meant, then the app will have to be upgraded to work with that version as it will be a rewrite. That goes for all third party Ipb 4.7.x apps and themes btw. They all will have to be upgraded to work on an Ipb 5.x forum.

    Yes that's what I meant, thank you. 

    What my question was mainly about - do I have to purchase the app again when it will be updated to IPB5?

  4. 3 hours ago, Miss_B said:

    Thank you. Once your site will become online agaim, I will most def check them out. 

     

  5. @Michael Collins

    It's just an idea, have not tested it yet, but if you create a .htaccess redirect rule for

    https://test.com/forum/logout/  to  /logout.php

    and the php script has something like

    <?php
    // Set the expiration time in the past to delete the cookie
    $expiration = time() - 3600; // Set it to an hour ago

    // Retrieve all cookies for the domain
    $cookies = $_COOKIE;

    // Loop through each cookie and delete it
    foreach ($cookies as $cookie_name => $cookie_value) {
        // Set the cookie with an expiration time in the past
        setcookie($cookie_name, '', $expiration, '/', 'test.com');
        // Also unset the cookie from the $_COOKIE array
        unset($_COOKIE[$cookie_name]);
    }
    ?> 

    technically it would log the user out of wordpress AND invision forum too.

    Obviously you can narrow the cookies down to wordpress and invision cookies only. 

  6. @BenHur how big is your site? I was looking for a similar solution, but with a site with 2M+ posts/100k users. 

    So far wget seemed to be the most stable, httrack kinda crashed around 50k pages. 

    Luuik's solution without security patches and whatnot, is a very temporary fix IMO - although a working one. But if you add a modsecurity filter or apache config section that blocks all POST requests, it could work. People can navigate around the archive using the static links. 

  7. There are a couple of reasons why PHP sessions might not be working correctly.

    Here are some possible solutions you can try:

    Check the session save path:
    Make sure that the session save path is writable by the web server. You can check the session save path in the php.ini file or by using the session_save_path() function in your PHP code.

    Check if cookies are enabled:
    Sessions rely on cookies to store the session ID, so make sure that cookies are enabled in the user's browser.

     

  8. Hi @Kirill Gromov 

    Is there (can there be) a direct URL link where the users can access the avatar hub (and not via an overlay)? 

    I'd like to create a widget for those that have the default profile image set and a direct link would be more efficient than the instructions of 'go to your profile, click on the bottom left corner of your avatar and select avatar hub' . 

    Thanks in advance!

  9. 1 hour ago, The Old Man said:

    Thanks I’ll have another go. (Sorry the code button isn’t showing in this forum on tablet, only quote).

    re errors, I get:

    I’m just trying connecting with API Tester app on my iPad which seems really good with lots of examples to get you going. It also supports both REST and GraphQL, so I figured I would try to create an oAuth for it rather than simple API URL key as I’ve done in past for connecting via Wordpress. I tried to use the oAuth page options that don't prompt a login screen because I want to eventually run the code as a script both within IPS and externally.

    If I go to the IPS API key page, I see the message:

    However I know my server does as far as Wordpress’ health check tool is concerned.

    I’ve tried everything to get authentication headers works for IPS. I’ve tried the various suggestions found online about adding CGIAuthPass to htaccess, allowing Authconfig to be used via AllowOveride in htaccess via adding this to post_virtualhost_global.conf 

    but so far IPS always reports that message so I thought oAuth would be better. 

    I realise that selfhosted server config is beyond support’s realm, but I just want to make sure I’m at least trying with the correct oAuth settings, given there are so many and the help docs don’t say which options to configure for use with the API and GraphQL.

    AFAIK Directory expects a full path... Like 

    <Directory "/usr/local/httpd/htdocs">
      Options Indexes FollowSymLinks
    </Directory>

    If your code applies to all user's internal public_html folders, you may want to use DirectoryMatch: https://httpd.apache.org/docs/2.4/mod/core.html#directorymatch

    If your full path is /public_htm/ from / , please ignore the above. 

     

     

×
×
  • Create New...