Jump to content

Phun

Retired Staff
  • Posts

    1,119
  • Joined

  • Last visited

  • Days Won

    124

Everything posted by Phun

  1. ​Click the "No Parent" checkbox if you're making a category.
  2. Did you check the error/system logs? (uploads/logs)
  3. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  4. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  5. Hit the "Manage Resources" button of your theme, the default_photo should be there, you can edit it, delete the current image and set a new one for it.
  6. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  7. IPS.Community.Suite.4.0.8.1-WF.NULL.zip
  8. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  9. ​Yes, that's it, style was word-break: break-word; not word-warp now it works as it should, thx Phun ;) ​That's odd, word-break: break-word is exactly the same as word-wrap: break-word. They should not make any difference at all, but sure if that works and the other one doesn't then.. whatever.
  10. ​1. No, all apps for IPB 3 have to have 4.x versions, most of which have upgradeable-to versions, so that means that you'll be able to keep your data if the app you need on 4.x is there. If you rely on a broad amount of apps it may be better to wait. 2. Take backups of both the database and all of your files. The upgrading process should be the same. What i did was remove all the files except conf_global.php and then upload all the IPS4 files and visit admin/upgrade. We kept the following folders aswell: "downloads" "public" "uploads". 3. The latter unfortunately. Yep. 4. There's tooooons of changes, too many to list for me in this answer. IPS4 is a completely new system functionality and code wise. 5. Wait it out a little bit if your community is running just fine. Look around for IPS4 apps/plugins that you think you're gonna get when you do finally upgrade and gather some more information. Check out topics on the ips website and read up on all the different changes they made. 6. Facebook & Google are natively there, there's a plugin for steam integration. Should work exactly the same as far as i know.
  11. Checked in firefox and doesn't happen for me right now. Try to use this somewhere in the css of the hook: word-wrap: break-word; overflow-wrap: break-word;
  12. Don't think there are "nice" ways of doing this. Make sure to backup your database before each conversion (just in case) and get at it. What i'd do personally is check the from>to list in each convertable software and check which one keeps the most data.
  13. Restore Original IP Address on IPS Community Suite 4 So if you run CloudFlare on your website and you've just freshly installed IPS4, you may see in your userlist that everone seems to have an IP from the same IP range. This is because cloudflare handles your traffic now and thus the REMOTE_ADDR header is from cloudflare's servers IP now. There are a few methods to do this, some of which requires you to have server access. If you are unsure if you have any module installed, upload this php file cloudflare.rar to your server and navigate to it. Method 1 - Application Level To restore the original IP address on application level, you can make IPS4 use X_FORWARDED_FOR. To do this, go to your Admin CP > Security and press the "Security Settings" button and make sure Trust IP addresses provided by proxies? is enabled: Method 2 - Server Level (cPanel/WHM) (EasyApache with mod_cloudflare) To use this method, you must have some sort of sense of what you're doing and you must have cPanel/WHM installed on your server and must have WHM root access. Run the following command on SSH: # wget https://raw.githubusercontent.com/cloudflare/mod_cloudflare/master/EasyApache/installer.sh # bash installer.sh Alternatively, you can run this instead: # bash <(curl -s https://raw.githubusercontent.com/cloudflare/mod_cloudflare/master/EasyApache/installer.sh) Now navigate to easyApache on whm: Go through the steps, in the "Short Options List" there should be a Mod CloudFlare option now: Method 3 - Server Level (Manually) (RedHat/CentOS/CloudLinux) (Apache with mod_cloudflare) mod_cloudflare has a few software dependencies that need to be installed first: # yum install libtool httpd-devel Next, you should download the mod_cloudflare source to your server: # wget https://www.cloudflare.com/static/misc/mod_cloudflare/mod_cloudflare.c Finally, install the module. Depending on your system, the command to run might be apxs or apxs2. So, run one of the below two commands. If you get a "Command not found" when running one, try the other: # apxs -a -i -c mod_cloudflare.c # apxs2 -a -i -c mod_cloudflare.c Method 3 - Server Level (Manually) (Debian/Ubuntu) (Apache with mod_cloudflare) mod_cloudflare has a few software dependencies that need to be installed first: # apt-get install libtool apache2-dev Note: If you find that you are unable to install apache2-dev then you should install: # apt-get install libtool apache2-threaded-dev Next, you should download the mod_cloudflare source to your server: # wget https://www.cloudflare.com/static/misc/mod_cloudflare/mod_cloudflare.c Finally, install the module. Depending on your system, the command to run might be apxs or apxs2. So, run one of the below two commands. If you get a "Command not found" when running one, try the other: # apxs -a -i -c mod_cloudflare.c # apxs2 -a -i -c mod_cloudflare.c Method 4 - Server Level (Manually) (NGiNX with http-realip-module) Nowadays, NGiNX should have this module built in by default, so the only thing you will have to do is add the following lines to your site's configuration: #CloudFlare set_real_ip_from 199.27.128.0/21; set_real_ip_from 173.245.48.0/20; set_real_ip_from 103.21.244.0/22; set_real_ip_from 103.22.200.0/22; set_real_ip_from 103.31.4.0/22; set_real_ip_from 141.101.64.0/18; set_real_ip_from 108.162.192.0/18; set_real_ip_from 190.93.240.0/20; set_real_ip_from 188.114.96.0/20; set_real_ip_from 197.234.240.0/22; set_real_ip_from 198.41.128.0/17; set_real_ip_from 162.158.0.0/15; set_real_ip_from 104.16.0.0/12; set_real_ip_from 172.64.0.0/13; set_real_ip_from 2400:cb00::/32; set_real_ip_from 2606:4700::/32; set_real_ip_from 2803:f800::/32; set_real_ip_from 2405:b500::/32; set_real_ip_from 2405:8100::/32; real_ip_header CF-Connecting-IP; Once you saved the configuration, be sure to restart nginx for the changes to take effect: sudo service nginx restart
  14. That's not entirely true :p. How much is WF hosting per month now? VPS or Dedicated? ​Not entirely but mostly. If the company you're looking at offers a VPS, with an SSD drive and is reasonable looking then you'll be almost guaranteed to have good performance if you set it up right.
  15. To clear up: It doesn't matter WHERE you are hosted. You can get the same (or better) speeds on most hosting providers.
  16. ​ Seems a lot faster, where you hosting from? Would see my self purchasing from them too in the future. ​Yeah we're not to keen on doing this just as an extra security measure. Sorry
  17. Howdy WebFlakians, We're back on a new box. With these moves though, thinks are sometimes likely to break. Which is why we ask you the following: If you see or encounter any bugs, please report them in our bugs system, located here: http://webflake.sx/bug-tracker/ You should see awesome speed improvements over the old server. Thanks for being patient with us in the past few weeks. This server change is one more step to ensure we're at the top of our game. Have a nice day! - WebFlake Team
  18. I already have put stuff in place for the transition to work really smoothly. Ofcourse there can always be unexpected issues but having done this in the past and as a test to the new box before, i feel confident we can handle this efficiently.
  19. Hello WebFlake users, Tomorrow we will close WebFlake for scheduled maintenance. We will be moving and continue our services elsewhere, so this involves taking backups and moving over all of our downloads to our new location. This is going to take time, so we ask you to be patient. Tests have shown great performance results and we should go from a 3-4 second page load time to about half a second page load time. When you see an ONLINE webflake that you can browse and visit, it means that you're looking at WebFlake on the new server. If you still see the offline screen it means your DNS hasn't propagated correctly yet and you should wait. Though usually with CloudFlare this won't take very long. Here's a schedule to compare your local time with our time: http://bit.ly/1FOvVFW Have a nice day!
  20. There is a hacky CSS way to do this but it's probably also possible to just add into the code. What isn't working when you just add it behind there? Also guests aren't allowed to view forums so we can't see the author info
  21. ​There is a shoutbox actually, you just can't see it yet :3
×
×
  • Create New...