Pensum – Task Sharing Platform (Social Networking)

Follow me on Envato
Subscribe to my Feed
Follow me on Twitter
Ask questions
Box
Box
Box

About

Pensum is a task sharing application, written in php and javascript. It leverages modern frameworks like Laravel and Backbone. In my opinion, Laravel is the greatest php framework out there. The code is incredibly readable and clean. Applications written in Laravel simply have to turn out beautiful. I think you are going to love Laravel, wether you are a beginner or profession php developer. Just as with Backbone, a javascript library that helps clean up the messy spagetti code on the bottom of your site making ajax requests.

The project features authentification, resource handling, even a restful API and many more. It really is great for learning the latest and greatest techniques.

Hopefully I could spark your interest. I really think you are going to love this one!

Support & Documentation

My customers love my fast and friendly support. You can submit tickets via my Profile.

As always, documentation is provided with the file. You can also take a peak over at Codezilla.

Testing

If the demo is not loading fast enough, try closing the CodeCanyon frame by clicking “Remove Frame” in the top left corner.

You want to see if the application holds up? Sure thing, register on the demo page or login using the information below to see it in action.

Test Account:

email: [email protected]

password: funyuns

Download Pensum – Task Sharing Platform (Social Networking)

Arqam – Retina Responsive WP Social Counter Plugin (Social Networking)

Arqam Plugin grabs the latest counts of your Fans/Followers etc from your Favorite Social Networks and then displays them on your Blog. It is the perfect solution to encourage more users to join your network.

Features

  • 100% Responsive
  • Retina Ready
  • Get all future updates with added features FREE for lifetime
  • Translation Ready, Includes the .po and .mo files
  • Cross-Browser Compatibility FireFox, Safari, Chrome, IE9, IE10
  • Drag an Drop feature to sort icons as you which !
  • Option To set the Cache time to reduce load time and API calls.
  • Store the values as a fallback, if any of the APIs is not reachable
  • Displays the number of:
    • Facebook Page Fans
    • Twitter Followers
    • Google+ Page Followers
    • Dribbble Followers
    • Envato Followers
    • Delicious Followers
    • SoundCloud Followers
    • Github Followers
    • Behance Followers
    • YouTube Subscribers
    • Vimeo Channel Subscribers
    • Forrst Followers
  • Multiple Styles
    • 1,2 and 3 Columns Gray Rounded icons (Light/Dark).
    • 1,2 and 3 Columns Colored Rounded icons (Light/Dark).
    • 2 and 3 Columns Flat Colored square icons.

Download Arqam – Retina Responsive WP Social Counter Plugin (Social Networking)

ez1 Contact Form (Forms)

  • Add a contact form to your website with just 1-file and 1-line of code!
  • Built using HTML5 and CSS3
  • Works on all major web browsers and mobile devices
  • When submitted, the form will send an email confirmation to your site’s administrator and your customer
  • Email confirmations are sent in html format for optimum readability
  • Notifications are shown on-screen – no pop-ups used
  • The built-in security question reduces spam messages
  • Custom validation script will confirm that the sender’s email address is in the proper format
  • Add company information such as phone number, fax, address, and business name directly to the form
  • Custom configuration options are available for you to set subject lines, confirmation messages, and even show/hide company info
  • Contact form uses 100% PHP validation – there are no JavaScript files scripts that spam bots can scrape or hack
  • Simple 2-page documentation is easy to read and includes screenshots

Download ez1 Contact Form (Forms)

SMS Read More (Standalone)

Use this plugin to monetize wordpress blog content using Fortumo Premium SMS services. You can hide content of your pages or posts. Instead of the hidden content, user is shown a message about the action he has to take to be able to see the content (he has to send SMS message to short number, defined in your SMS service and to enter password they get in reply message).

How to start?

  • You will need to regsiter (free) account on Fortumo. You can see details here.
  • Create Premium SMS service on Fortumo, you can find explanations here.
  • Install our plugin on your WordPress website.
  • If needed, submit your Fortumo service for approval, instructions here.
  • Protect your content, and start making money!

Where can I get more info on SMS prices, coverage etc.?

You can find that info on Fortumo website. Page with price and coverage info is here.

Support

If you have any questions, contact us here, or here, or even here: Support center.

Download SMS Read More (Standalone)

TimeZone Corrector (Miscellaneous)

TimeZone Corrector is a JavaScript tool which corrects time and dates in website content.

Most of the websites in Internet are international and often these websites publish dates which are corresponding to their local timezone. Most of the times it’s really hard for visitors from different timezones to catch up with the time difference and here comes the TimeZone Corrector.

With this tool the visitors will be able to see the correct time and date in their timezone only by hovering over the time and date.

Demo of the plugin

Supported formats:

  • (H|G):i
  • (h|g):i (a|A)
  • (H|G):i (m|n).(d|j).Y
  • (h|g):i(a|A) (d|j).(m|n).Y
  • (d|j).(m|n).Y (H|G):i:s
  • (m|n).(d|j).Y (h|g):i:s (a|A)

Examples of these formats:

  • 14:23
  • 7:32 pm
  • 17:29 3.25.2013
  • 4:53am 25.03.2011
  • 15.11.2013 19:23:44
  • 07.29.1990 01:55:23 am

* the date and time formats are according to PHP date() function

What it has?

  • The script is not dependant of any framework (jQuery/Prototype/etc).
  • It can be used unlimited times on a page. It is organized as JavaScript Class.
  • It has two neutral themes and unlimited number of themes can be build with CSS.
  • It is signular file. The CSS is appended to the head of the document on run time.
  • It is only 5KB minified and 9KB not minified.
  • It is cross-browser compatible. It works on IE6+, Firefox, Chrome, Safari, Opera.

How to use it?

  1. First you have to include the script in the document:
    <script type="text/javascript" src="tzc/tzc.min.js"></script>
  2. Then you should initialize the class by using this script:
    var myTZC = new TimeZoneCorrector('tzcselector');
    The first parameter is ID of a HTML element.
    The second parameter is (optional) object with options for TimeZone Corrector. Please check all the available options from the table below.

    Note: TimeZoneCorrector() class is the same as TZC so use the one you prefer.

Options

phpfile       (string) the path to the tzc.php file. It can be relative or absolute path
cookieName    (string) the name of the cookie which tzc.php file creates
labelText     (string) the text which is before the corrected time in the tooltip
theme         (string) the theme name. Default: [dark]. Possible options: [dark, light]

Example of using all options:

<div id="mycontent">
    My long content ... with dates like this 16:30 03.10.2013 ... etc
</div>

<script type="text/javascript">
var myTZC = new TZC('mycontent', {
    labelText  : 'In your timezone:',
    phpfile    : 'tzc/tzc.php',
    cookieName : 'tzc',
    theme      : 'dark'
});
</script>

Timezone settings

How to change the default timezone of your website?

Often your website is hosted in different timezone than yours. In order to correct this you should open file tzc.php in the tzc folder.

In this file you have the following settings:

$timezone           = 'America/New_York';   // The timezone
$cookieName         = 'tzc';                // The cookie name
$cookieExpiration   = 2;                    // The cookie expiration time in hours

In order to change the default timezone of your website you should first find the correct timezone name at http://www.php.net/manual/en/timezones.php

Then change the value of the variable $timezone to your selected one.

The other two settings are related to the cookie which the script creates. If you want to change the name of the cookie you can do it by changing the value of the $cookieName variable. If you change the name of the cookie you should set the new name with cookieName option when initializing the TZC script.

Also the cookie expiration time can be changed by $cookieExpiration variable. The value for this variable is in hours.

Download TimeZone Corrector (Miscellaneous)

WordPress Responsive Posts Gallery with Captions (Galleries)

Description:

NW PostsCaptions is a multi-purpose widget for listing posts, whether you want to create a gallery of photos or want to display the latest posts from your blog, with NW PostsCaptions you can do this very easily.

You can choose between posts to be displayed in a widget area of your theme or you can use shortcodes to display in any page you want.

Being responsive your gallery is easily viewed on mobile devices and tablets.

NW PostsCaptions is touchenabled so viewing captions is possible even on smartphones or tablets with a single tap.

Use it and be AWESOME!

Before you start:

Please find in the archive the folder named documentation, you have in that folder a file named index.html, double-click on it and read the documentation carefully.

Features:

  • list posts ANYWHERE
  • responsive
  • touchenabled
  • easy to configure
  • unlimited colors
  • endless use options
  • great for creating image galleries
  • and more …

The archive contains two folders:

  • “documentation” – you will find a complete documentation for you to easily get your way through the configuration
  • “plugin” – it contains the archive for the plugin that you will install under wp-admin

Future updates:

  • you will find the list of future updates in the documentation

Changelog

v1.0 July 1st, 2013

- Initial release

Download WordPress Responsive Posts Gallery with Captions (Galleries)

Buy And Sell Online Php Script (Shopping Carts)

Buy And Sell Online Php Script is an Marketplace script to sale and buy digital products online. This script comes with many features for the authors and buyers:

Front site Features:

  • User registration / Login
  • Captcha Registration protected
  • 5 Themes!
  • User can change webiste theme
  • 3 Language included – English,French,Romanian
  • Easy to create new language
  • User can change website language based on session
  • Tranzaction history
  • Downloads area if user bought items
  • Guest can browse items
  • Sistem messages included – Users can send and recive internal mesages to an author only if bought items from that author. (personal items support)
  • Earnings history
  • Sales history
  • Easy to upload products or digita files if the user is an author.
  • User can become an author any time
  • User can earn trophies based on sales revenue
  • Mini info icons about authors and users under profile picture about registration time, user membership, how much author sold, how much user bought, etc..
  • User Portfolio
  • Author can withdraw his money
  • Converter module – Author can convert the earnings from main balance on deposit balance to buy items.
  • User settings
  • Edit profile – include home page image header, description, avatar, etc.
  • Support ticket included – User can manage, edit, create new support tikets any time.
  • Nice User Dashboard – Latest news, Latest item comments if user is author, New messages, Latest 5 tranzactions, my items, my orders, etc..
  • Quiq search form – search the items based on keywords.
  • Nice top menu links and information about user account.
  • Item thrumnail hover tooltip with item preview image, item title, author name, price, etc…
  • And much more..
  • Admin Features:

  • Unic and nice control panel design
  • Nice Dashboard information
  • Manage, edit, users
  • Manage, aprove, edit items
  • Manage deposits
  • Pending Withdraw
  • Support tikets sistem
  • Add, edit, manage news
  • Add, edit, manage custom pages
  • General website settings
  • Homepage text manager
  • Admin can upgrade the user level to reviewer or administrator
  • Accept Paypal & Moneybookers payment
  • And much more…
  • To play around this script, i have created some demo accounts for you. Please use the following details to loggin and test my script:
    username: test_user and password: test_user or username: demo_user and password: demo_user or username: demo_user2 and password: demo_user2
    For any questions or help, please visit our forum on zonecoders.com

    Download Buy And Sell Online Php Script (Shopping Carts)

    iDropCMS v1 – Content Management System (Project Management Tools)

    The sole purpose of iDropCMS was to make the process of developing a website much quicker then creating a theme or a site from scratch. With iDropCMS, you can literally drop in the CMS with little modifications to any existing site and you’ll be all set. iDropCMS was design to work around your site structure and can be easily modified by any level PHP Developer.

    Design Flexibility

    As a designer/developer you have total freedom to use the tools iDropCMS provide to create your layout. No need for slicing code to separate files to create a theme and no learning curve. Just one simple .php file holds the entire design structure.

    Room for Expansion

    iDropCMS was designed with the idea of allowing developers to add more. With iDropCMS as the base, it can be tailored for any particular site. More detail information provided here.

    It’s UI Friendly

    The admin UI has a familiar look and feel, similar to the more popular CMSs. So you or your clients can quickly adjust to the admin console without having to dig deep into the navigation. Admin console is also mobile response ready.

    The Features

    Web Publishing

    iDropCMS contains a broad range of publishing features.

    • Search Engine Friendly URLs
    • Multiple Categories
    • Spell Check
    • Blog Publishing
    • HTML Formatting
    • Pagination
    • Image and File Uploading
    • File Browsing
    • Accepts Google Analytics Tracking Code
    • Contact Email Form

    Commenting

    iDropCMS’s user commenting system lets you manage what gets displayed.

    • User Commenting System
    • Comment Moderation
    • Captcha Integrated

    Member Management

    Have others manage your site’s content.

    • Multi-User System
    • Member Activation
    • Profile Management

    Template Design

    Design is only limited to your creativity. Build dynamic driven websites using simple integration.

    • Full Page Modeling
    • Custom Templates

    Security

    iDropCMS prevents posting from external domains.

    • Session Management
    • Secure Form Processing
    • Captcha

    Live Demo

    Try iDropCMS before you download it, the live demo is a working copy of the latest iDropCMS release. In this demo, some features have been disabled such as updating the menu, making another page the index, or editing the default home page that was set for the demo. However, it is the same user experience you will have when you install your purchased copy of iDropCMS

    Download iDropCMS v1 – Content Management System (Project Management Tools)

    jQuery and PHP powered Easy Form (Forms)

    Looking for a simple contact form that has nice, user friendly validation? You’ve found it.

    This form loves validation. All fields (except for Company) are all validated through jQuery and PHP. JavaScript mainly for normal users who just love to fill in forms (and to save sending unnecessary requests to the server). PHP validation for those who love to try to break forms or just simply have JS disabled.

    Why does a form need validation? A lot of forms constantly get bombarded with spam because of security flaws. These flaws can lead to the form itself being used to send malicious emails to other users!

    Powered by jQuery and PHPMailer

    Live Demo

    Check out the live demo by visiting this link: Demo

    Features

    • jQuery animation for validation rules (have a look on the Demo).
    • JavaScript validation so no page reload! Saves bandwidth.
    • PHP validation if the user has JavaScript disabled the form will still validate.
    • Field specific validation, phone requires numbers, email requires a valid email format etc.
    • Anti spam measures (captcha) to deter spam emails. Easy to read.
    • Very easy to implement into an existing HTML or PHP web page. ‘Plug in and Play’ – Simply change the email address and place on your page.
    • Thank you message animation on submission.
    • Error message animation without reloading the page on submission attempt.
    • Customise the HTML email message that is sent
    • User support where possible

    Requirements

    There’s not a lot required to get this form working:
    PHP5
    GD Library (if you want the captcha ability)

    Ask for help

    Please feel free to contact me via CodeCanyon or email at [email protected]. Alternatively I’m always on Twitter to help out.

    Changes

    01/07/2013 – Revamped the support documents to help users install

    Download jQuery and PHP powered Easy Form (Forms)

    Panoramic Slider – Background effect for iOS Apps (iOS)

    Want to liven up your iOS app? Panoramic Slider allows you to do just that! Panoramic Slider adds a smooth and efficient panoramic effect to your background image in your iOS Apps (very similar to the Android Panoramic wallpaper effect). It is very easy to customise and works on the iPhone and iPad.

    Key Features:

    -> Very smooth Panoramic wallpaper effect for iOS.

    -> Efficient panoramic effect uses minimal system resources!

    -> Easy to customise via Interface Builder.

    -> Includes an easy to follow PDF Developer Guide.

    -> Storyboard and XIB support.

    -> Supports iPhone, iPad and iPod Touch.

    -> Retina Display and 4 inch iDevice support.

    Download Panoramic Slider – Background effect for iOS Apps (iOS)

    Cooking Recipes App (Native Web)

    Cooking Recipes App is an application built using jQuery mobile and phonegap mobile development framework that where greatly assist you in building applications recipes using web technologies that you know and love HTML, CSS, and javascript. You can easily build applications recipes that can be used on a variety of mobile devices such as iOS, Android, Blackberry and other devices in no time with only with knowledge of HTML, CSS, and javascript.

    Download Cooking Recipes App (Native Web)

    jQuery Fullscreen Scroll Gallery (Images and Media)

    A jQuery plugin help you to display fullscreen images with auto delay slideshow support.

    followrss

    Features

    • Scrollable thumbnails navigation.
    • Auto delay slideshow.
    • Fullscreen image.

    Recommendations For You

    jQuery OneByOne Slider Plugin:
    onebyone

    Credit

    jQuery http://jquery.com
    Woman photos in the preview http://www.flickr.com/photos/ag2r/

    Download jQuery Fullscreen Scroll Gallery (Images and Media)

    Email Campaign Manager (Miscellaneous)

    Mammothology Email Campaign Manager

    The email campaign manager is an admin dashboard for your Mailchimp email campaigns. It’s designed to help you manage all of your email lists, subscribers and campaigns from a central location. You can use the email campaign manager stand-alone on your website back-end, or easily integrate it into your current admin dashboard. It’s written in clean PHP and Javascript & jQuery following modern coding standards.

    Features:

    • Attractive dashboard for viewing your list and campaign status at a glance
    • Beautiful charts for list and campaign statistics, powered by the wonderful jQuery Flot plugin
    • Ajax updates so no page reloading when checking different lists and campaigns
    • Quickly view all your lists and their members plus specific member data
    • Add new subscribers to your lists
    • View all your campaigns and their content

    Quick Start:

    The Mammothology Email Campaign Manager is designed to get up and running quickly and easily. Just complete the following steps and you’ll be managing campaigns in no time.

    • Get your Mailchimp API key from the Mailchimp website, Account Settings -> Extras -> API Keys -> Create A Key
    • Copy the Mailchimp key and paste it into the top of EmailManager.php replacing YOUR_MAILCHIMP_API_KEY. (keep the quotes around the key)
    • Upload the contents of this product zip file directly to your server. Usually the root folder for the domain is named public_html so you want to extract the zip there.
    • Visit the domain where you extracted the zip file to and you should see the dashboard with your campaigns and lists (if you’ve created any in Mailchimp)
    • You’re all done, enjoy!

    Integrating into other admin dashboards:

    If you’re integrating this product into another admin dashboard you’ll need at least a basic coding knowledge. It’s suggested you keep the file and folder structure intact and just rename index.php to email_manager.php or similar.
    Then all you need to do is add a link from your current admin dashboard to email_manager.php and it should all work as normal.

    If you’re doing a deeper integration, please contact us at
    [email protected] if you have any questions.

    Support:

    As with all Mammothology software products full support is available at our
    Support Forums or you can email direct to:
    [email protected]

    Future:

    There are many more features to come in the future, some as free upgrades and others are part of the Pro version. Including:

    • Create campaigns and replicate others
    • Campaign scheduling
    • Batch add new list subscribers
    • More customization for the charts
    • Add/View groupings and interests to list subscribers
    • Mandrill transaction email integration
    • And much more statistic reporting…

    Download Email Campaign Manager (Miscellaneous)