login sign up

offline
Last seen: Aug 17, 2010 3:33 AM EDT
Hire Me!
Rate: $8.00 USD/hour
Follow Invite to Project
 
Browse Similar Freelancers:

COGWebTech

.NET Developer, Photoshop Design Designer & Photoshop Designer

Username: COGWebTech

  • Has made a deposit.
  • Has verified their email address.
  • Has completed their profile.
  • Has not verified their secure phone number.
  • Verified
  • Payment is not verified.

Location: Kolkata, India India

Member since: November 2006

Reputation:

5.0

(2 reviews)

3.5
[see more]

My skills:

My projects:

  • [Sealed]
    0.0
    Profile image for Seller officesyntax

    officesyntax United States[ Incomplete Report ]

    Dec 11, 2008

    Project cancelled.

    Project Description: I need 200 original full color business card backgrounds for the categories below. All materials used must be orginial, open licensed and permission given for duplication. File formats should be CorlDraw(.cdr) with layers...
    [more]
  • [Sealed]
    5.0
    Profile image for Seller billboardindia

    billboardindia India

    Sep 4, 2007

    Good person to work and very active ... thanks will give some more award..

    Project Description: [This is a Private Project. You must be logged in to view the Project Description]
    [more]
    COGWebTech has not completed any projects.
  • [Sealed] In Progress

    I am looking for a fully functional informational website with a customer login to a database. The database will hold customer specific documents and pdf files. I require a fully functional backend that will allow me to change/update text and images on pages, as well as, a fully functional database backend which will allow me to manage customer permissions, access, and content. You will supply all elements for this project, including but not limited to; design, database, images, artwork, photos, etc.I want the entire site redone from scratch, meaning I need a new Logo, flash, artwork, template and design for the website.All elements must be intuitive and easy to understand, operate, use and navigate. Website must include unique images for each page(I expect you to submit images for me to choose from).I also require a full corporate design package (Logo, Letterhead, Envelopes, artwork, etc.)I require updates periodicly, to keep me up to speed with the progress of the site. Payment will be places with GAF escrow. The business is a Biomedical Engineering Consultation firm, please ensure that design of website and corp package reflect this; For information on my business please see www.healtheng.comWhen bidding please submit a template of what the site will look like. Thank you!

    [more]
  • $90 USD In Progress

    I need to have this template made for blogger. With coment layout and archives.

  • [Sealed] In Progress

    We, an german comapny that sells html website templates since 2000 are in need of new templates to sell them on our plattform.Requirements for each template :- HTML files with ( 1 startpage, 5 subpages ) graphics, working menue- the photoshop source as a seperate fileFurther rules :- no usage of any graphics or photos, that are under license of third parties, such as getty images, photos.coom or others. We accept only graphics and photos, that came from complete lizense & cost free sources such as "freedigitalimages.com" . If other sources are used, the template designer has to deliver the complete legal lisensing informations ( including the usage rights for webtemplates ) to us.For your biddings, we are awaiting your price per template as well as your contact details and URLs to examples of your further work.The price of your bid per template will us make decide, how many templates we order from you.Happy bidding :-))

    [more]
  • $1900 USD In Progress

    Website community

  • [Sealed] In Progress

    [This is a Private Project. You must be logged in to view the Project Description]

  • [Sealed] In Progress

    See project description attached.You must follow all indications written in PDF

  • $150 USD In Progress

    I need someone to modify the following code in order that it can grab 2 different html pages:?php /* $Id: sp_tracking.php, v1.0 01/16/2008 osC forum - id chris23 Provides courier tracking for Swiss Post This script will be called via ajax from account_history_info.php and admin/orders.php osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ // prevent direct calls to this page if (!isset($_GET['tracking_id'])) { die('Direct call to script. Exiting.'); } require("includes/application_top.php"); require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_TRACKING_MODULE); $tracking_number = $_GET['tracking_id']; $sp_get_receiver_url = TRACKING_GET_URL_SP; $params = "&DCSext.wt_shortcut=swisspost-tracking"; $agent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)"; // dummy UA $url = $sp_get_receiver_url . $tracking_number . $params; //echo $url; die(); /* no redirects for ie so grab data and clean */ $ch = curl_init(); curl_setopt($ch, CURLOPT_USERAGENT, $agent); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $grab_data = curl_exec($ch); if ($error = curl_errno($ch)) { if ($error == 7) { die(TRACKING_CURL_SERVER_ERROR); } if ($error == 6) { die(TRACKING_CURL_NO_ACTIVE_INTERNET); } } curl_close($ch); // tidy extraneous whitespace - use on all grabs $grab_data = str_replace("n", "", $grab_data); $grab_data = str_replace("r", "", $grab_data); $grab_data = str_replace("t", "", $grab_data); $grab_data = str_replace("&nbsp;", "", $grab_data); $pat[0] = "/^s+/"; $pat[1] = "/s{2,}/"; $pat[2] = "/s+$/"; $rep[0] = ""; $rep[1] = " "; $rep[2] = ""; $grab_data = preg_replace($pat, $rep, $grab_data); // set html start and end grab $StartGrab = '<!--bean:write name="parcelEvent" property="product"/-->'; $EndGrab = '<!-- FINE Packet post-->'; // Grab delivery status information $text = eregi("$StartGrab(.*)$EndGrab", $grab_data, $content); // start custom tidying // strip tags - keep tracking table $content = strip_tags($content[1], '<table><tr><th></th><td></td></tr></table>'); // remove all html attributes function strip_attributes($msg, $tag, $attr) { $lengthfirst = 0; while (strstr(substr($msg, $lengthfirst), "<$tag ") != "") { $imgstart = $lengthfirst + strpos(substr($msg, $lengthfirst), "<$tag "); $partafterwith = substr($msg, $imgstart); $img = substr($partafterwith, 0, strpos($partafterwith, ">")+1); $img = str_replace(" =", "=", $msg); $out = "<$tag"; for($i = 0; $i <= (count($attr) - 1 ); $i++) { $long_val = strpos($img, " ", strpos($img, $attr[$i]."=")) - (strpos($img, $attr[$i]."=") + strlen($attr[$i]) + 1) ; $val = substr($img, strpos($img, $attr[$i]."=") + strlen($attr[$i]) + 1, $long_val); if (strlen($val) > 0) $attr[$i] = " ".$attr[$i]."=".$val; else $attr[$i] = ""; $out .= $attr[$i]; } $out .= ">"; $partafter = substr($partafterwith, strpos($partafterwith, ">")+1); $msg = substr($msg, 0, $imgstart).$out.$partafter; $lengthfirst = $imgstart+3; } return $msg; } $content = strip_attributes($content, "tr", array()); $content = strip_attributes($content, "td", array()); $content = preg_replace("/writeBgColor(d{1});/","", $content); // fix table font size $content = str_replace("<table border="0" cellpadding="0" cellspacing="0" width="496">","<table border="0" cellpadding="0" cellspacing="0" width="100%" style="font-size: 11px; padding: 5px 0 5px 0;">",$content); echo $content; // the following function may be needed if remote server returns utf encoding (parent osC page is iso-8859) - prevents ? characters appearing // uncomment if returned text contains ? in a little diamond.echo mb_convert_encoding($output,"UTF-8","ISO-8859-1");?>

    [more]
  • $220 USD Jul 21, 2010

    This Bid if for a Quick simple HTML/PHP sitearound 6 pages.Design will be given in a form of photoshop PSD file.Site will also include registration form and payment option using- Plimus (connection to plimus page per product), around 6 products- webmoney (a webmoney URL will be given per product)(No Cart is needed).Site will inform by email to admin on registartionand payment completed.project should be completed in 10 days.Site will use CSS/DIVs/AjaxSite should be built in PHP/Drupal/Wordpress/AJAX based or such..Please bid if youa - have a good record on building such sitesb - can communicate daily using Gtalk or any IM.c - are a good person ) Best of LuckPriz.

    [more]
    COGWebTech does not have any open projects.
    COGWebTech does not have any work in progress.
[see more]

Portfolio

[see more]