Advertisement
-
Posts
101 -
Joined
-
Last visited
-
Days Won
11
Content Type
Profiles
Forums
Downloads
Bugs
WF Feature Plan
Suggestions
WebFlake Release Notes
FAQ
Store
Blogs
Applications
Ideas
Everything posted by Oni
-
Version 2.5.2
185 downloads
A full-featured Tutorials/Article system for your IPS Community. Here's a quick rundown of some of the features for this application: Fully compatible with IPS 4.2 (Clubs, Recommended Comments, Content Message, etc.) Unlimited categories of articles, plus unlimited depth of parent-child relationships Category Icons Ability to use comments system or support topics, or both Per-category permissions to show category, read articles, submit articles, add comments, and avoid approval queues Extra Fields that can be used per-category Quick edit (ajax) of tutorial's title on category view Preview the tutorial content when you hover the tutorial link on category view Group permissions on specifc actions Integration with the Advertisements system Integration with the Bulk Mail system Integration with ACP Live Seach (Tutorials categories) Integration with Tag system Integration with Report system Integration with Search system Integration with Share Links to share, download, or print articles Integration with Sitemap system to include tutorials in your sitemap Moderator actions on articles and comments Ability to create RSS feeds of all tutorials Ability to attach files to tutorials and comments Ability to quickly convert a forum post into a new tutorial Ability to copy a tutorial from one category to another or to the same category Friendly URLs for tutorials and categories Ability to give reputation points for tutorials Ability to rate tutorials Ability to follow categories and tutorials to receive notifications on updatesupdates Tools to create topics to existing tutorials, make tutorials of topics and rebuild support topics text if you have changed the template on Tutorials settings. And much, much more!- 1 review
-
- 2
-
-
@Gm Prodigy: Hey mate, not a bad idea but why using a database for just storing key/value pairs if you have no script which can interact with it? You would have to update these records manually by connecting to the database - every time you want to add, edit or delete. Same problem with the recommendation from @JamesHopkins69, where I would have to manually update the list by editing an HTML template, not very user-friendly and also very static. We could do it better by just having something like this : (This is just a POC version.) If we have to work with data in IPS (or any CMS in general), it's most likely dynamic data which means it is "constantly changing", so we don't want any static workarounds. You would definitely want to use an application or plugin to do such things.
-
A cheat cannot check whether it is detected or not (except an AC-Software has a public database with signatures of each detected cheat), so these values getting updated manually. I don't think this is a plugin, it could be one but I think it's just custom HTML block which is edited manually. Add me on Discord if you want this as a plugin - 5$
-
If you just want to move your current forum to another server/hoster: Make a backup of your current site (Copy the files and save them somewhere) Make a backup of your database (Export your database as .sql and save it somewhere) Move all the files to your new website and also import your .sql dump in your new database. Open the config_global.php and change site URL and database details.
-
That requires a bit more than just some HTML modifications. I made a plugin for that a while ago if you are interested.
-
Probably using an outdated, incompatible or broken application. The error log doesn't reveal the full path of the missing class, so I can't tell you which one it is to look for. Would be also nice to know which application you are using.
- 1 reply
-
- 1
-
-
This is not just for formatting groups, you can apply these everywhere you want. You can paste the CSS code in your themes custom.css as an example. If you need assistance, show me exactly what you want to achieve and I'll help you.
-
Sure pal! Common way using the HTML <img> tag: <img src="https://icons.iconarchive.com/icons/chanut/role-playing/24/Potion-icon.png"><span>samavoda</span> Which looks like this: , We could also swap the position of both elements: . <span>samavoda</span><img src="https://icons.iconarchive.com/icons/chanut/role-playing/24/Potion-icon.png"> The <span> tag is not necessary in this example but in general it's used to grouping of inline-elements/properties, like this: <span style="color: red;font-weight: bold;">samavoda</span> Outcome: Alternative way using CSS only (will be cached): .samavoda { color: #b57efa; font-weight: bold; } .samavoda::before { content: url(https://icons.iconarchive.com/icons/chanut/role-playing/24/Potion-icon.png); } As you can see we have 2 classes, the second one extends the first one using a ::before Selector. Let's see what that selector does: <span class="samavoda">samavoda</span> Outcome: , as you can see it does exactly the same thing, except that we have to manually center the vertical-align of the image. Using ::after instead of ::before does the same as swapping elements in HTML templates like showed above. This way just makes your code more maintainable. Stick to the first way if you don't have too much inline-properties, it's easier and your styling doesn't get cached.
-
Seems like your site is being under a DDoS attack. I've been watching your online users page (https://www.kerdsteam.com/index.php?/online/) for a while now and it seems like the size of the attack is around 630 - 650 connections. (According to your site - also looks like the numbers are going down.) Ineffective since your site isn't slowed down on my end, you could ignore it for now and contact your hosting provider. If you don't wanna just sit there and wait, make a Cloudflare account, it's free and a good solution for most attacks.
-
Hello @AGUI, your forum looks currently like this: If you really want to center your logo, it will look like this: Add this line to your custom.css: #elSiteTitle, #elLogo { margin: 0 auto; } That's how easy it is!
-
Check out this article https://cssgradient.io/blog/css-gradient-text/ for CSS text gradients. To add images, just use the HTML img tag: <img src="link_to_your_image.png"> If you want to use CSS-only, take a look at the CSS ::before or ::after Selector for the image.
-
Hello @buster33 and welcome to WebFlake! Glad to see you being a part of our community.
-
That's a weird one but I remember helping someone out who had exactly the same issue. Are you using Cloudflare caching or any local caching services like Redis? If so, please try to purge all cached files.
-
I looked at your forum, there were no files to download, so I uploaded a test file and tried to download it as a guest, which did not work Should be good, if you have any further questions related to permission configuration feel free to message me on Discord like always.
-
You probably just configured the user group permission settings, you should also configure the permissions of your Downloads Application (Community → Downloads → Categories)
-
Theme Tip: Styling specific elements on specific pages
Oni replied to Tony's topic in Invision Tutorials
You can do that by attribute selection, here an example for selecting a container with the id attribute containing the value "lkSwiper". div[id="lkSwiper"] { color: #000; } -
Upload your IPS 4.4 themes that you want to be updated and I will make them ready for IPS 4.5.
-
You are apparently very inexperienced my friend, you didn't even manage to follow my little tutorial. It works, I do it that way since years - and you are not a developer, you are a wannabe. Go read more of my posts so you can learn something It's working perfectly as you can see.
-
"invalid_request" always means that the request is missing a required parameter, includes an invalid parameter value, or is otherwise malformed. Seems like OAuth requires you to use the PKCE extension but even the PKCE extension itself does not add any new responses, so clients can always use the PKCE extension even if an authorization server does not support it. (So I guess it's the PKCE Code Challenge method parameter itself?) Short answer: I'm not the developer of that handler, so I can't tell you exactly what's wrong with it without seeing any code. You would have to wait for an updated version or create your own login handler for IPS by following the developer documentations.
-
The way I recommended works perfectly, the problem should be on your end @mr-pimpen Also, if you are using my way you would never have to touch the group settings again to edit the group formatting, once set, it's properties getting loaded by your custom.css which means less headache when editing group formatting
-
Go to your AdminCP ⇾ Members ⇾ Groups, and choose one to edit, it should look like this after: The important part for us is the "Group Formatting" where we can choose between "Use Color" or "Use HTML", since we want to apply a style not just a color we are going to select "Use HTML". Paste this into the first box: <span class="clrSparkle"> and this into the second box: </span> Save your changes and go to Customization ⇾ Themes ⇾ Your Theme ⇾ Edit HTML & CSS and open the custom.css of your theme. Paste this into it: .clrSparkle { color: #56deff; font-weight: bold; background: url(https://i.imgur.com/8wxFgdm.gif); } I used this sparkle-effect for it: You can add multiple variants to your custom.css and use them the same way.
-
Hello @michigo, feel free to add me on Discord.
- 1 reply
-
- 1
-
-
Exactly, that's what will happen and why I said "they don't ignore DMCA complaints or any kind of abuse mails". Thanks for sharing that email here
-
I wouldn't recommend Namecheap for hosting pirated/nulled software, their servers are located in the USA, and they don't ignore DMCA complaints or any kind of abuse mails. There are many good hosting services, you just need the right location If you want a recommendation, try https://flaunt7.com
-
You cannot downgrade your current installation of IPS, there is no conversion tool for it. If you like the plugin, I would advise you to buy it. Don't have an IPS license to buy stuff from the marketplace? You can find some people on WebFlake that have one.