Jump to content
  • Sign Up

Tony

Administrator
  • Posts

    5,261
  • Joined

  • Last visited

  • Days Won

    703

Everything posted by Tony

  1. Increase your upload_max_filesize in your hosting panel.
  2. Your error has nothing to do with the file itself. It's most certainly an issue with folder permissions. Are you using a CDN by chance? If so, can you check the folder permissions that you have set for it? Would still like to see the contents of the most recent error log contained within /yoursite/uploads/logs.
  3. If you are on v4.2.5 already, then yeah, you'll need to wait for the next update unless you want to manually remove those references. If you're not interested in waiting, I suggest zipping your forum directory, downloading a copy to your desktop, getting AgentRansack, searching the entire folder for "nulled", and removing each reference as you see fit.
  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. Profile Songs are back! Removed the "remove formatting" button from the editor toolbar (default feature). Added a spoiler button to the editor toolbar. Repositioned the back-to-top button on mobile. View full release
  6. Start with a backup of both your database and all files, then download the latest copy of IPS (4.2.5) and try the upgrade process. Unless IV did some really elaborate, obnoxious licensing system, that should be all you need to do. I haven't looked at their system yet to really have any idea. Also, can you check for any updated error files in /uploads/logs and paste the contents of the most recent file in code tags? If it's too large, just use PasteBin.
  7. There sure is! Start by not using nulled releases from other websites and then upgrade to the latest version (4.2.5), available on our site. Our releases do not include references to the product being nulled. Once you've upgraded, you'll no longer see those references anywhere on your site.
  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. There is an absolute wealth of information on this forum on this very subject. I recommend doing a search.
  10. It's "locked" as in you cannot disable it as it is the default application for the community. That has nothing to do with your ability to access the frontend.
  11. Fixed a z-index issue with the back-to-top button on mobile (thanks to @Music Case for the report). Added the Popular Contributors block to the index, just above Status Updates. DISCORD: Added the new #meta text channel. Use this channel to discuss improvements, concerns, and ideas for the WebFlake Discord server. View full release
  12. Members block can be sorted by content and Popular Contributors block will display a list of users based on overall content. There isn't a default block for displaying members based on post count, not that I'm aware of. This is probably what you're looking for: https://invisioncommunity.com/files/file/7487-jimmo-top-posters-plus/
  13. We also have 99.99% uptime and won't go offline for days at a time.
  14. In the future, please use a descriptive topic title. You posted in the support section, so 'no shit' it's a question. As for the question itself, we cannot tell you what plugins/apps will be compatible with 4.2.5. It isn't recommended to use out-of-date extensions but some of those extensions will work with the latest version of IPS but we do not have an all-inclusive list of which ones do, nor will we ever. In short: try it yourself.
  15. Based on the reviews, there are a number of problems with it so it's not something we will be adding to WebFlake. Not sure that it really fits with our theme anyway.
  16. Can you be more specific, please? Are you suggesting we add a running online timer to the author pane or how long a member has been part of the site?
  17. Added new back-to-top button. Updated our anti-spam services. View full release
  18. Removed redundant group title from author pane. Added new preview option for posting. Press ALT+B or just click the button. View full release
  19. With all of the excitement as of late about WebFlake potentially adding our own license to software distributions, I want to be perfectly clear: WebFlake has not, nor will we ever, require a license or implement a licensing system. It's unfortunate that the try-before-buy scene has become what it has: communities more interested in self-importance than its users. No one in this market has any moral standing with which to stake a claim to content distributions -- it defeats the purpose of "free". These licensing systems might claim to be about "exclusivity" but really, it's about ego and monetization of an equal-value product they foolishly believe they own the rights to. An attempt to corner the market, thereby alienating a significant number of users. As a result of this nonsense, WebFlake is going to show good faith in the community and challenge the status quo. Effective today, we are officially lifting our longtime policy against leeching. Group-based download restrictions will remain as they are but we will no longer actively enforce an anti-leeching policy. You are free to download our content and do with it whatever you so desire. We're confident that our work and this website speaks for itself. It is our hope that our integrity, professionalism, and tireless drive to be the absolute best instills your confidence in WebFlake. Most importantly perhaps, you can rest assured that our content will always be license free. Please be aware of the risk you put yourself in by agreeing to any of these new license agreements with other communities. WebFlake will still be here.
  20. 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.
  21. Upgraded site to the latest IPS version (4.2.5). Upgraded our Donations app. Top Donors module is now working properly. Changed CSS colorization of the Donation Perks table on the Donations page. Automatic demotions to Inactive Members should be working properly again. More info here: https://webflake.sx/topic/15097-inactivity-and-you/ Removed unnecessary tags from IPS Tutorials 4.1 and 4.2. Enabled additional reactions: Sad, Confused, Haha, Thanks. Added additional ban filters on suspicious throwaway email domains. View full release
  22. 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.
  23. 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.
  24. This applies to all 4.x versions of IPS. Occasionally you'll want to style a specific element on a specific page of your community - maybe you want to change how topic titles are shown inside a topic, or do something specific to the styles used in activity streams, without also altering other screens where the same elements are used. Your first instinct might be to open the template editor and add some custom classnames so you can style them. This would certainly work, but the downside is your template is now customized, so any future IPS4 updates would leave the template out of date. Not ideal by any means. Instead, you can use some helpful attributes that IPS4 adds to the body element, and then build a CSS selector around them. There's four attributes, and they always reference the current page the user is on: data-pageApp - The application key (e.g. core, forums, cms etc.) data-pageModule - The current module with the application (e.g. pages) data-pageController - The current controller within the module (e.g. topic, page etc.) data-pageLocation - Either admin or front. So let's say we want to change how the .ipsPageHeader element looks within topic view. Our selector would look like this: body[data-pageapp="forums"][data-pagemodule="forums"][data-pagecontroller="topic"] .ipsPageHeader { ...your styles } If you don't want to be that specific, you can just use the attributes you need. For example, if you want to change all .ipsPageHeader styles in the Forums app, you'd do: body[data-pageapp="forums"] .ipsPageHeader { ...your styles } Tip: If you don't know the correct app/module/controller for the page you're on, you can find out by visiting the page and then viewing the page source. You'll see these attributes in the body tag near the top. And as always, be sure you add your CSS to custom.css to keep your upgrades easy. https://invisioncommunity.com/4guides/themes-and-customizations/tips-tricks_362/targeting-elements-on-specific-pages-with-css-r179/
×
×
  • Create New...