Online food ordering script “Restaurant Biller” released with pricing!

rest.png

  • Easy AJAX powered checkout system
  • Receive the orders directly through email within 30 seconds of placed order
  • Easy customization for those who want to modify their site
  • Set the hours you would like your store open
  • Turn your store off and on through the administration panel
  • Enable Credit or disable credit cards
  • Enable or disable delivery and delivery fees
  • Modify your home page directly from a control panel
  • Add Edit and delete categories to your menu
  • Add Edit and delete menu items with extented features
  • Each site has a contact us page for customer questions
  • Edit the hours you would like your online store open
  • Add an addition cost for delivery, tax prices or order processing fees
  • Built In newsletter system
  • Free updates

Click here for a demo

Cubecart Mass (bulk) price changer

This module will change the product prices of all products or the categories you select. You can pick add/subtract and choose if you would like to use addition/subtraction or percentage.

Features

  • Add or subtract an amount or percentage
  • Preview the changes before making any changes
  • Choose all products
  • Choose just a certain category
  • Complete product price updates painlessly and quick!

capture.JPG
Price: $10
/


Ajax Cubecart custom category order 2.0

Hi there, here’s a little Christmas present from me to cubecartforum.org community.

I thought I would make a new post for this considering this is a full rewrite of my original category ordering mod. This version uses ajax for all the work. All you have to do is type the position number into the text box and ajax takes care of the rest! Works in real time!

catsort.jpg

Click here to download: category sorting mod

PHP Function: Make non linked links clickable

Recently I came across a problem making a twitter plugin. I needed to make links which had no “a” tag into links. You can do this progamaticly and here is the solution:

If you are going to use this script please download from here: links.php.txt

function makeClickableLinks($text) {

$text = eregi_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:%_+.~#?&//=]+)',

    '1', $text);

  $text = eregi_replace('([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_+.~#?&//=]+)',

    '12', $text);

  $text = eregi_replace('([_.0-9a-z-]+@([0-9a-z][0-9a-z-]+.)+[a-z]{2,3})',

    '1', $text);

return $text;

}

// Usage

// Email address example

$text = "you@example.com";

echo makeClickableLinks($text);

echo "

";

// URL example

$text = "http://www.example.com";

echo makeClickableLinks($text);

echo "

";

// FTP URL example

$text = "ftp://ftp.example.com";

echo makeClickableLinks($text);

Cubecart product compare mod

Cubecart product compare mod allows customers to compare 2 or more products, the customer can see the price,description, image, name and weight. The Cubecart product compare mod also makes it simple to add new fields to the compare mod. For instance if you own a computer shop you can add some custom fields to the inventory table and compare those items on the compare page by just drawing the variable. With a simple installation this mod is a sure win for your cubecart installation.

Price: $15
License: unlimited domain
Demo: http://worcesterwideweb.com/store/index.php?act=viewCat&catId=1

compare.jpg


Restaurant Online Ordering System Beta available!

The Restaurant Biller application is now available! With the features  listed below and the low price it costs to use this application its a sure hit for small business restaurants world wide. Here are the features the Restaurant Biller boasts:

The online restaurant ordering system for small to large businesses. More and more people are going online to search for food in their area rather then using the yellow pages. Restaurant Biller© created an online solution for those restaurants to have an online menu where customers can place orders. This application is very powerful and easy to use with features allowing you to easily control every aspect of your website. Listed below are some of the features included in this application.

  • Easy AJAX powered checkout system
  • Receive the orders directly through email within 30 seconds of placed order
  • Easy customization for those who want to modify their site
  • Modify your home page directly from a control panel
  • Add Edit and delete categories to your menu
  • Add Edit and delete menu items with extented features
  • Each site has a contact us page for customer questions
  • Edit the hours you would like your online store open
  • Add an addition cost for delivery, tax prices or order processing fees
  • Free updates

Click here to view the demo and website
or
Click here to enquire about getting setup on this system

Cubecart Auto Complete – Live Search Mod

I developed another mod which allows you to have a live search or autocomplete on your cubecart page. This mod puts autocomplete into cubecart search, basicly when you search for an item a list of all items will show up below the search box matching what the user typed in. The items are store items built from your database.

autcomplete.jpg

A Demo of the mod can be found here Just search for an item

 To purchase this mod please click the paypal button below. Processing may take between 2-24 hours. Thank you

Single Domain

  

Multi  Domain
  

Cubecart catalog pdf mod

I developed a mod which converts your whole shopping cart into a PDF file. The mod handles the following within the PDF

A Demo of the mod can be found here Just click “Download Catalog”

This mod requires php5 but there is a php4 version in development. The mod also requires the php extention domxml to function properly. To purchase this mod please click the paypal button below. Processing may take between 2-24 hours. Thank you


php 5 and imagecreatefromjpeg() recoverable error: Premature end of JPEG file

Ok I recently came up with a problem creating thumbnails for a project I am working on. I was stumped for hours, it seems that some files that were saved from a mac or certain photo editing programs would cause php to not recognize it a jpg thus giving the error:  

imagecreatefromjpeg() : gd-jpeg, libjpeg: recoverable error: Premature end of JPEG

After researching this problem I realized it was a problem with php 5 and gd2. Heres how to fix it

ini_set(‘gd.jpeg_ignore_warning’, 1);

Doing that will cause gd2,php to ignore the error and continue where it use to just fail and do nothing.