Archive

Posts Tagged ‘helper’

Stormwater Helper Web Site

October 20th, 2011 Comments off

I am developing a web site to help industrial stormwater permit holders track their required activities. This site primarily uses a calendar to send reminders.

I have started the website and I need a programmer familiar with WebCalendar, as well as php.

I am exclusively looking for somebody based in Delhi or northern India and would like to meet in person in November.

C++ Homework Helper 2

September 15th, 2011 Comments off

Need someone available on google talk to help with C++ object oriented programming. This is an introduction to data types (2nd year C++ class).

Will need assistance with homework each week. Must be efficient and show examples of your previous works.

Willing to pay $10 per week to help with homework.

C++ Helper

September 14th, 2011 Comments off

Need someone who is willing to be billed with help in C++ for 2 hours.

Must understand C++ data structures, pointers, classes (OOP) and able to help with assignments.

Must be available for Google Talk chatting between 10:00pm-1:00am tonight PST (Pacific Standard Time).

Bid between $20-30.

Categories: C/C++, Google Tags: ,

C++ Homework Helper

September 13th, 2011 Comments off

Need someone available on google talk to help with C++ object oriented programming. This is an introduction to data types (2nd year C++ class).

Will need assistance with homework each week. Must be efficient and show examples of your previous works.

Willing to pay $10 per week to help with homework.

Forum Posting Helper

June 15th, 2011 Comments off

Looking for forum posters.
Good English, Fantasy Skills, Imagination skills

Help Ui – Online Helper

May 5th, 2011 Comments off

I need a html/css/php UI that will display content.
I need the ability to customize the category and sub catagories.
I need a category to be display in a tree with sub level to display the sub categories.
I need to be able to search for content in the tree and in the content pages.

The Categories need to be keep in my sql db.
I have PHP/mySql/Linux environment.
I need this done in 3 days.

The objective of this program is to provide an online help

Magento: Curl Inside Pdf Fcall

December 19th, 2009 Comments off

We have added a CURL code snippet to approve affiliate sales when an invoice is created. However it does not seem to work, any idea if this is wrong altogether, or how we can get the right code for including the orderId?

We have almost no way of testing as we have no test envrionment for this. You must have good knowlegde in programming and how these calls to pdf invoice creating works, as it never sees the browser, yet is need to execute the curl (or filegetcontents) for each created invoice/order#. I bet if you know how this works, you don’t even need knowledge of Magento and you can just tell me what i need to do.

Please bid if you know how to fix.

[code]
class Mage_Sales_Model_Order_Pdf_Invoice extends Mage_Sales_Model_Order_Pdf_Abstract
{
public function getPdf($invoices = array())
{
$this->_beforeGetPdf();
$this->_initRenderer('invoice');

$pdf = new Zend_Pdf();
$style = new Zend_Pdf_Style();
$this->_setFontBold($style, 10);

foreach ($invoices as $invoice) {
$page = $pdf->newPage(Zend_Pdf_Page::SIZE_A4);
$pdf->pages[] = $page;

$order = $invoice->getOrder();

/* Add image */
$this->insertLogo($page, $invoice->getStore());

/* Add address */
$this->insertAddress($page, $invoice->getStore());

/* Add head */
$this->insertOrder($page, $order, Mage::getStoreConfigFlag(self::XML_PATH_SALES_PDF_INVOICE_PUT_ORDER_ID, $order->getStoreId()));

$page->setFillColor(new Zend_Pdf_Color_GrayScale(1));
$this->_setFontRegular($page);
$page->drawText(Mage::helper('sales')->__('Invoice # ') . $invoice->getIncrementId(), 35, 780, 'UTF-8');

/* Add table */
$page->setFillColor(new Zend_Pdf_Color_RGB(0.93, 0.92, 0.92));
$page->setLineColor(new Zend_Pdf_Color_GrayScale(0.5));
$page->setLineWidth(0.5);

$page->drawRectangle(25, $this->y, 570, $this->y -15);
$this->y -=10;

/* Add table head */
$page->setFillColor(new Zend_Pdf_Color_RGB(0.4, 0.4, 0.4));
$page->drawText(Mage::helper('sales')->__('Product'), 35, $this->y, 'UTF-8');
$page->drawText(Mage::helper('sales')->__('SKU'), 240, $this->y, 'UTF-8');
$page->drawText(Mage::helper('sales')->__('Price'), 380, $this->y, 'UTF-8');
$page->drawText(Mage::helper('sales')->__('QTY'), 430, $this->y, 'UTF-8');
$page->drawText(Mage::helper('sales')->__('Tax'), 480, $this->y, 'UTF-8');
$page->drawText(Mage::helper('sales')->__('Subtotal'), 535, $this->y, 'UTF-8');

$this->y -=15;

$page->setFillColor(new Zend_Pdf_Color_GrayScale(0));

/* Add body */
foreach ($invoice->getAllItems() as $item){
if ($item->getOrderItem()->getParentItem()) {
continue;
}

$shift = array();
if ($this->y<15) {
/* Add new table head */
$page = $pdf->newPage(Zend_Pdf_Page::SIZE_A4);
$pdf->pages[] = $page;
$this->y = 800;

$this->_setFontRegular($page);
$page->setFillColor(new Zend_Pdf_Color_RGB(0.93, 0.92, 0.92));
$page->setLineColor(new Zend_Pdf_Color_GrayScale(0.5));
$page->setLineWidth(0.5);
$page->drawRectangle(25, $this->y, 570, $this->y-15);
$this->y -=10;

$page->setFillColor(new Zend_Pdf_Color_RGB(0.4, 0.4, 0.4));
$page->drawText(Mage::helper('sales')->__('Product'), 35, $this->y, 'UTF-8');
$page->drawText(Mage::helper('sales')->__('SKU'), 240, $this->y, 'UTF-8');
$page->drawText(Mage::helper('sales')->__('Price'), 380, $this->y, 'UTF-8');
$page->drawText(Mage::helper('sales')->__('QTY'), 430, $this->y, 'UTF-8');
$page->drawText(Mage::helper('sales')->__('Tax'), 480, $this->y, 'UTF-8');
$page->drawText(Mage::helper('sales')->__('Subtotal'), 535, $this->y, 'UTF-8');

$page->setFillColor(new Zend_Pdf_Color_GrayScale(0));
$this->y -=20;
}

/* Draw item */
$this->_drawItem($item, $page, $order);
}

/* Add totals */
$this->insertTotals($page, $invoice);
}

$this->_afterGetPdf();

// START APPROVING COMMISSION:
$ch = curl_init();
$timeout = 10; // set to zero for no timeout
curl_setopt ($ch, CURLOPT_URL, 'http://www..com/API/scripts/approve_commission.php');
curl_setopt($ch, CURLOPT_POSTFIELDS, "secret=44ℴ_number=".$order->getOrderId()."");
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
// END APPROVING COMMISSION

return $pdf;
}
}
[/code]

Categories: Magento, Programming Tags: , , , , , ,

Clone Of Travian Npc Helper

November 27th, 2009 Comments off

Would want the script that is running on
http://travianbox.com/tools/npchelper/
if you have any experience working on scripts for this game that can run off a web site that would be good to know also …. simple down and done.

Helper Needed

October 15th, 2009 Comments off

I want helper to manage my store cashmyjunkfiles.com
Your responsibility will be to:

1. Get work done from designers programmers
2. Posting new projects to fill store with digital products.
3. Reaching out designers/programmers worldwide through freelance sites and helping them sell unapproved projects on cashmyjunkfiles.com.
4. Reporting me of progress everyday.

Please bid to provide 2 weeks of services.

Php Jquery WordPress Helper

June 20th, 2009 Comments off

Looking for assistant with the following experience php, jquery or other javascript library, wordpress plugin. The project details are not specific, you should be able to handle whatever is asked. Also communication is with yahoo messenger during the coding.

Need A Helper From America

June 11th, 2009 Comments off

I have tons of various projects.

I run a Successfull web hosting,and web development firm.
We have various work.

Some is as simple as tweaking css to get stuff to look right,
and some is as hard as moving one cpanel account to another.

I need a LOYAL person to work with.
None of this Dissapearing act BS,

look at my feedback,
I pay ASAP,and I dont play games,

I have been doing web design,development ,and programming for 10 years.

so I am looking for someone who is fair in prices,and can just get the job done.

I dont wanna hear,Oh I have to go see my grandma,or I have achohol poisoning,Or I broke my leg ,etc.

Because those people who make excuses always end up broke.

I pay very Fair,so dont tell me its going to cost 100.00 to make a simple 10 minute fix.

I can pay ,upwards of around 20.00 per task.

So please have some motivation,and some time to work.

I will CANCEL any project ,if somone runs away,or plays any games with me.
And I am not afraid to leave a negative feedback.

Please bid Your best rate,
show me some example work “THAT YOU DID”
and please be able to communicate Via,skype,or AIM.

If You dont dissapear,You will have CONSTANT work.
all day every day,

Thanks

Bear