Archive

Posts Tagged ‘code fix’

Fast Php Mysql Code Fix

February 11th, 2012 Comments off

I need someone to fix some PHP code for my site.

Please read carefully.

Our site uses two MySQL databases to operate. (Please see attached files for code).

We are trying to code something to connect to the second database.

We want you to fix our code so our script can connect to the second database and will still allow the file to use the first database.

Thanks.

Categories: Code, Fix, MySQL, PHP Tags: , , , , , ,

Zencart Coupon Code Fix

November 24th, 2011 Comments off

We have a Zencart website which uses Directone payment portal. The website works fine however when a coupon code is applied the discounted amount is not being sent to Directone for processing.

Coupons work fine with PayPal.

Quick Php Code Fix

September 15th, 2011 Comments off

I have two search scripts and both returning only 1 search result even though it has more than 1 result in database. attached both files to fix

Categories: Code, Fix, PHP, Quick Tags: , , , , , ,

Printing Code Fix For Foxpro Program

June 14th, 2011 Comments off

I have a program which was written in FOXPRO for windows ME. The code that goes to the printer was written specifically for HP lazerjet. I am now using a canon MP160. I need someone to write a new code that will print to the Canon MP160. There is a very good probability that I am going to want considerably more work done on this program and update it to run on Windows 7 and higher.

Php Xml Curl Code Fix #2

January 13th, 2010 Comments off

More work to the same project as discussed via gtalk

Categories: Ajax, Javascript, PHP, XML Tags: , , , , , ,

Socialengine Code Fix

November 14th, 2009 Comments off

Hi,
I am a small start up company using SocialEngine software for my networking site. The site is up and running, mostly functioning properly and needs a few errors to be fixed.
Bugs will maybe take 5-6 hours of work.

Only those who have worked with socialengine before may bid.

Ezrealty Small Code Fix

July 28th, 2009 Comments off

I need someone with ezrealty hands on experience , I need a couple of field , bugs fixed . I also need some front end change I need the pdf Markeing Material Text size and wording changed . www.ewrealestate.org

Jquery Code Fix

July 2nd, 2009 Comments off

I have a small jquery application that currently uses 1.3.2 library I would like to make it functional with 1.2.6. currently there is only one error displaying. So this should be a fairly quick fix

Categories: Javascript Tags: , , , ,

Code Fix For Internet Explorer

June 30th, 2009 Comments off

I need a solution for fixing OL float problem on this page (under the URL section):

http://www.linkcuts.com/link01

This problem only exists in IE, it looks correct in Firefox. I will not be able to provide server access.

Emergency Code Fix

May 21st, 2009 Comments off

I have isolated out a function that is not working, I need this fixed ASAP.

Categories: MySQL, PHP Tags: , , , ,

Php Mysql Code Fix

March 27th, 2009 Comments off

Hello,

I need this code repaired.

What it does is delete ads that are older than one day. That works great. The second part is suppose to delete the viewed record. In other words every time the ad got viewed the information was stored in the viewed table. If the ad gets deleted all records pertaining to the deleted ad should also be removed from the viewed table.

[code]
//first clear the database of expired ads.
$onedayago = strtotime("-1 day");
$querys="select * from post where posted < '".$onedayago."'";
$results=mysql_query($querys);
//now build the query.....

while ($lines = mysql_fetch_array($results)) {
$postid = $lines["postid"];

if ($counter==0) {
$queryv.= "delete from viewed where id=".$postid." ";
}
else {
$queryv.= " and id=".$postid." ";
}
$counter=$counter+1;
}
if ($query<>"") {
$resultv=mysql_query($queryv);
}

////////////////

CREATE TABLE `viewed` (
`id` int(11) NOT NULL auto_increment,
`postid` int(11) NOT NULL default '0',
`userid` varchar(30) NOT NULL default '',
`paid` tinyint(1) NOT NULL default '0',
KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=466286 ;

[/code]

Bear