Jump to content

Randy Calvert

Clients
  • Posts

    3,945
  • Joined

  • Last visited

  • Days Won

    78

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Projects

Release Notes v5

Invision Community 5 Bug Tracker

Forums

Events

Store

Gallery

Everything posted by Randy Calvert

  1. That most likely means the post was moved somewhere non-public or was hidden. The folks in the community won’t know why.
  2. All of that can be done using pages, etc. That includes adding images.
  3. I've never used Lightsail. But from what I read, it runs on the same platform as EC2 and is just a stripped down version of it. If you DO use Lightsail, you would want to make sure to choose just the Amazon Linux 2 OS template (not a LAMP instance) if you're going to use the script above. If you're going to use one of their LAMP stacks, you will want to need to confirm it meets all of the system requirements as I don't know if it has all of the required PHP modules. If you're not familiar with SSH, I would suggest Google for some tutorials and videos. There are plenty out there. I don't know what OS you're using, but the following guide has some info: https://www.clickittech.com/aws/connect-ec2-instance-using-ssh/ Also there is no such thing as just "hosting" on Amazon. If you're not comfortable managing a web server, database server, etc... you're most likely better off not using AWS. There is no technical support and if/when something goes wrong... you're on your own. For example changing from PHP7 to PHP8... if you don't know what you're doing and how to upgrade it, how are you going to maintain it long term? If you don't know anything about managing servers, SSH, FTP, etc... you might want to consider having IPS host it for you with one of their cloud offerings.
  4. It’s just like any other blank server. You just need to setup services like Apache, PHP, etc. I made a script to help me automate setting up a web server that could run IPB. (I had MySQL, Redis, etc running elsewhere.) You’ll need to use SES or another SMTP service as AWS blocks those ports to EC2. The above would be run via SSH from the ec2-user account.
  5. Just to explain what was going on with the rule, it had to be moved up in the order of operations before later matches routed the request to index.php. The L directive said stop processing rules and just submit as is. The subsequent request with the folder removed then matched the call to index.php.
  6. Move it after RewriteEngine On
  7. Try that rule without the first slash BUT right after the rewrite engine on directive. I think you’re hitting an order of operations issue.
  8. Is your server using at least TLS1.2 to communicate with IPS? If not, the request will be denied.
  9. Try something like: RewriteRule ^/forums/(.*)$ /$1 [L,NC,R=302] But that will only work if forums is not in the new path as well.
  10. There is no one click way to do this unfortunately.
  11. IPB at one point was developing a native app. But that project was stopped in factor of focusing on the PWA/mobile web version.
  12. They may have also created a custom button in the editor that lets them style it that way. ACP > Customization > Editor > Toolbars Click on Custom.
  13. Also... if you start making a post, but never submit it and then leave/come back to the post, it might have the content saved as well. (There's been a few times I've started a post that I never finished. Came back later and it's still waiting!)
  14. The domain from his screenshot is home2000.com. In doing a DNS lookup, it's hosted by Invision. So as noted earlier... there is no FTP access to the site files. If you want to upload something, you'll need to do so from within your ACP.
  15. It’s not in the IPB software. It would be with cpanel or SSH. If you don’t know where to look, you would need to ask your hosting provider.
  16. This was fixed in 4.7.6 which is already released. https://invisioncommunity.com/release-notes/ Fixed an issue where Twitter Emoji no longer loads (The CDN providing the images shut down). Make sure you’re running the latest release. 🙂
  17. Step one is figuring out where the problem exists. If you remove cloudflare, does the problem exist? If so you need to look in CF. If not, it’s something either in your server or software. But at that point you’ve cut your list of possible issues in half.
  18. Are you hosted by Invision? If so, you won’t be given IP addresses (numbers). You’ll either point your DNS to them or setup a CNAME value in your DNS. There is a form in the client area where you can give them your domain name and it will create a ticket for you. A staff member will reply to let you know what DNS change you need to make if your hosted by IPS. If you’re self hosted, your IP address would be provided by your hosting company.
  19. This sounds like a server issue. ImageMagick needs to be setup in a specific way to support webp. For example from cpanel’s docs: https://support.cpanel.net/hc/en-us/articles/4403506784919-How-to-enable-the-webp-image-format-for-use-with-ImageMagick-on-cPanel
  20. This person is hosted on IPS cloud. As a result, there is no access to Apache or Nginx. They would need to use some sort of marketplace add-on to achieve what they're wanting to do.
  21. Run the requirements checker when running PHP8 to make sure you’re not missing any required modules. (PHP has MANY different components. A required module may be missing in your PHP8 install.) if it meets all of the requirements and is not working you need to look into the Apache error logs for why. That’s something you will need to work with your host on.
  22. You’re asking IPB to solve your hosting issues. Not a great use of resources. If your host does not offer backups, find one that does or use one a million systems that already exist. Why should the software focus on something that is literally commoditized already and that they can’t bring more value than what already exists.
  23. Yes, in that case... it was most likely the user using the same password across multiple sites where another site had a data breach.
  24. It's not stupid at all. What you would do is install the site in a different location (such as test.yourdomain.com). Create a different mySQL database, username, password... and upload all of the files into that location. When you run the installer, call test.yourdomain.com (or www.yourdomain.com/test). Enter the new blank database info for it. For the license key, just enter your existing key plus "-TESTINSTALL" at the end. Meaning if your key was 123456-789012345, you would enter 123456-789012345-TESTINSTALL as your key. See the following guide for details. Once it's installed, you have a new/vanilla IPB install. Just install the same 3rd party resources, themes, etc. You can use it to test things before doing it on your live site.
  25. You might just setup a test board then. Use the same theme you have now, along with the same plugins, etc. Upgrade it first just for a sense of comfort before upgrading your live site. It will help you figure out if you're going to have problems before pulling the trigger. I would also suggest learning how to take a full backup RIGHT before you start an upgrade. That way if things go wrong, just restore and you're back in business with no loss of data.
×
×
  • Create New...