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

Everything posted by pequeno

  1. Sorry. I don't know what I have to answer. I am a bit lost with the English language. What do you need to know exactly? Redirects should remove index.php and I see that not happening.
  2. I will privately send you the URL that corresponds to mydomain.com I put it this way so as not to reveal my domain.
  3. If I just put this code, it doesn't work either <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>
  4. 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.
  5. I send you a private message & access allow to all
  6. 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
  7. 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!!!
  8. Thank @Daniel F Finally the problen is with By @Nathan Explosion Disabling this APP all works fine.
  9. Sorry @Daniel F But I don´t understand. The homepage is the forum app select by default.
  10. Annoucement type: Floating bar at the top of the page. Testing in unmodified theme: same problem.
  11. Hello, I have an annoucement and I selected show to all users and in all pages, but not show in homepage. But If I select the Block Manager in homepage then annoucement shows!!! 🤔
  12. 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)
  13. Hello, and thanks for this Plugin @A Zayed Can you can you offer a way to convert the old links?
  14. Ups! Many Thanks @opentype 😊 I did not find it. I hope IPS considers it a option for the forum.
  15. Hello, is it possible embed external link with a block. Xenforo example:
  16. Yes, sorry for the confusion. Only can view the reproduction bar but not video.
  17. Sorry but for me don´t solve the problem in 4.6.6. in new MOV videos. 🤔 Yes. In IPS 4.6.6 works only in Safari. 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
  18. Thnks. Same problem here! I can´t view MOV video in post.
  19. 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.]]
  20. My admin in warned: How to remove it.
  21. Hello. Mailbounced seems work fine in 4.6 but now I have warning message in my Admin account, and I can´t remove the account in ACP from warned. How can I remove admin account from warned accounts? Thanks.
  22. 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...