Jump to content

pequeno

Clients
  • Posts

    744
  • Joined

  • Last visited

  • Days Won

    1

 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 pequeno

  1. Hello.

    I have problems with index.php in my urls.

    I have the htaccess file and select "Rewrite URLs".

    The problem is:

    URL in browser -> Destination
    mydomain.com/index.php ->  mydomain.com/index.php

    mydomain.com/index.php/ ->  mydomain.com

    mydomain.com/forum/topic/index.php ->  mydomain.com/

    mydomain.com/forum/topic/ -> mydomain.com/forum/topic/

    Please, can someone check my text to see if there is something wrong?

    <IfModule mod_rewrite.c>
    Options -MultiViews
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule \.(js|css|jpeg|jpg|gif|png|ico|map)(\?|$) /404error.php [L,NC]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    #Force HTTPS
    RewriteCond %{HTTPS} !=on
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    
    RedirectMatch ^/forum/(.*?)/?$ /$1
    
    
    # CUSTOM URLs by DawPi
    
    #Categories & Forums
    RewriteRule ^([0-9]+)-([a-zA-Z0-9_-]+).html$ viewforum.php?id=$1 [r=301,nc,l]
    RewriteRule ^forum/([0-9]+)-([a-zA-Z0-9_-]+).html$ viewforum.php?id=$1 [r=301,nc,l]
    
    #Profiles
    RewriteRule join-club/([0-9]+)-([a-zA-Z0-9_-]+)/profile.html profile.php?id=$1 [r=301,nc,l]
    
    #Topics (second and so on page)
    RewriteRule ([0-9]+)-([a-zA-Z0-9_-]+)/([0-9]+)-([a-zA-Z0-9_-]+).html?start=([0-9]+) viewtopic.php?id=$3&st=$5 [r=301,nc,l]
    
    #Topics
    RewriteRule ([0-9]+)-([a-zA-Z0-9_-]+)/([0-9]+)-([a-zA-Z0-9_-]+).html viewtopic.php?id=$3 [r=301,nc,l]
    
    # END #
    
    
    # ----------------------------------------------------------------------
    # | ADDED BY ME                                                         |
    # ----------------------------------------------------------------------
    
    <Files .htaccess>
    Require all denied
    </Files>
    
    #Allow conections only bu mydomain.com and alias
    RewriteCond %{SERVER_NAME} !^(www\.)?mydomain\.es$
    RewriteCond %{SERVER_NAME} !^(www\.)?mydomain2\.com$
    RewriteCond %{SERVER_NAME} !^(www\.)?mydomain\.eu$
    RewriteCond %{SERVER_NAME} !^(www\.)?mydomain\.info$
    RewriteCond %{SERVER_NAME} !^(www\.)?mydomain\.com.es$
    RewriteCond %{SERVER_NAME} !^(www\.)?mydomain\.es$
    RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
    RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
    RewriteRule ^ - [F]
    
    
    
    RewriteCond %{HTTP_HOST} ^www.mydomain2.com [NC]
    RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
    RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
    RewriteRule ^(.*)$ https://www.mydomain.es/$1 [L,R=301] 
    RewriteCond %{HTTP_HOST} ^mydomain2.com [NC]
    RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
    RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
    RewriteRule ^(.*)$ https://www.mydomain.es/$1 [L,R=301] 
    RewriteCond %{HTTP_HOST} ^www.mydomain.eu [NC]
    RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
    RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
    RewriteRule ^(.*)$ https://www.mydomain.es/$1 [L,R=301] 
    RewriteCond %{HTTP_HOST} ^mydomain.eu [NC]
    RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
    RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
    RewriteRule ^(.*)$ https://www.mydomain.es/$1 [L,R=301]
    RewriteCond %{HTTP_HOST} ^www.mydomain.info [NC]
    RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
    RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
    RewriteRule ^(.*)$ https://www.mydomain.es/$1 [L,R=301] 
    RewriteCond %{HTTP_HOST} ^mydomain.info [NC]
    RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
    RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
    RewriteRule ^(.*)$ https://www.mydomain.es/$1 [L,R=301]
    RewriteCond %{HTTP_HOST} ^www.mydomain.com.es [NC]
    RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
    RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
    RewriteRule ^(.*)$ https://www.mydomain.es/$1 [L,R=301] 
    RewriteCond %{HTTP_HOST} ^mydomain.com.es [NC]
    RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
    RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
    RewriteRule ^(.*)$ https://www.mydomain.es/$1 [L,R=301]
    
    
    #Clickjacking attack
    #Header append X-FRAME-OPTIONS "SAMEORIGIN"
    
    RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
    RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
    RewriteCond %{HTTP_REFERER} !^$
    RewriteCond %{HTTP_REFERER} !^http://mydomain.es/.*$      [NC]
    RewriteCond %{HTTP_REFERER} !^http://mydomain.es$      [NC]
    RewriteCond %{HTTP_REFERER} !^http://mydomain2.com/.*$      [NC]
    RewriteCond %{HTTP_REFERER} !^http://mydomain2.com$      [NC]
    RewriteCond %{HTTP_REFERER} !^http://www.mydomain.es/.*$      [NC]
    RewriteCond %{HTTP_REFERER} !^http://www.mydomain.es$      [NC]
    RewriteCond %{HTTP_REFERER} !^http://www.mydomain2.com/.*$      [NC]
    RewriteCond %{HTTP_REFERER} !^http://www.mydomain2.com$      [NC]
    RewriteCond %{HTTP_REFERER} !^https://mydomain.es/.*$      [NC]
    RewriteCond %{HTTP_REFERER} !^https://mydomain.es$      [NC]
    RewriteCond %{HTTP_REFERER} !^https://www.mydomain.es/.*$      [NC]
    RewriteCond %{HTTP_REFERER} !^https://www.mydomain.es$      [NC]
    RewriteRule .*\.(jpg|jpeg|gif|png|bmp|doc|pdf|mp3|mp4|mov|avi)$ - [F,NC]
    
    # php -- BEGIN cPanel-generated handler, do not edit
    <IfModule mime_module>
      AddHandler application/x-httpd-ea-php74 .php .php7 .phtml
    </IfModule>
    # php -- END cPanel-generated handler, do not edit
    

    Many Thanks.

  2. I do not want to put data from my website here but I will try to be detailed.

    • Announce type: Content, (also does not work with "Link to URL")
    • Select: Show to all
    • Select: show everywhere
    • Type: Floating bar at the top of the page
    • IPS: 4.6.7

    App Settings HTML5 Audio/Video Player 2.1.2: view attachments


     

    settings HTML 5 2.png

    settingshtml5_3.png

    settings HTML5 1.png

  3. Hello, with this app activated I have this issue: annoucement "Floating bar at the top of the page" don´t show in homepage.

    When acces to other page the annoucement shows and if I select the Block Manager in homepage then annoucement shows in homepage!!!

  4. Hello and thanks for adding Zapier to self-hosted.

    Currently Imvision Power has several tiggers but from my point of view there are some missing that I consider interesting.

    Tiggers sugestions:

    • Promote content (When a content is promoted)
    • Clubs (tiggers related with clubs: new club, new club member, ...)
    • Topic solved (when topic is marked as solved)
    • Topic pinned (When topic is pinned)
    • Topic featured (When topic is marked as solved)

     

  5. On 9/22/2021 at 5:50 PM, Stuart Silvester said:

    I'm sorry, I could have made this clearer. It isn't a retroactive fix, it will only apply to content posted after you upgrade.

    Sorry but for me don´t solve the problem in 4.6.6. in new MOV videos. 🤔

     

    On 9/11/2021 at 4:21 PM, Clover13 said:

    I think you still won't be able to except on Safari?

    Yes. In IPS 4.6.6 works only in Safari.

    On 9/23/2021 at 8:50 AM, Marc Stridgen said:

    There is nothing in which will fix content that has already been posted unfortunately

    Hello.

    I check upload new MOV files to the invision test forum and doesn´t work!

    In my 4.6.6. forum, it doesn't work either

  6. Hello. Collections is up to date in IPS 4.6.3, but I obtain this error:

    [[Template core/front/tables/rows is throwing an error. This theme may be out of date. Run the support tool in the AdminCP to restore the default theme.]]

  7. On 5/1/2021 at 7:27 PM, Nathan Explosion said:

    Have you logged a ticket with IPS support yet?

    Hello, this is the support answer:

     

    Hello,

    You need to contact the author of that item for assistance. It does sound like you already have it installed though

     

     

×
×
  • Create New...