CSS HTML CMS - Informacje
20% Off All New Sites!
JoomlaPraise, Projectfork, and AdminPraise are all new for 2010! All Joomla, Joomla Admin, and Projectfork items and bundles have 20% OFF to celebrate the new store. New JoomlaPraise: http://www.joomlapraise.com/ New Projectfork: http://www.projectfork.net/ New AdminPraise: http://www.adminpraise.com/
This Plugin is pu arcade plugin for sh404 sef to give short links, just copy what is in the archive in " /components/com_puarcade/ " .
The development of the new Morph framework for Joomla is now close to code-freeze and “feature complete”. Today, the team published the first (almost) complete list of features!
JBolo! v2.1.0 released We're pleased to announce the availability of JBolo! version 2.1.0. This version is a minor bug fix release, and the following issues have been addressed 1. After navigating among pages, chatboxes no more reappear once you close them. 2. Now both the module and chat box obey the name/username setting
Plugin for simply Book Library web site creation. This is the latest version BookLibrary Search is a plugin that allows searching books from BookLibrary componentdirectly through the general Joomla site search. Author: OrdaSoft - Andrey Kvasnevskiy, Aleksey Pakholkov March 2009 License: Released under the GNU/GPL.
JFBConnect, the premiere Joomla Facebook extension just got a whole lot better. v3.1 was recently released, and adds the ability to import user profiles into any of 5 popular community components: K2, Agora, Community Builder, JomSocial and Kunena; with more on the way. Now you can easily import avatar, name, email, location, favorite movies, quotes, and about 30 other Facebook fields into any profile fields you want in seconds, every time the user logs in. This release also has a ton of new features, speed improvements, and bug-fixes. Read on to find out about how to add the Login With Facebook button anywhere on your site, how to post to a user's Facebook wall on registration (great for promotion) or how to add Like, Comments, Friend Invites, or any of the other Facebook social widgets to your site!
MediaMall provides is a powerfull solution to manage media files online distribution with a built in Credit System. Using this component the site can easily sell massmedia files (ex. Video Tutorials) online. Using the MediaMall solution users can post their czwarta władza files on your site. For each ¶rodki masowego przekazu file a number of Credits can be perceived in order to vizualise the file. The poster will earn credits, which can be later converted into a payment by the webmaster. Read more... czwarta władza Mall Factory 1.0.2 released on January 22, 2010. * new feature: Search Plugin. * improved sort ¶rodki masowego przekazu by author. * thumbnail created automatically from media file, if media is stylistyka and no valid thumbnail is supplied. * fixed several issues regarding vmw playing issue in Firefox, uploader can't buy his own media, etc. media Mall Factory 1.0.1 released on December 7, 2009. * new feature: added Latest Added module, Top Rated module and Top Downloads module. * new feature: purchased massmedia list for users, menu module. * Fixed issues regarding paypal currency hard coded, changed default paypal hiperł±cze from sandbox to live.
VideoWhisper Video Conference is a modern multiple way video pogawędka and real time file sharing tool. It can be used stand alone or integrated to existing sites. Using latest AS3 technology it provides better speed and stability compared to similar older software. data (rooms, settings) and user interface (skins, icons, sounds) is loaded from external files that can be edited or replaced allowing webmasters and developers to easily customize the user experience. This software is great for meetings, trainings, conferences, live events, recruiting, consultations, coaching and of course casual community chat. This brings people together instantly and without travel costs. These benefits open a wide range of new business opportunities and bring the extra value needed by established sites struggling to go ahead of their competitors. The component is developed using MVC (model view controller) for Joomla 1.5 . It's a Joomla 1.5 Native component. The free version has some limitations of the maximum number of users, rooms and simultaneous video panels but otherwise works the same as the full version. Rooms can be created and deleted from chat interface in editions with mysql support. Rooms are stored into a mysql table instead of the static xml file. With the Joomla video czat software component Administrators and ekstra Administrators are allowed to manage rooms. When creating a room multiple settings can be specified like description, capacity, expiration. Rights to upload and delete files can also be controlled. With the Joomla Video Conference component these are controlled for regular users from component parameters in dysponent area. All PHP integration source code is provided under GPL. INSTALLATION: Full details about the integration component and installation here: http://www.videowhisper.com/?p=Joomla+Video+Conference REQUIREMENTS: This advanced software requires 2 types of hosting: a regular php&mysql web hosting plan for the regular website features (you probably have that if you have joomla installed) and a special plan (usually on a different special server) for video streaming and other instant communication required between pogawędka clients. You need 1 of these to run the interactive and streaming part of the software: FMIS or Red5. See the software requirements page on our site for more details. Red5 is free and open source but you need a VPS or Dedicated Server with root access to install it. If you're not very technical you can also find this type of hosting with management services on our site or from other providers.
Few days ago I decided to help Yves with a datetime bug in Matukio (dating back to its Seminar roots). Everything seemed to be straight forward. I've worked with JDate in the past and had some experience with timezones. So I took the challenge thinking that I'll spend 2h and everything would be fine. Well, as it often happens a 2h job turned to be a one and a half day job... (this could make a very good pamiętnik internetowy post about estimates, but I'll do that another time...) Let us examine the problem at hand. User A fills out a form, which has a field that stores a date. The best thing to do when you store the date in the db is to convert it to UTC. Why to UTC? Well this way you can have always a starting point and when you present the output to the user you can add different timezones depending on the users position. The trick here is to convert the date back to UTC. Fortunately JDate can help us with that. If you look at the JDate class in libraries/joomla/utilities/date.php you will see that the constructor actually expects 2 parameters -> the date and the timezone. So when you save a date you would generally want to do something like this: $date = new JDate($myDate, $myTimezone); Now the question is -> how do you properly calculate a timezone? Well, joomla helps us with that as well. You could write a small utility function that would look like this: /** * Returns the userTime zone if the user has set one, or the global config one * @return mixed */ public static function getTimeZone() { $userTz = JFactory::getUser()->getParam('timezone'); $timeZone = JFactory::getConfig()->getValue('offset'); if($userTz) { $timeZone = $userTz; } return new DateTimeZone($timeZone); } In the first line we try to get the user timezone, in the second we get the global config timezone. If the user has set a timezone in his configuration, then we pass the value of it to the DateTimeZone object. If the user on the other hand has not set a timezone, then we use the global one. Now that we have the correct time zone we can format the date to the MySQL format danych and store it in the database. $myTimezone = myHelperClass:getTimezone(); $date = new JDate($myDate, $myTimezone)->format('Y-m-d H:i:s', false, false); The first parameter to the struktura danych function is 'Y-m-d H:i:s' - this is the format we want our date to be saved in the db. The second parameter tells the function that we want to have the GMT/UTC time and the third parameter tells the format function that we don't want to translate the date. Now you can save a correct UTC date in your database. Once you have that you will obviously want to show the date to the user again. This is also fairly straight forward provided you don't make the same mistake as I did. When I was trying to show the date I stored in the DB I was thinking - hm, the second parameter that I pass to JDate is the timezone, so obviously I need to pass the timezone I want my date to be presented in. So I used my utility function and passed the timezone as a second parameter. After that I just used the format danych function to output the date, but to my astonishment instead of showing the correct date and time I expected my date was actually 2h off. I wanted to have a date in the Berlin timezone, which is +1 (and +1 for DST), but I somehow ended with a date that was -2... I couldn't understand what was going on. So eventually I ended up purchasing a book that deals with the Date and Time subject in depth: Date and Time programming - a very good book on the subject and a good read for every PHP developer. After few hours reading I learned a lot of things that I didn't know , but unfortunately I still couldn't understand why my date was -2h off... Eventually it struck me like a lightning! The second parameter was there to help JDate convert the date to UTC, I was not supposed to pass a timezone parameter if my date was in the UTC timezone. Here is what I had to do: $date = new JDate($myDate); $date->setTimezone($myTimezone); echo $date->format(...); Easy isn't it? There are also few things that could be useful to know: JHtml::_('date', $myDate) will output an UTC date in the user's timezone automatically -> so there is not need to calculate the timezone yourself. JHtml::_('calender', myDate ...) won't convert the date to the user's timezone so you have to make sure that you provide the date with the correct timezone If you use JForm calender time you can provide a filter: SERVER_UTC or USER_UTC that will handle the timezone calculations for you. I hope that this post will save you some time and that you learned something :) If you have any questions or remarks use the comment section below!
This Joomla Extension allows users to interact in the same way they are used on larger dating sites, and allowing you to enjoy the full power of Joomla. This Native Joomla 1.5.x MVC code does not require legacy plugin, and through 100% open source allows you to perform special tweaks for a better integration according to your needs. Using a templating architektura (in this case we have a simple and an advanced system) your web site will keep a coherent look and a nice web 2.0 feeling. released on February 18, 2010. * Re-factored most of the code, for better maintainability and easier extensibility. * Improved some SQL queries for better performance. * Improved router for better SEF URLs. * Implemented three registration modes: 1. Overriding the Joomla's registration system (users only have to register once, a Joomla profile and a Love Factory profile are created at the same time) (uses the Love Factory plugin). 2. Using the Joomla registration system, but require users to fill in their Love Factorry profile before they can use any of the component's functions. 3. Using the Joomla registration architektura and do not require users to fillin their Love Factory profile (an empty profile will be created the first time they use the component's functions). * Implemented a plugin architektura for Payment Gateways. * Added option in the backend (enable/disable) to first sort the results of the search by the membership odznaczenie and then by the user's selected criteria. * Implemented an Infobar (uses the Love Factory plugin) to show information about new messages, interactions or pending friendship requests. This can be enabled/disabled from the backend and on a user level. From the backend the interval at which it refreshes can be set to reduce server load. * Implemented stan prawny box (enable/disable from backend): user can set their status about what are they doing right now. Maximum number of characters can be set from the backend. * Implemented Wallpage (enable/disable from backend): shows recent activity from the user (status change, photo added, new comments or new ratings). * New Module: Last visitors; users can see who who last visited their profile. * Added several custom system fields: A. Online status: shows the online status of the user; labels for the online and offline are editable. B. Email: field used only when the registration mode is set to override; can be set to check for availability using ajax. C. Password: field used only when the registration mode is set to override. D. Password repeat: field used only when the registration mode is set to override. E. Main photo upload: field used only when registering or when filling in the profile (users can be forced to upload a photo in order to use the site/component). F. No. of friends: shows the number of friends of the user. * The Title of custom fields (user or architektura fields) can be hidden (enable/disable) from the backend. * The Labels of custom fields (user or platforma fields) can be set depending on the type of page being shown: view, edit or search. (For example: the field Date of birth on the edit page should be labeld as Date of birth , but on the view page it should be labeld as Age and on the search page as Age between ). * Custom fields of type Text area can be set to allow HTML tags. * Custom fields of types Drop down (multiple select) and Checkboxes can be set their SQL query operand (OR/AND). * Last seen custom field can be set to show the date in regular mode or in x days ago mode. * Main photo custom field can be set to link to user's profile page, user's gallery page or no odsyłacz at all. * Sex custom field can be set to show in 2 modes: Drop down (single select) or nadajnik buttons. * Looking for field can be set to show in 4 modes: Drop down (single select), nadajnik buttons, Drop down (multiple select) or Checkboxes; using the last 2 options, users can have a multiple selection choice. * Username field on the registration page can be set to check the availability using ajax. * Improved the pages creation page: zones can be moved around using używka and drop functionality. * Added 2 more customizable pages using custom fields: profile fill in page and friends list view page. * Users can hide/show the search form. * Search results can now be ordered by Number of photos or friends. * Redesigned the profile view page, added more ajax functionalities for a better user experience. * Added a quick reply mode to received messages. * Changed the memberships implementation: all the memberships sold, are now being saved. For example: user A buys membership B for 1 year which allowes him to have a maximum of 10 friends. Six months later the zarz±dca decides that 10 maximum friends are to much for membership B and reduces the number to 5. User A won't be affected by the change, as the membership was saved and it will be applied for the remaining six months. Also, if a user buys a membership for unlimited time, then this membership will be used if no other membership is active. The new major version is coming with significant improvements and desired features like just seen. Also the new version, although a new major version, is provided for free upon request to all existing license holders. Visit the contact us page and our customer FAQ. Upgrading instructions from 1.2.x to 1.3.0. BEFORE ALL THIS BACK-UP YOUR SITE COMPLETELY!!! We are not responsible of any loss, etc. 1. First you'll need to backup the termin from the 1.2.x version. Go to backend, Backup and Restore, Backup tab, set Include settings to Yes if you want to save the current settings and Include photos' name to Yes if you want to save the photos (please take note that the photo files are not backed up, you will have to manually backup the photos folder to another location, and after the update, move it back). 2. Uninstall Love Factory version 1.2.x. 3. Install Love Factory version 1.3.0. 4. Go to Backup and Restore, Restore tab, select from the Backup file field the backup file saved on step 1, and hit Restore. 5. If you set Yes to Inlcude the photos' name, copy the backed up photos katalog to componentscom_lovefactorystorage\
Finally, the Projectfork 2.1 beta is now ready for downloading! We've spent lots of time improving and adding features to the new version and we think that we are now ready for further community input. Features that we have added so far: * Completely new Default theme with sidebar, Joomla! module positions, new icons, and more! * Added new global group for project members * Added new global access level for project members * Added import existing Joomla! users from the Users section * Added option to add people to a project via drop-down repertuar * Added option to assign multiple persons to the same task * Added Home repertuar button when hiding the Joomla! template * Added Logout menu button when hiding the Joomla! template * Changed URL/mechanics to hide the Joomla! template * Added Edit button to all panels * Added option to overwrite the panel title * Added new section Time Tracking (still very raw and unfinished) * Added option to use Content Editor for comments * Added version info at the bottom of the page * Added ability to browse all project pages (tasks etc.) even when not logged in if the project is set to public * Projectfork core optimizations * And a few more things that I can't remember right now :)
This component allows the zarz±dca to create criteria (fields like text or number that users fill out), graphs (vertical, horizontal bars or pie charts) and manage entries from users. Google Chart API is used to display the graphs which can be totally customized in the graph admin section. This is the first version of this component (1.0) - please report any bugs to contact@newnectar.com. CapecodeHQ's Flickr Badge Plugin lets you insert images from Flickr directly into your Joomla! content. You can display content related images using a tag, one of your Flickr Sets or just randomly. It's so easy you'll wonder how you lived without it. This is just an upgrade to 1.5
Documents indexer is a Joomla 1.5 native extension developed by Ossolution team to allow indexing and searching content of pdf and word documents in your Joomla site. Features : 1. Indexing word and pdf documents and save content of these documents into database for searching . These documents can be uploaded to different directories . 2. Using Ajax technology to index all documents in a directory with one click. This will save time for you to index documents and avoid time out issue in PHP. 3. Re-index documents function so in case you update documents or add new documents into a directory . There are 3 re-index options available * Re-index individual document . * Re-index all new documents in a directory. * Re-index all documents in a directory 4. Searching indexed documents via Joomla standard search . 5. Scan for deleted documents and delete them from indexed database . 6. Integrated with Docman : * Redirect to document detail page of docman when users click on detail link on seach result * Allow searching based on content of indexed documents in docman standard search (this require add one line of code into a file in docman) * If your site is using windows hosting server or your hosting provider help you to install catdoc library, Documents indexer can index power point and Excell documents as well. 7. Integrating with other download extensions are availble on demand.
The themelets voting site for Morph framework is filling up with new, fresh designs - and it’s now ready for you to go wild on! More designs are in the works, so this is just the beginning… YOU HAVE THE bajecznie POWERS WE NEED! Here’s the deal: You vote for you favorite designs to be coded for Morph (including all our old “1st generation” commercial Joomla templates)! By you voting up or down on the themelet designs we know in which order to code and release the themelets for Morph. You choose - we code! HOW TO VOTE - THE BASICS 1. Browse around on the themelet voting site (link below). 2. Vote up or down. 3. Choose which (other) CMS and style you want us to code your favorite image for. 4. Comment. We love constructive feedback and ideas! Now go wild on the Themelet showcase voting site and make your favorite estetyka our next release! Link: http://www.joomlajunkie.com/themelets ARI JVTip is plugin for 'ARI Smart Content' component which provides simple and lightweight tooltips for your Joomla! system.
* New Joomla Dating and Matchmaking Extension - Love Factory
Love Factory is dating and matching Joomla Extension, with fully editable member pages and configurable fields which can be setted by the administrator. Native Joomla 1.5.x MVC code; no legacy plugin needed. 100% open source allowing you to perform special tweaks for a better site integrations and accourding to personalized needs. Multilanguage support is also offered for the Love Factory Joomla Extension through the language files and Joomfish Integration. Image The Main Features of the component are: * Member Pages with fully configurable fields! * Photo Gallery (users can specify the images order) * Comment System (page owner can delete any comment on his page or report them to the admin) * Messaging platforma (users can create, send and receive personal messages) * Interaction architektura (sending kisses between user) * Rating system * Friends List (including pending requests; user can set the page status visible only for friends) * Ignore List (to avoid spamming or any unwanted contact) * Advanced Search (to find friends or matches after certain criterias like gender, age, etc., criterias which are fully configurable by the administrator from the existing page fields. * Membership Plans with integrated Payment Gateways: Paypal and Moneybookers (support for one till four membership-level, so that users can upgrade their account in odznaczenie to recieve a higher number of allowed photo and friends. For each level, differentiated prices can be set, depending on the time period. The membership plans feature can be enable or disabled by the administrator.) * Smarty-based Templating system (can be enabled or disabled by the administrator.)
-20% Christmas Special Offer!
-20% Christmas Special Offer! Save 20% for all Club Membership´s and Renewals. All new members and renewals can get 20% for the first 3 month with this Coupon Code: 24312011. The special offer is ending at 31.12.2011
12 Days of Christmas
For the next 12 days JoomlaXTC will be offering special discounts, free downloads, and some extra surprises in our 12 days of Christmas Promotion. Sign Up now to our exclusive 12 Days of Christmas Newsletter and receive a new promotion for the next 12 Days! Each day we will announce a new promotion valid for 24 hours - So don't miss a beat sign up today!
123 Live Help Free Joomla Module
Introduction of 123 Live Help: The live support solution offers free Video Live Help pogawędka Software for you. It's implemented with Pure Flash Client Powerful Java Server. What's the best, it can be integrated with Joomla seamlessly! Introduction of Joomla Live Help #65306; 1. Empower your website with a full-featured Live Help It enables your operator real-time one to one chat with visitors to offer online instant help, and turn potential customers to buyers. 123 Live Help is the first Free Live Help pogawędka Software With Video Function on non-commercial purpose! The video live support function offers your site a very human experience as the visitors can talk to the staff face to face. 2. Display telefonista status on the page The Joomla Live Help Module can display operators who are online. 3. Integration and users auto-login If you just hope the registered users have access to 123 Live Help, you can integrate it with your Joomla! Database seamlessly. Then only users could auto-login for live chat. Online Joomla Live Help Demo http://joomla.123flashchat.com Details of Integration 123 Live Help with Joomla: http://joomla.123flashchat.com/index.php/joomla-live-help-installtion
123 Web Messenger Free Joomla Instant Messaging Module
The 123 Web Messenger Joomla Module can empower your site with a Facebook Messenger style web chat bar at the bottom of browser. It allows users to czat with each other from 123 Web Messenger’s interface in the web page: click the icon to popup the friend list of 123 Web Messenger to chat with buddies on website conveniently. The Facebook Messenger style web messenger is hosted by 123 Web Messenger free of charge, no limitation to the number of concurrent user, and provide 1 to 1 chat function. And there is a chance to join Affiliate koncepcja and earn money while use the 123 Web Messenger. More details: http://www.123flashchat.com/free-web-messenger.html Live Demo of online Joomla Instant Messaging: http://joomla.123flashchat.com Download 123 Web Messenger Joomla Instant Messaging: http://www.123flashchat.com/download/joomla_mod_for_123webmessenger.zip