Review Ultimate Paid Referral System (Forms)

Ultimate Paid Referral System (Forms)
Review Ultimate Paid Referral System (Forms)

Ultimate Paid Referral System (Forms) Description:


Please rate if you like my work. :)

What is Ultimate Paid Referral System?

Answer:
It is the procedure to start your own earning website, as a side business or even multipurpose. This script will help you to earn money online and you can start your own MLM system. This script is totally based on MLM system. Time to time more features will be add on the basis of demand.

This script will allow to:
1. Register users on your website and you can pay signup bonus.
2. Users will get money on making referrals. You can set amount for per referral.
3. Users can enter into lucky draws. (Price, prize money and date of lucky draw could be set by you.)
4. They can give payment request through their account when they reached minimum payout level. (Level can set by you)
Winners for lucky draws and amount crediting in users account can be done with one click only. User even can request password, if forgets.
All E-Mail ads are registered will be genuine, as all the registrations would be email verified.


What are the features of this script?

Answer:
1. Login system with verified email ids.
2. Signup System
3. Forgot password recovery
4. Referral system
5. Admin panel
6. Lucky draws.
7. More Security
8. Fast support system
9. Users can earn money
10. Users can send payment request
11. Theme included (No need to design any theme)
12. Easy integration
13. Customized programing
14. Comments system for every code of line
15. Advertisements can be placed on any page, to earn maximum money
16. Profile pages included – Users can update their profiles easily
17. Users can see his/her down line
And several more…

Live Preview: Member URL : http://pocketmantras.com/demo/paidreferralsystem/demo/user/

Username – demodemodemo password – 123456789

Admin URL : http://pocketmantras.com/demo/paidreferralsystem/demo/user/admin/

Username – demoadmindemo password – 123456789

Updated Version Log:

  Version - 1.0.3 1. CSS bug fixed found for IE9  2. Jquery bug fixed for IE9 3. Improvement: Javascript Optimization(Core and demo functions put in separate files)  4. Improvement: CSS Optimization(Core and page level styles put in separate files)  5. Improvement: Assets File Structure Optimized  6. Fixed: All known bugs  7. Improved: iPad usability  8. Improved: iPad Mini usability  9. Improved: iPhone usability  10. Improved: Php Code  11. Improved: Comments In Code  12. 
elements issue fixed in some pages 13. New File Added For Default Accounts 14. Menu Bar Issues Updated In some Internet Explorers 15. White Space Issue Updated in front page 16. Several More Bugs Fixed 17. Security Updates 18. Many XSS vulnerabilities Solved 19. Connectivity Issues Solved 20. MySql Connectivity Issues Solved 21. Bugs Fixed (submitted by buyers) 22. Graphics Updated 23. Fast Execution of Pages 24. Fast manipulation of data from back end. Files updated: - all files updated Version - 1.0.2 Some MySQL bugs fixed done in version 1.0.1 (Msg to users: Change all the files. Use This script Now, Delete Old One) Version - 1.0.1 Default Admin account Added (Admin can now Login directly, without creating account) More features would be added on the basis of demand. I'm available 24*7 for support, contact me in-case if you need any support.


Buy it Now

Review Fluent.NET Mail (Communication Tools)

Fluent.NET Mail (Communication Tools)
Review Fluent.NET Mail (Communication Tools)

Fluent.NET Mail (Communication Tools) Description:


Fluent.NET Mail takes advantage of the built in .NET API and provides the ability to construct and send emails very easily. All the messy work is taken care of in the background and allows the simple focus of easily constructing emails using custom templates including dynamic substitution of data into your template, sending mail in various formats (text & HTML), choosing your means of transportation (SMTP, Network, Pickup), using security certificates, using SSL, sending attachments, sending mail asynchronously plus all the features provided by the .NET framework.

This is the single easiest and most comprehensive .NET emailing API available. Easy to use and powerful!

When would I use this?

  • Sending bulk emails for marketing campaigns
  • Working with template driven emails
  • Very simple, comprehensive and easy to use API
  • Fully functional for secure emails, delivery & read notifications, attachments, alternate views, etc

What are the advantages?

  • Very high performance
  • Simple to use
  • Uses logical processor count for number of pipelines unless explicitly configured
  • Documented API
  • Support provided at support.avantprime.com
  • Constructs and sends emails using a Fluent paradigm
  • Provides a complete API for sending emails with various configurations including with SSL, mail headers, attachments, alternate views, mail priority, encoding, delivery notification options, etc
  • Send both text and html emails
  • Building emails using text or html templates
  • Complete integration with the standard .NET mail mechanisms & the web.config/app.config
  • Delivery receipts
  • Read receipts
  • Secure emails
  • Plus much more…

What do you get in the package?

  • .NET 2.0 Assemblies
  • Debug files (PDB)
  • XML comments (Intellisense)
  • Usage documentation
  • C# Source Code
  • Visual Studio 2010 SP1 & 2012 Solution
  • Documented API
  • Console demo application

Technologies

This component is built using the .NET 2.0 Framework which means in can be used in all .NET applications that are using the 2.0 framework or newer. This includes .NET 2.0, 3.5, 4.0, & 4.5+.

You can immediately use this within your application and is very simple. Ask any questions or suggest features at support.avantprime.com!

How to use this component?

The example below shows how to send an HTML email using SSL with high priority.

 new Mail()     .To(new MailBox(emailAddress))     .From(new MailBox(emailAddress))     .Subject("Fluent API .NET")     .Html("This is the body of the email")     .WithSsl()     .WithCertificate(new X509Certificate())     .Priority(MailPriority.High)     .SmtpServer("[your smtp server]")     .Send(); 

The example below shows how to send a templated HTML email with an alternate templated text view for those clients that cannot view html emails.

 new Mail()     .Html(new MessageTemplate()         .FromText("This is my email with {content} text")         .DataFrom(new { content = "html" })         .BetweenBraces())     .WithAlternateView(new MessageTemplate()         .FromText("This is my email with [content] text")         .DataFrom(new { content = "plain" })         .BetweenSquareBrackets())     .To(new MailBox(emailAddress))     .From(new MailBox(emailAddress))     .Subject("Fluent API .NET 2")     .SmtpServer("[your smtp server]")     .Send(); 

The example below shows how to send a templated HTML email with an image attachment. asynchronously and do some work when the email has been sent.

 new Mail()     .To(new MailBox(emailAddress))     .From(new MailBox(emailAddress))     .Subject("Fluent API .NET 1")     .Html(new MessageTemplate()         .FromText("This is the {token} of the email. Pic attached")         .DataFrom(new { token = "body" })         .BetweenBraces())     .WithAttachment(new Attachment("DSC00831A.jpg", new ContentType("image/jpeg")))     .SmtpServer("[your smtp server]")     .SendAsync(SmtpClient_OnCompleted);  // This method is called when message has been sent, cancelled or there is an error public static void SmtpClient_OnCompleted(object sender, AsyncCompletedEventArgs e) {     if (e.Cancelled)     {         Console.WriteLine("Send canceled");     }     if (e.Error != null)     {         Console.WriteLine("Error {0} occurred", e.Error);     }     else     {         Console.WriteLine("Message sent.");     } } 

The example shows how to send a templated text email while loading the template from a file.

 new Mail()     .To(new MailBox(emailAddress))     .From(new MailBox(emailAddress))     .Subject("Fluent API .NET 6")     .Text(new MessageTemplate()             .FromFile("templates/my-template.txt")             .DataFrom(new { content = "html" })             .BetweenBraces())     .SmtpServer("[your smtp server]")     .SendAsync(SmtpClient_OnCompleted); 

The example compares the tranditional approach of sending email with the new fluent approach.

 // Fluent API - Simple, easy with great performance and // behind the scenes memory management new Mail()     .From(new MailBox(emailAddress, "NoReply"))     .To(new MailBox(emailAddress, "Support"))     .Subject("Mail sent " + DateTime.Now.ToLongTimeString())     .Port(587)     .WithoutDefaultCredentials()     .Credentials(emailAddress, "[password]")     .DeliveryMethod(SmtpDeliveryMethod.Network)     .Text("body")     .SmtpServer("[your smtp server]")     .Send(); 
 var fromAddress = new MailAddress(emailAddress, "NoReply"); var toAddress = new MailAddress(emailAddress, "Support");  var smtp = new SmtpClient {     Host = "[your smtp server]",     Port = 587,     EnableSsl = false,     DeliveryMethod = SmtpDeliveryMethod.Network,     UseDefaultCredentials = true,     Credentials = new NetworkCredential(fromAddress, fromPassword) };  using (var message = new MailMessage(fromAddress, toAddress)) {     message.Subject = "Mail sent " + DateTime.Now.ToLongTimeString();     message.Body = "body";     smtp.Send(message); } 


Buy it Now

Review Dynamic Gallery (Galleries)

Dynamic Gallery (Galleries)
Review Dynamic Gallery (Galleries)

Dynamic Gallery (Galleries) Description:


\\

Clean and fresh approach to display images in your apps

  • Ready to use Xcode project
  • iOS 5 & 6+ ready
  • ARC code
  • Storyboards
  • Universal App (iPhone & iPad ready)
  • iPhone 5 support
  • Support for rotation
  • Retina ready controls
  • Local/remote server images
  • Local/remote JSON, XML, Plist sources
  • Flickr support
  • Random or predefined sizes of image tiles
  • Customizable colors and border sizes and radius
  • Localization ready
  • Double tap to zoom in/out
  • Pinch to zoom
  • Save image to iPhone gallery, Copy image, E-mail image

Changelog

v1.1
Flickr support
Local/Remote JSON, XML, Plist sources



Buy it Now

Review WP Category Pic (Miscellaneous)

WP Category Pic (Miscellaneous)
Review WP Category Pic (Miscellaneous)

WP Category Pic (Miscellaneous) Description:


Summry:

This plugin help you to upload picture for category.

Features:

1- Upload with Wordpress ajax media uploader.
2- Show category picture after upload.
3- Editable in category edit page.
4- Get any category picture via category id.

Flag Counter



Buy it Now

Review Event Subscribtion Handler (Miscellaneous)

Event Subscribtion Handler (Miscellaneous)
Review Event Subscribtion Handler (Miscellaneous)

Event Subscribtion Handler (Miscellaneous) Description:


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

The Basics

This package provides a subscripting mechanism to use in you application. Using the Event class you can listen to and fire events.

Of course there are many event handling classes out there, but this one provides a wide field of features. Checkout the screenshots or the list below:

  • Listen to Events
  • Fire an Event
  • Catch Repsonses
  • Forget an Event
  • Handle Events With a Class
  • Specify Method
  • Set Overseers
  • Set Queues
  • Flush Queues
  • Set Priority
  • Execude Only Once

How is it for?

Events are very useful for frameworks or big projects. You could trigger events in pre made classes. For example when a user is created or logged in. The developer who uses the framework can now hook into your code and add logic. It is easy, fast and still very clean.

Obviously curiosity is very important for software engineers, so if you are curious as to how it works, go ahead an check it out. I’m positive you are going to learn a thing or two.

Author’s Notes

I was always interested in building a events or hooks package in php. It’s really useful, especially for frameworks or bigger projects.

The API of a project is very important. For this one I implemented a astonishing facade pattern. It let’s you call static methods on a none static class. The class is still testable and beautiful. I really think you are going to like this.



Buy it Now

Review CSS3 Banner Rotator (Animations and Effects)

CSS3 Banner Rotator (Animations and Effects)
Review CSS3 Banner Rotator (Animations and Effects)

CSS3 Banner Rotator (Animations and Effects) Description:


• 4 Ways Smooth Animation • Easy to resize the banners according to the sizes of the banners. • Can be used as a Image Slider • Easy to integrate on the websites.

Please note that IE doesn’t support some CSS3 attributes.



Buy it Now

Review IMCrypt - Image Protection (Images and Media)

IMCrypt - Image Protection (Images and Media)
Review IMCrypt - Image Protection (Images and Media)

IMCrypt - Image Protection (Images and Media) Description:


IMCrypt is an image protection script that basically scrambles and descrambles images you choose on your website so that they can be easily viewed, but not as easily downloaded. This is accomplished by “encrypting” the image one-time on the server side using PHP and “decrypting” it when the client needs it through a piece of Javascript.

If this sounds weird, please check out the live demo to see the script in action!

Requirements

IMCrypt requires:
  • HTML5 Canvas support (browser support is outlined here)
  • PHP’s GD library (included from 4.3!)
  • Javascript to be enabled (of course)


Buy it Now