Jump to content
WebFlake

WWD

Snow
  • Posts

    170
  • Joined

  • Last visited

  • Days Won

    3

Community Answers

  1. WWD's post in Many errors in forum was marked as the answer   
    Could be a multitude of reasons, including the above and
    bad permissions server misconfiguration, as you migrated database was migrated incorrectly/in wrong format
  2. WWD's post in About reactions was marked as the answer   
    Responded.
    Fixed. The issue was some broken code in the user's theme file.
  3. WWD's post in Font not loading? was marked as the answer   
    Here's the fix:
    @font-face { font-family: galano, serif; src: url("http://empyrean.ps/assets/fonts/galano.otf") format("opentype"); } to
    @font-face { font-family: galano; src: url('/assets/fonts/galano.otf') format('opentype'); } Serif was the issue.
  4. WWD's post in Chatbox was marked as the answer   
    Communicated over #support on the WebFlake Discord:
    The issue was with his member permissions for a certain Administrator account, and not an issue with the actual Chatbox application.
  5. WWD's post in How to remove donation goal out of /donate was marked as the answer   
    You should just be able to remove it via the Block Manager.

  6. WWD's post in dereferer was marked as the answer   
    IPS will not be tracking your forum if you are using a WF null. Don't worry.
  7. WWD's post in FLine theme articles slide don't work was marked as the answer   
    @T0E
    This is a core issue with Veilon themes it seems. I just tried it out on my own Veilon theme. I would stay away from this buggy feature
    Alternatively, I would highly recommend downloading Featured Content: https://invisioncommunity.com/files/file/7290-bim42-featured-content/
    It's highly customizable. A version for 4.2.x is not currently available on WebFlake, but this version still works for me on 4.2:
    Here are some screenshots of how I've used it on my site:


     
  8. WWD's post in Gallery widget was marked as the answer   
    For a widget? No. The only way to "restrict" the user from seeing a specific category is to configure the permissions to view the images from that category in the first place.
    I don't think what you want can be done; I do think it's a good idea though.
  9. WWD's post in [HELP WITH REACTIONS] Showing to high and braking template in mobile version? was marked as the answer   
    Hi,
    Please add the following CSS edits to the custom.css file on your Titan theme via Theme Editor:
    /*CSS EDITS FOR COMMENTS*/ @media screen and (min-width: 768px){ .cPost .ipsComment_controls { position: initial !important; margin-top: 15px !important; } } @media screen and (min-width: 768px){ .cAuthorPane { padding-bottom: 15px !important; } } That should do the trick for you.
    It should look like this:
    Mobile:

    Desktop:

    (On a side note, I would highly reccomend hiding some of the fields in the profile pane on mobile. It look very cluttered, especially on smaller devices. The plugin you are using, Enhanced User Info Panel, has the option to hide fields on mobile as a setting, check it out!)
  10. WWD's post in How to move blog entries to a forum? was marked as the answer   
    @McPearse
    Unfortunately, IPS does not support conversion from Blogs to Forums. You can only move blog entries from one blog to another.
    If you wanted to move an entry to a forum, you'd have to create a new topic in that forum and copy/paste the blog entry contents.
    (I tried moving it to a forum on my own test board, as seen below)

  11. WWD's post in {$member->photo} was marked as the answer   
    @Maxqqq
    If you're trying to create a roster page and you don't know how to correctly use the IPS variables, then you're going to run into a LOT more issues than just displaying the photo...
    Can we get a screenshot of what you're envisioning to create? Chances are there is already a feature/plugin of IPS that will do the trick for you. A couple ways already come to mind.
    Staff feature Pages application IPS Member search But again, would need a better description/explanation of what you're trying to achieve.
  12. WWD's post in MySQL syntax error every time someone searches a word with 3 characters or less was marked as the answer   
    The issue ended up being with MySQL's fulltext searching minimum length.
    If you're having the same issue, you've got to:
    Adjust the minimum character length in MySQL for full-text-searches Go to ACP > Search > Rebuild Search Index
  13. WWD's post in Deny PM from usergroup1 to usergroup2 was marked as the answer   
    @lollo90
    Short answer: no. IPS does not support any such customization of the messenger function.
    To achieve something like that, you'd have to disable messaging entirely for a usergroup and then have it enabled when they are moved up to a different group.
  14. WWD's post in Change language with url was marked as the answer   
    Create a Friendly URL.
    ACP > Advanced Configuration > Friendly URLs > +Create New
    Your "Friendly URL" would be what you described in your post, so language=en
    The "Real URL" would be whatever URL you use to change the language normally. I don't have multiple languages on my own board so you'll have to find that yourself.
  15. WWD's post in Compression stats was marked as the answer   
    @monsterteam
    These forums are using the following plugin:
    However, the above file is only for 4.0.x and I see you need a 4.2.x
    You can submit a file request for "General Statistics Widget 1.0.2" (the latest version, for 4.2.x) in https://webflake.sx/forum/167-ips-requests/
  16. WWD's post in IP.Board HTTP 500 Error on AdminCP was marked as the answer   
    I've gotten this before. Could mean:
    Your file permissions/group ownership on the files are mismatched. Make sure that nginx/Apache is part of the group that owns the files (ask your host if you need help). As @Davlin pointed to, you have a version mismatch. Are you using 4.1 plugins/apps with 4.1, or 4.2 plugins/apps with 4.2?
  17. WWD's post in Topic Thumbnails not working with IPS's Image Proxy was marked as the answer   
    FIXED for IPB 4.2.x in Topic Thumbnail 2.0.7
     
  18. WWD's post in Any solution for this problem was marked as the answer   
    This is the shortcoming of the Announcements feature  - when you put a widget with announcements that have links, they will not be hyperlinked, and for no apparent reason. This is why I do not use announcements on my community
    Alternatively, you could just create a custom block via the Portal app and put that block wherever you want!
  19. WWD's post in Unhappy with IV - How can I move completely over to WebFlake's IPS 4.2? was marked as the answer   
    @Davlin @Cookie Monster I've successfully upgraded to 4.2.5! For anyone who has this same issue, your issue is with the group that owns the files in the document root.
    Thank you for helping me pinpoint the problem. I will most certainly be donating within the next few days
    Here's roughly how I fixed it:
    (CentOS 7 running NGINX and php-fpm)
    -Created user group www-data -Created user www-data and added to group www-data -added nginx and php-fpm to www-data: usermod -aG www-data nginx usermod -aG www-data php-fpm -edit configuration files of nginx and php-fpm vi /etc/php-fpm.d/www.conf user = www-data; group = www-data; ... listen.owner = www-data listen.group = www-data vi /etc/nginx/nginx.conf user www-data; -recursively made www-data user and group owner of document root chown -R www-data:www-data /var/www/html -made www-data owner of php lib and nginx chown -R www-data:www-data /var/lib/php chown -R www-data:www-data /var/lib/nginx -restarted NGINX and php-fpm service nginx restart service php-fpm restart This can be resolved, thanks!
×
×
  • Create New...