Jump to content

Randy Calvert

Clients
  • Posts

    3,980
  • Joined

  • Last visited

  • Days Won

    79

 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. Just had to go and be a .... well ... spoil sport!
  2. You should not need a directory path. Now... it's important to remember... this call cannot REMOVE a value that is disabled at the server level. For example.... If the server disables module1, module2, and module3... You cannot use a custom value of just module1, module2 so that module3 is enabled. module3 would remain disabled. The directive is designed to ADD additional modules to the deny list, not remove them from it. 🙂
  3. You mentioned yourdomain.com/admin/install.... Did you try yourdomain.com/admin/upgrade? See if it will take care of catching you up to the correct table data?
  4. I just checked my live board. That table DOES exist in the most recent version of IPB. You might want to post in the main support forum. This looks to be beyond community (meaning peer to peer) help. By the way... one idea that I had... Do a FRESH install into a DIFFERENT database. Then export/import that table into your restored table. You would have to reset a bunch of preference settings, but that might at least get you back up and running.
  5. Also... to make the move easier... once you have community.xyz.com in place, you can create a redirect on your old server to redirect all requests to your new community.xyz.com domain. That way your old bookmarks don't stop working, and users don't get lost along the way. You can use something like the following on your old forum's .htaccess to redirect: Options +FollowSymLinks RewriteEngine On RewriteCond %{REQUEST_URI} ^/community/(.*)$ RewriteRule ^(.*) http://community.xyz.com/%1 [R=302,NC]
  6. Try not quoting all functions here. php_value disable_functions exec,passthru,shell_exec,system
  7. Another thing to check would be the use of mod_security. It sometimes will choke things up.
  8. It’s typically a WAF blocking this. Are you using Cloudflare or another WAF in front of your site? If so, try temporarily disabling.
  9. If it says the table does not exist… either: - You are pointing to the wrong database. Did you edit you conf_global.php to specify your database details manually? - You did not restore the database correctly. Do you see the table in phoMyAdmin? - Your backup is corrupt.
  10. The only way that htaccess code will work is if your hosting provider has mod_rewrite enabled. Have you verified that module is installed and working correctly?
  11. That would be a good course of action if you don’t have a lot of legitimate traffic from that country. Over 95% of my legitimate traffic is from the US so it’s safe for me to do that. Only you would know what your traffic is like. 🙂
  12. There was a bot out of Sweden that appeared to be attempting to Pentest my site a few weeks ago. My firewall blocked a TON of attempted SQL injections, cross site scripting, and other malicious requests. I would block the IP because whatever they’re doing they should NOT be triggering all of those errors. So it’s most likely not a “good” bot.
  13. Awesome! Glad you were able to square it away.
  14. A 404 means the requested resource was not found. So if the files are in your FTP account, they most likely have an error in the httpd.conf file pointing your document root to the correct location.
  15. A 403 error means the request was blocked as forbidden. Do you have some sort of WAF in place that could be denying requests? Are you using mod_security? If so, I would start by disabling it to narrow your troubleshooting.
  16. Personally instead of doing Nginx, I would use a cloud based WAF to filter a request before it ever gets to my server/datacenter. The further away you can fight an attacker the better.
  17. Have you checked to make sure the port is open in your firewall? Some firewalls will still block access from localhost if the port is not expressly open.
  18. The question is what benefit are you looking to gain from it. Adding that layer in front is going to make things more difficult for you going forward. For example, if Nginx has something cached, and you make a change in the ACP to a theme or a setting... but it does not bust the Nginx cache, you could be stuck troubleshooting other issues you did not anticipate or need to potentially address. You're going to have to weigh if the benefit that comes from adding it is outweighed by the potential problems and the extra maintenance involved.
  19. The ask you might need to make to your hosting provider is "can you make the /public_html/uploads folder AND all items under it have 777 permissions?". That 777 might need to be 755 if they're running suExec as Marc noted. If you have SSH access, you can also do this via SSH with the command I gave in my first post. (Just make sure the exact path is correct as I was trying to read really small letters and I did not have my glasses on.)
  20. You need to give your uploads folder and all files under it read/write permissions. Something like "chmod -R 777 /kunden/home/forumdrone/public_html/uploads/". That should set permission on the uploads folder and recursively all files/folders under it. You might need 755 instead of 755 depending on your host setup. If you're having problems with the set_resources folder, you'll most likely also have problems with other folders under it as well when you upload attachments, or edit themes, etc.
  21. I saw something similar when experimenting with Auto Ads. I was able to work around this by placing a manual ad unit just below the header. Google won't place an auto ad in the spot it normally tries to at that point. However again, if Google cannot (or will not) serve an ad... it simply displays a blank spot. So think carefully about your ad placement and use manual ads to make sure auto ads don't ruin your page (or don't use it at all!)
  22. How did you install Elasticsearch? Did you install it via RPM or via source code? Since I installed the RPM, I downloaded the latest version and stopped the Elasticsearch service. I then ran rpm --upgrade FILENAME.rpm.
  23. I installed the latest RPM from the Elasticsearch website and did not have any problems. I did not have to rebuild my search index... it just worked.
  24. Which is beyond the scope of support that IPS can provide. They don’t know what that user or group is or what settings are applied. If the user is truly worried about what others on the server might do, they should not be running in a shared environment and instead use a VPS or something else with an isolated container.
×
×
  • Create New...