Skocz do zawartości

NewsBot

Moderator
  • Postów

    9 017
  • Dołączył

  • Ostatnia wizyta

  • Wygrane w rankingu

    26

Treść opublikowana przez NewsBot

  1. This hook will add group colors on user links on Classifieds app, by Andrew Millne. Places covered by this hook: Index: advertiser names and random ad block Ad view: advertiser name and users that made a question Latest classifieds on board index sidebar Requirements: Classifieds 1.2.X: http://community.inv...37-classifieds/ Pobierz plik
  2. One of the things we wanted to focus on for IPS Social Suite 4.0 right from the beginning was providing better support for sites which do not use English or use multiple languages (or, as it was scribbled on my whiteboard, "++ i18n/L19n"). In this blog entry I'm going to cover some of those changes and new features. Translatable Everything Currently when you create a forum, user group, custom profile field, etc. you have to give it a title and can only do this in one language. If you have more that one language installed, you might want to provide different titles for different languages. In 4.0 you can do exactly that - if you have only one language installed, these fields will continue to show as normal text boxes - however, if you have more than one installed you'll see several text boxes like this: Visual Language Editor One feature that has been really popular in IP.Board is the Visual Skin Editor - a tool which allows you to browse your site, and click on elements to bring up a colour selector to change it. What if we could take this idea and apply it to translating as well? Allowing you to click on any word or phrase on your site and translate it there immediately. In 4.0, you can. Easier Language Management In addition to the visual translation we've also made several improvements to the traditional translation method: As you search for a language string, results appear as you type. Editing a language string saves immediately without needing to click a save button. Filter tabs can show you words/phrases which have not yet been translated or the translation is out of date (meaning we've changed the default English value for the word/phrase since it was translated). We've also made importing/exporting much faster and more reliable - no matter how large your language is (it will grow as you add more applications of course) there is now no risk of hitting an error importing/exporting (for those interested in the technical side of how this is achieved, see this blog entry). An exported language pack will also now maintain information on the version of each application it was exported from, so that the filter which shows outdated language strings is always accurate. Automatic Language Detection Let's say you have Spanish and French languages installed on your site - up until now, you'd have to choose one default language, and users who want the other would have to manually choose it (which can be extremely difficult to find how to do when you're browsing a site in a foreign language). In 4.0, we automatically examine the information that the user's browser sends (which includes their preferred language) to choose the best one out of what's available, if that user hasn't already set an explicit preference. Pluralisation In English, pluralisation is very simple - for most nouns, you just append "s" on the end, with some variation for certain words. This however, isn't the case in all languages - for example, I was speaking with the owner of a site in Slovak recently who was telling me that the word "records" changes depending on the number of records there are - for 2 records, it's "2 články", but for 5 records it's "5 článkov". Currently, most language strings only have a singular and plural form (as is all that's needed in English) - meaning having the site show "2 články"/"5 článkov" was impossible. In 4.0, we've introduced some really basic logic into language strings to accommodate this. Rather than having, for example, two language strings with the singular and the plural, there is now one with a value like this: In the default language, this language string is: Zobacz cały wpis
  3. One of the things we wanted to focus on for IPS Social Suite 4.0 right from the beginning was providing better support for sites which do not use English or use multiple languages (or, as it was scribbled on my whiteboard, "++ i18n/L19n"). In this blog entry I'm going to cover some of those changes and new features. Translatable Everything Currently when you create a forum, user group, custom profile field, etc. you have to give it a title and can only do this in one language. If you have more that one language installed, you might want to provide different titles for different languages. In 4.0 you can do exactly that - if you have only one language installed, these fields will continue to show as normal text boxes - however, if you have more than one installed you'll see several text boxes like this: Visual Language Editor One feature that has been really popular in IP.Board is the Visual Skin Editor - a tool which allows you to browse your site, and click on elements to bring up a colour selector to change it. What if we could take this idea and apply it to translating as well? Allowing you to click on any word or phrase on your site and translate it there immediately. In 4.0, you can. Easier Language Management In addition to the visual translation we've also made several improvements to the traditional translation method: As you search for a language string, results appear as you type. Editing a language string saves immediately without needing to click a save button. Filter tabs can show you words/phrases which have not yet been translated or the translation is out of date (meaning we've changed the default English value for the word/phrase since it was translated). We've also made importing/exporting much faster and more reliable - no matter how large your language is (it will grow as you add more applications of course) there is now no risk of hitting an error importing/exporting (for those interested in the technical side of how this is achieved, see this blog entry). An exported language pack will also now maintain information on the version of each application it was exported from, so that the filter which shows outdated language strings is always accurate. Automatic Language Detection Let's say you have Spanish and French languages installed on your site - up until now, you'd have to choose one default language, and users who want the other would have to manually choose it (which can be extremely difficult to find how to do when you're browsing a site in a foreign language). In 4.0, we automatically examine the information that the user's browser sends (which includes their preferred language) to choose the best one out of what's available, if that user hasn't already set an explicit preference. Pluralisation In English, pluralisation is very simple - for most nouns, you just append "s" on the end, with some variation for certain words. This however, isn't the case in all languages - for example, I was speaking with the owner of a site in Slovak recently who was telling me that the word "records" changes depending on the number of records there are - for 2 records, it's "2 články", but for 5 records it's "5 článkov". Currently, most language strings only have a singular and plural form (as is all that's needed in English) - meaning having the site show "2 články"/"5 článkov" was impossible. In 4.0, we've introduced some really basic logic into language strings to accommodate this. Rather than having, for example, two language strings with the singular and the plural, there is now one with a value like this: {# [1:record][?:records]} The # indicates where the number will go, then each set of square brackets represents a possible value - the number before the : indicating the number which will cause that to show, and ? meaning "all other numbers". So for our Slovak example, we'd set the value to: {# [1:článok][5:článkov][?:články]} On display, it will automatically show the appropriate version. Lists Along a similar thread to pluralisation, we've also made the way lists are formatted to be customised through a special language string. For example, a list in English looks like "one, two and three". However, in Japanese, it's "一、二、三。" (the comma symbol is different and there's no "and") - similarly Arabic, Thai and others have similar differences. In 4.0, simply by changing an example language string, this can be changed. In the default language, this language string is: a, b and c For our Japanese example, we'd just change it to: a、b、c UTF-8 Without wanting to get into too much technical detail - UTF-8 is the most common of many ways text can be encoded for storage and display on webpages. UTF-8 has been the default encoding in our software since IP.Board 3.0. Some sites which have been around for a long while though may not be using UTF-8. This can cause issues with some features where UTF-8 encoding is expected (for example, many features which rely on JavaScript require UTF-8 due to JSON only supporting it and nothing else). In addition, some sites may try to use UTF-8, but content is actually stored differently as the database is set to a different encoding, which can also cause issues. In 4.0, we're going all UTF-8. If you're not already on it, the upgrader will convert data. This means a much more reliable and compatible way of handling text. Attached Thumbnails View the full article Zobacz cały news
  4. 1 The code has been converted into noConflict, giving no conflictual cooperation with the motor. 2 Slider during the automatic flip between pictures, set your own width and height of the size of the photo. 3 The settings have been added in the most broad based Admin. The system is connected to bxSlider. JQuery code does not have any conflicts, so the client will not be forced to rework the code. Settings slider names and system information. Uploading and administration of their links to pictures. Can be centered slider. Any information on how to install and upload files. Js is in. Txt Pobierz plik
  5. Our most advanced theme using our fantastic framework 2.1. Have the ability to choose from six beautiful shades. This theme strives on content and social interaction. Highlighted Features Over 20 fantastic theme settings to play with! (That doesn't include the different styles and options you can choose!) Flexible Logo as always (Don't fancy making a logo? Then use a text based one styled to fit in perfectly!) Guest Message (Choose from three different locations to display your guest message!) Selective Style (Choose from six beautiful colours, all built within one theme!) Styled Descriptions (Want to hide forum descriptions? Then use our new feature which allows you to turn them into tool tips!) Easily Changeable (Change the background within seconds with zero experience required.) Supports ProMenu (This theme comes fully capable of supporting the very popular ProMenu's application) ################################ SPECIAL OFFER Get 10% off this theme! Quote "Welcome13" at checkout! Must purchase on ThemeTent.com for this offer! ################################ PURCHASE THEME At ThemeTent - For Quicker support & Updates! Pobierz plik
  6. This hook will integrate IP.Board with Adf.ly full page/banner advertisement and redirection script allowing you to earn money whenever a user click on any posted link. This is ideal for people who want to monetize their outgoing links but can't benefit from vigiLink because they don't have a US based users and/or the "right" niche. Features enable/disable integration choose which group/s will be redirected. choose which forums to change-over to adf.ly. include/exclude domains. choose between full page or banner type advertisement Pobierz plik
  7. +++++++ Welcome to SpaceBound +++++++ Powered with a fully unique IP.Content Portal SpaceBound is a clean, detailed theme release that has plenty of unique features that differs than any of the theme releases out currently. What's unique about Space Bound is the fact that a single background change can alter the overall genre of your website. It can be anything from gaming to scifi or even news and sports, there is nothing this theme can't be geared for. The biggest and by far the best feature about SpaceBound is a custom IP.Content portal included in the package that is unlike any of the IP.Content portals you see out there today in other theme releases on the marketplace. This portal is 100% unique and coded just for SpaceBound ensuring that no one BUT SpaceBound owners have this same portal. And no, this theme just isn't some little bit of extra lines of styling to make it match the forum theme, this is a 100% unique portal, check the screenshots if you don't believe me! You'll get a customized Article News feed, a Recent Forum Activity block, and styled Poll/Status update blocks on the side The portal is currently made up of custom coded blocks in IP.Content and a couple are already provided in the marketplace (Aiwa's Article block and NeoGrants IPC Slider). Aiwa's article block is restyled and customized to better fit the theme while the download package contains a default.css style sheet and slider buttons for use in NeoGrants IP.C Slider for those who have purchased it. Down the road these 2 blocks will be replaced by my own custom news and slideshow blocks to better fit all of my future designs. The forums were built upon the powerful ThemeTent framework provided by Mathew at ThemeTent.com and we've both ensured that you'll get a unique experience with this theme from top level support to a simply stunning design. But that's not all, we've taken it a step further to make sure this theme isn't just compatible, but improved on with other applications such as ProMenu with a better looking dropdown menu's. Overall, don't miss out on this theme -- You'll see plenty of updates and unique features that you simply won't find anywhere else. -------------------------------------------------- What's included + Skin files + Logo.PSD + IP.Content Portal including the frontpage code and the IP.Content blocks + IPC Slider (By NeoGrant) theme changes to fit the theme + Read_Me instructions What's coming soon + Hook to edit the footer links and various other parts provided by ThemeTent + Custom News block custom written specifically for the theme + Custom Slider for articles/images/videos using the powerful FlexSlider Pobierz plik
  8. This file will allow you to promote your IP.Nexus store via RSS-feed. Tested on IP.Nexus 1.5.x only. How to use: 1. Upload the 'rssOutput.php' file to the following folder of your IP.Nexus via ftp: admin/applications_addon/ips/nexus/extensions/ where "admin" is your ACP directory. 2. Visit ACP -> Manage Applications & Modules and click "Recache Apps & Modules" button. See also Russian language packs Pobierz plik
  9. The IPS Social Suite stores skin and language (and some other stuff) in xml files which are imported into the database at installation and upgrade. The reason we do it this way is so of course, you can export skins and languages and install them on other sites or distribute them via the IPS Marketplace. I'm not the biggest fan of PHP's XML handling at the best of times (it would seem whoever wrote the SimpleXML class and I would disagree on the definition of "simple") and had already changed some of the places we use XML to use JSON instead, but these skins and languages are particularly difficult because they can get huge. Handling these large files, especially when combined with sub-par servers can lead to memory exhaustion or maximum execution time timeouts. Our current method was taking both too much memory, and too much time in a single HTTP request. So we had to come up with something better. At first we considered splitting the XML file into several, but that would mean either requiring people installing a new skin/language to upload multiple files (which we deemed not acceptable) or compressing them in some way (which is another of PHP's weaknesses, and would have just created another problem). We also researched different markup languages, however found similar problems with everything. We also had to make sure that any solution didn't step on the toes of any of our other 4.0 goals, in particular we want to completely illuminate writing cache files to disk so as to better support cluster environments. The solution was two-fold. To resolve the memory problem, we decided to use the XMLReader and XMLWriter classes - these are non-cached, forward-only classes for reading and writing XML. Rather than store the document in memory, you can only read/write one node at a time, and can only move forward, not backwards. Even with this approach though, we needed to account for the fact that importing is an intensive operation anyway, and one that needs to be staggered. To accommodate this, we wrote a simple AJAX-based "redirector", which continuously fires HTTP requests at a PHP controller until the controller reports the import is finished (it displays a fancy progress bar to the user while this is happening). We decided to make the AJAX redirector a helper class so that it can be used elsewhere and by third-party developers (rather than our current approach in some areas of making the user sit through loads of physical redirects). The code is really simple: Zobacz cały wpis
  10. This is my first hook This simple hook will create a Free File Messenger on Board Index. If you don't have anywhere to put your download links, this hook will help you do that by putting in your description and allowing your members too see it or not. Hook Settings: Enabled/Disabled the free file Title of the free file Message: this is where you put your description for your download links. Groups: this will be able to restrict access from your download links. Width: how long you want your message to go. Contact Us: Email: [email protected] Website: www.themetree.net Pobierz plik
  11. 100 Amazing Minecraft smileys/emoticons for you to add to your board. Pobierz plik
  12. DISCLAIMER: This hook will not work out of the box. This hook is intended for advanced users. Free support on installing and configuring XSendfile support on your respected webserver will not be guaranteed. Please do your research, read the README and understand what XSendfile actually is and how it works before attempting to use this hook. This hook enables XSendfile support for IP.Downloads. For forum attachments, please use this hook: [K-34] XSendfile Support 1.0.0 Category: Performance Last Updated 15 minutes ago XSendfile basically negates the need to have PHP handle file transfers. This is favorable for many reasons, especially if you run a forum that hosts a lot of large downloads. Documentation links: Apache: https://tn123.org/mod_xsendfile/ Nginx: http://wiki.nginx.org/XSendfile Lighttpd: http://redmine.light...HTTPD-send-file Important notes: When using this hook, you cannot restrict the maximum number of simultaneous downloads. As the download is being handed over to the web server, IP.Downloads will not know when a user actually has a download in progress. There is no way around this. Speed throttling will only work with Nginx, as Nginx (as far as I know) is the only web server that supports download rate limiting with X-Sendfile. Pobierz plik
  13. DISCLAIMER: This hook will not work out of the box. This hook is intended for advanced users. Free support on installing and configuring XSendfile support on your respected webserver will not be guaranteed. Please do your research, read the README and understand what XSendfile actually is and how it works before attempting to use this hook. This hook enables XSendfile support for forum attachments. The IP.Downloads version of this hook will be available soon. XSendfile basically negates the need to have PHP handle file transfers. This is favorable for many reasons, especially if you run a forum that hosts a lot of large attachments. Documentation links: Apache: https://tn123.org/mod_xsendfile/ Nginx: http://wiki.nginx.org/XSendfile Lighttpd: http://redmine.light...HTTPD-send-file Pobierz plik
  14. We created a new simple and clean theme called "Flat" Flat is simple and clean for your forums and for your friends. We modify the buttons so they look better and simple for your mouse to touch on. We also redesign the nav to make it stick out of your forums. If your gonna love this theme, you should buy it because it's not going nowhere. Contact Us: Email: [email protected] Website: www.themetree.net Pobierz plik
  15. A set of dark themed ranks with icons. Contains the following ranks: Admin Moderator Global Mod Member Banned Creative Newbie Partner Premium Support Pobierz plik
  16. We have a few updates to our services to share with you. Community in the Cloud For over 11 years IPS has provided hosting services for clients that want a turn-key approach to their online community. Over time we have become more and more focused on community hosting solutions so it seemed like a good time to drop the older "hosting" term and adopt a new name for our service: Community in the Cloud. Granted it's the buzzword of the day but we were in the cloud before the cloud was a term . Right now it's all that you had before but presented in a much easier to understand format. Check out our new information page: http://www.invisionpower.com/cloud-pricing This name and presentation change is just step one. We will soon be increasing our storage quotas and have some other great changes on the way! New Support Package We often get clients who are looking for a higher level of support beyond just tickets. They want training, schedule upgrade service, consultations, and more. Of course offering that level of support is intensive and in the past we have always custom-quoted such services. Now to streamline we we have created a new Premium Support package that includes: Implementation Scheduled installation time Initial training & consultation by phone or live chat Post-deployment best practices training Custom migration from other platforms* Custom skin design* Custom single sign on (SSO)* SupportSame business day ticket response Scheduled upgrade times Custom skin upgrades between versions* Security updates applied before public release Monthly MaintenanceLogs checked for signs of problems Advise and schedule if upgrades are available Database maintenance Settings reviewed for optimal performance Best practices reviews * Custom services may incur additional fees The new Premium Support package is $500 every 6 months and is available for purchase or upgrade today. If you have any questions feel free to email [email protected] and we will be happy to help. Transfer Promotion If you are interested in moving to IPS Community in the Cloud we are offering a promotion that should make now the best time to make the switch. From now until 1 September 2013 we will offer free transfers and free conversions. This means if you are already using IPS Community Suite on your own servers but want to switch to the CiC we will move your data for you. It also means that if you are using a different community software provider and are ready to upgrade to CiC we will both transfer your data and convert it using one of our pre-made converters. View the full article Zobacz cały news
  17. We have a few updates to our services to share with you. Community in the Cloud For over 11 years IPS has provided hosting services for clients that want a turn-key approach to their online community. Over time we have become more and more focused on community hosting solutions so it seemed like a good time to drop the older "hosting" term and adopt a new name for our service: Community in the Cloud. Granted it's the buzzword of the day but we were in the cloud before the cloud was a term . Right now it's all that you had before but presented in a much easier to understand format. Check out our new information page: http://www.invisionpower.com/cloud-pricing This name and presentation change is just step one. We will soon be increasing our storage quotas and have some other great changes on the way! New Support Package We often get clients who are looking for a higher level of support beyond just tickets. They want training, schedule upgrade service, consultations, and more. Of course offering that level of support is intensive and in the past we have always custom-quoted such services. Now to streamline we we have created a new Premium Support package that includes: Implementation Scheduled installation time Initial training & consultation by phone or live chat Post-deployment best practices training Custom migration from other platforms* Custom skin design* Custom single sign on (SSO)* SupportSame business day ticket response Scheduled upgrade times Custom skin upgrades between versions* Security updates applied before public release Monthly MaintenanceLogs checked for signs of problems Advise and schedule if upgrades are available Database maintenance Settings reviewed for optimal performance Best practices reviews * Custom services may incur additional fees The new Premium Support package is $500 every 6 months and is available for purchase or upgrade today. If you have any questions feel free to email [email protected] and we will be happy to help. Transfer Promotion If you are interested in moving to IPS Community in the Cloud we are offering a promotion that should make now the best time to make the switch. From now until 1 September 2013 we will offer free transfers and free conversions. This means if you are already using IPS Community Suite on your own servers but want to switch to the CiC we will move your data for you. It also means that if you are using a different community software provider and are ready to upgrade to CiC we will both transfer your data and convert it using one of our pre-made converters. Zobacz cały wpis
  18. Anime-Insight Light We are happy to announce "Anime-Insight Light" An anime theme for those that are looking for a good anime theme that works well with other apps. With anime-Insight light you get a niche anime website look without all the fuss of having to design your own. Custom Category Headers You have preset category headers that work if you would like new ones you can contact me for the PSD file. Logo PSD included. All instrucons included if not you can send me a PM and I will help you our Logo size is 1003 x 758 ment for high res computers. For demo of logo change you can check out www.anime-insight.com Pobierz plik
  19. Haze is a powerful and multi-purpose theme for Invision Power Board that is suited towards any type of community. Haze is packed full of options that allow you to modify layout, styling, colours and fonts directly from within the backend settings. It’s also fully compatible with the entire Invision Power Services Suite as well as a huge range of 3rd-party applications and hooks. Feature List Customise board width (fixed or fluid) Header styles Fixed (sticky) header or scrollingMultiple Board Index Layouts Default, list & 2 Column GridMultiple Topic View LayoutsDefault, Basic, HorizontalSocial Media IconsFacebook, twitter, google, youtube, rss, linkedin, paypal, skype, vimeo, lastfm, deviantart, flickr, steam, xboxBuilt in web fontsarial, helvetica, pt sans, open sans, droid sans, lato, dosis, yannone kaffeesatz, play, raleway, abel, oxygen, pt serif, droid serif, georgiaColour PickerCustomise primary & secondary colours from a colour pickerHero / Featured Image Live ChooserLive background image switching from front endAdvanced Footer Flickr photo feed, HTML block, contact/social icon block & forum navigation blockHTML Text logo Customisable Guest Message Pobierz plik
  20. Security Update: Potential vulnerability in third-party Minify library A potential security vulnerability with Minify has been discovered that only affects some specific server environments. Minify is a third party app that combines multiple CSS and javascript files to help speed up the rendering of IP.Board in a browser. This issue may affect your site even if you are not making use of Minify in IP.Board. Although the vulnerability is caused by the Minify application, in the interests of our customers we felt it best to patch the issue. We have updated the zip file available from your client area and are including a manual patch in this announcement. Additionally, IPS reported the issue to the Minify developers who have released their own similar patch today in the form of a new release (version 2.1.7): https://groups.google.com/forum/#!msg/minify/cpN-ncKPFZE/kwYVpLMkfDwJ This issue only affects IP.Board 3.4.0 - 3.4.5. Installing the patch Simply download the attached zip file and once extracted, upload /public/min/config.php to your server replacing the one on the server. minify_patch_07_13.zip 3.68KB 139 downloads Alternatively, you may follow the instructions made available by the Minify developers in their release announcement. While our patch was developed in-house prior to the release of Minify 2.1.7, either patch will protect your board. IPS Hosting Clients If you are an IPS Hosting client you do not need to be concerned with this security issue. Our servers are not vulnerable to this specific exploit. Zobacz cały news
  21. This hook allow to create/edit Custom Content Blocks certain groups. Pobierz plik
  22. IPB Wiki Features Overview Seamless integration of the login system of MediaWiki and Invision Power Board. Your website visitors get the convenience of a single sign-on into the forum and the wiki, leading to an increased community participation. IpbWiki provides 2 authentication methods:Transparent User Authentication: if the user visited the forum and there exists a forum session, then user is automatically logged in into the wiki. Non-transparent User Authentication: Clicking the Login button in the wiki authenticates against the forum database and logs the user in both the wiki and (optionally) the forum. Integrated Skins: Out of the box skin integration. Configure Wiki-Rights: grant wiki-rights (read, edit, minoredit, createpage, createtalk, move, delete, undelete, protect, block, createaccount, upload, reupload, reupload-shared, rollback, patrol, editinterface, siteadmin, bot, asksql, checkuser) based on the member's Forum User Group and member's number of posts. Supports BBCode & Emotions: IpbWiki Parses BBCode so your forum members continue to use the familiar forum BBCode, leading to an increased community participation. Emoticons are also supported. Automatically link keywords in your forum post to wiki-topics by using the Automatic wikification extension, or link to topics manually by using the [wiki] bbcode Discussion Threads: possibility to configure IpbWiki to redirect the wiki discussion tabpage to a forum discussion thread, again leading to an increased community participation. Rating System: Allows your visitors to provide feedback how much they like your articles. Limited CMS capabilities: Add topiclists and forum posts inside your wiki pages. Online Users Integration: Show in 1 list who's active on your forum and wiki. Poweful & Convenient Control Panel: All options can be simply selected turned on/off in your Admin CP Panel. Link multiple wikis to 1 forum Since IpbWiki is based on MediaWiki you can automatically enjoy all features of MediaWiki when you use IpbWiki No Programming Or Editing Needed: Simple installation and a user friendly control panel supports configuring feautures as you need. I will be committing myself to upgrading this all throughout 4.0. If some of you would like to help. Contact me through the email I have on the readme or search: Geonode on Sourceforge. Some of the skins work but not all, I plan to do some integration with other skins when I have the time. But right now my only concern is the bugs that are found. Also the format of the Skins section in the admincp of ipbwiki is a bit messed up but its functioning. This integration is free but donations are appreciated: Pobierz plik
  23. English The instructions for loading, you will find them in the attached file txt. Report any error to [email protected] I'm taking care to edit the xml file that are not contained in the original translation, so you have also translated the admin panel complete. There are two files in the folder admin / applications_addon / ips / ccs / xml, and are 'ccs_settings' and 'admin_ccs_language_pack' to be translated before the installation, but I'm trying with a different procedure to avoid the problem. I will keep you informed. Italiano Le istruzioni per il caricamento, le troverete nel file allegato txt. Segnalate qualsiasi errore a [email protected] Sto provvedendo a modificare i file xml che non sono contenuti nella traduzione originale, in modo da avere tradotto anche il pannello admin completo. Ci sono due file nella cartella admin/applications_addon/ips/ccs/xml, e sono 'ccs_settings' e 'admin_ccs_language_pack' da tradurre prima dell'installazione, ma sto provando con una procedura diversa per evitare il problema. Vi terrò informati. Pobierz plik
  24. This is an XML ban filter that can be used with (M34) Ban Filter Importer. About M34 Ban Filter Importer: Adds import and export functionality to the Ban Filter much like Bad Words import/export. Allowing ban lists to be shared much quicker between multiple forums or other forum admins. (Backwards compatible with IPB 2.1, 2.2, 2.3 and 3.1 ipb_banfilter.xml lists.) About Spam Buster Filter: Spam buster filter is an XML file with well over 300 domains added. This prevents registration with temporary email addresses. Pobierz plik
  25. Charts and graphs are an essential tool in modern web applications. The API we use for displaying charts and graphs in IP.Board presently is something we wrote in-house during IP.Board 2.x - it uses the PHP GD library to generate an image representing a chart. At the time, it was pretty amazing, but as times have changed a number of libraries for generating much more visually appealing and interactive graphs have emerged. For IPS Social Suite 4.0 we've decided to retire our GD-based charting library and embrace something a bit more modern and familiar for developers to work with. After looking at a number of different solutions, we decided to use Google Charts (although wrapped with a simple gateway PHP class). Google Charts look great, have great features, are commonly used (so we figure any third-party developers who want to add charts to their apps will be able to do so easily) and is a service provided for free with no API limitations. I'll show you an example of how simple it is to create a chart in IPS Social Suite 4.0. Let's look at the code I might use to show a graph of the number of members registered over time: As you can see, the code is extremely simple to understand and use. This is what the output looks like: By hovering over any point I'll see a tooltip with the value at that point. All of the chart types and options available in Google Charts are available to us. Let's make some changes to make the lines curved, get rid of the legend and show titles on each axis - I just change the last line of the code to: And now my chart looks like this: Attached Thumbnails Zobacz cały wpis
×
×
  • Dodaj nową pozycję...

Powiadomienie o plikach cookie

Umieściliśmy na Twoim urządzeniu pliki cookie, aby pomóc Ci usprawnić przeglądanie strony. Możesz dostosować ustawienia plików cookie, w przeciwnym wypadku zakładamy, że wyrażasz na to zgodę.