Archive

Archive for the ‘Filter’ Category

Ui Desing Case Filter Reports

February 17th, 2012 Comments off

Design the HTML the same way you designed the last charts/report for me
Allow for a case filter not to have any data values
The chart are a summation of all months activity from the XML file by Case Filter by Case Item
The Matrix Report is by Year, Filter, Item and by month
Since there are several Case Filters the matrix report next to have pagination only show 2 case filter
Dynamically create the year tabs on the matrix report
Must have totals for each month at the bottom of each matrix…

Categories: Filter, HTML, PHP, XML Tags: , , , , , ,

Filter Functionality On Trademark Search Results Page

February 14th, 2012 Comments off

Implement filtering functionality (on market and class) on our currently-existing trademark search results page.

For filtering, there should be some sort of pop-up with checkboxes (or other filtering mechanism) to select/deselect parameters. The appearance of the filters should largely be based on markify.com, including being in the adjacent column, but we are open to suggestion (such as under the search box).

All parameters should be activated by default.

Four Psd Variations Of Results Filter

February 11th, 2012 Comments off

See the document attached for details.

I need 4 different variations of the results filter seen on the document attached. I want different layouts of it. The results filter will be a expand collapse section on my website. It will allow you to filter your search results. I want to use images as icons on some of the results similar to the facebook filter seen on the document and also the ebay filter.

This is not for an entire page layout but just the search filter layout. I only need t…

Four Psd Variations Of Results Filter

February 11th, 2012 Comments off

See the document attached for details.

I need 4 different variations of the results filter seen on the document attached. I want different layouts of it. The results filter will be a expand collapse section on my website. It will allow you to filter your search results. I want to use images as icons on some of the results similar to the facebook filter seen on the document and also the ebay filter.

This is not for an entire page layout but just the search filter layout. I only need t…

Duplicate Content Filter/finder 2

December 15th, 2011 Comments off

I need a new feature added to our customised php admin section that will notify me of pages on our site that have a 70% or above duplicate content score. The 70% feature needs to be able to be edited so at a later date we can set a higher or lower duplicate content range.

This page will list/display all the pages with duplicate content list them in duplicate order with the articles having the most duplicate content first, i.e. if 5 pages have the same article on them it will display them like…

Classified Data Filter & Collect Into Spreadsheet

December 6th, 2011 Comments off

You will be looking at business listings on a local classified website, selecting companies that fit certain criteria, and filling a spreadsheet with the needed information.

I made a video to demonstrate this task.
http://www.youtube.com/watch?v=h9OaZiO13QA

The section you will be pulling data from for this task is at KSL.com, then at the top right you’ll see “Local”, then hover over “contractors and construction” and you’ll see the categories I refer to in the video. You’ll see that the…

Photo Gallery Category Filter Images – 2 Forms

December 1st, 2011 Comments off

Hello all,

wordpress photo gallery with checkboxes will display images in Top slider (not allow MULTI boxes) when user check ONE box in Photo gallery then show images
for each separate album* I call album every category or subcategory.

and 2 contact forms

Japanese Kana To Romaji Converter Needed

November 14th, 2011 Comments off

Hiragana and Katakana (Kana) text converter needed for Microsoft Excel file.
Kana text needs to be converted to romaji (English) text.

We want the Programmer to create a converter/filter to convert all the kana text in Microsoft Excel file columns.
More information in attached documents. If you still need more info, do not hesitate to ask.

Duplicate Content Filter Php Script

November 12th, 2011 Comments off

I need a php script which could list out all the pages with duplicate percentage defined as 70% or 80% and so on. I need it the earliest as possible.

Duplicate Content Filter/finder

November 8th, 2011 Comments off

I need a new feature added to our customised php admin section that will notify me of pages on our site that have a 70% or above duplicate content score. The 70% feature needs to be able to be edited so at a later date we can set a higher or lower duplicate content range.

This page will list/display all the pages with duplicate content list them in duplicate order with the articles having the most duplicate content first, i.e. if 5 pages have the same article on them it will display them like.

1 Oldest article at of the 5 articles first and how many internal pages link to it
—- list 1st article with same duplicate content and how many internal pages link to it
—- list 2nd article with same duplicate content and how many internal pages link to it
—- list 3rd article with same duplicate content and how many internal pages link to it
—- etc

Each article needs to have options beside the page (which will be hyperlinked to the edit this page)

Options Include:
Delete Page
Unapprove Page
Edit Page
301 Redirect (this will edit the htaccess file with the 301 redirect)

This feature will also block any new content being added to our site that does not pass the duplicate content filter, all original content will still automatically be added to our site.

Improvements To My WordPress Site

October 13th, 2011 Comments off

I’m using a wordpress theme and want to improve the site until later early next year when I save for a new site. Email me for the exact website link.

Some of the items I like to see if can be done (one at a time);

1. Tweak where search results can be further filtered. Example… I have a wordpress search box for business sales users can search by city, zip, or keyword however all the businesses show up and I would want the user to be able to select the business type such as automotive, cleaning, home, etc.

2. Find a way to allow users of my website to filter their search to proximity to where they live more than just searching only by city, zip, keyword.

3. Set-up a auto email users can sign up for that sends out an update the lets users know when a sale is posted in their city or zip.

I am open to other things suggested as well. Email me for the website link to see if any of these are possible with my theme or for other suggestions.

Simple Csv Filter Modifications – Php

October 5th, 2011 Comments off

Add a method to this php script for removing entries from a .csv file based on number values in a given. <>= and the word result in the final column. – Null, yes, no
mxsb.com/filter.php
example list
mxsb.com/wdc.csv

<?php

error_reporting(E_ERROR);
set_time_limit(120); // Time limit – 10 minutes

if($_POST['submit'])
{
# Get file contents
$filename = $_FILES['file']['tmp_name'];

$filter_words = implode(“|”, split(“,”, trim(trim(trim($_POST['filter']), “,”)) ) );

if (($handle = fopen( $filename , “r”)) !== FALSE) {
while (($data = fgetcsv($handle, 1000, “,”)) !== FALSE) {
$row++;
$col1 = $data[0];
if(preg_match(‘@b(‘.$filter_words.’)+b@i’, $col1))
continue;
echo implode(“,”, $data) . “<br/>”;
}
fclose($handle);
}

// Delete temporary uploaded file
@unlink($filename);

exit;
}

?>
<form method=”POST” enctype=”multipart/form-data”>

CSV File: <input type=”file” name=”file”><br>
Filter words: (separate multiple words by comma)<input type=”text” name=”filter” value=”for,sheet,”/><br/>
<input type=”submit” name=”submit” >
</form>

Categories: CSV, Filter, Modification, PHP, Simple Tags: , , , , , ,

Search/filter Module For Joomla Site

October 2nd, 2011 Comments off

We have a joomla website and we need
someone to custom write a module on the front-page, that
functions exactly the same way as the search/ filter engine here:
https://www.odesk.com/contractors/?lnk=fwHire&fwl=short

X-cart Pro 4.4 With Clever Filter Error And Not Working

September 30th, 2011 Comments off

This is the error message

Access denied !
Attempt to write data to a missing field of the table. Try to remove X-Cart cache to solve the problem.

Error ID: 79

Cache is false in the config.php

Link to the filter system – http://marketplace.x-cart.com/addons-modules/product-catalog/product-search/Clever-Filters

The website is on a godaddy shared g4 server and this is the php info page http://sellitonline.com/test.php

I need a programmer knowledgeable with X-cart pro.

This should be an easy fix. I need the admin part and the front end of the filter system working correctly.

The system allows you to create a category but when you add a filter to it. It gives you the error message

I added the Clever filter files to the project for you to review.

Please pm me if you have questions

Custom Rss Reader And Filter Proof Of Concept

September 19th, 2011 Comments off

Develop a custom RSS reader designed to receive and analyze incoming RSS feeds from multiple sources. Filter the results through one or several databases of keywords and key phrases, then assign a weighted score and a corresponding visual code of importance based on an algorithm of the filtered results. (i.e. red, yellow, green icon beside the resulting RSS feed). Database management, weighting, and algorithm will be flexible for the administrator.

Reporting options to view results online and send alerts and reports by email, RSS, and SMS. Design for online multiple users and self-administered password-protected accounts. Flexibility to add features, scalability, and security is critical. Open for suggestions on programming and database – as long as it is clean, fast, and flexible. Successful relationship on this proof of concept will lead to additional work long term.

Zen Cart Order Filter + Emailer

September 15th, 2011 Comments off

I am looking to have a program written that can run as a cron job or every day at a specific time that i choose..

The program will filter orders based on specific order details which i specify.

Once the filtering is complete all data (delivery address, name, location, order details etc etc) are exported to a .csv file and EMAILED to an email address that i choose…

The idea is to have an automated system that collects orders that have processed overnight and send them in .csv format to different distribution centers around the world.. Once complete and after the email has been sent the program should update and move the current zen cart order status to ‘Delivered’.

Filter Example:

Export all orders that have delivery country = Canada AND order status = processing complete.

Export all orders that have PRODUCT ID #123 AND delivery country USA AND order status = processing complete.

Once this is complete the program emails this exported .csv data to an address or 2 that I choose.

Should be able to run as a cron job or via FTP. Must be in .csv format.

Should be able to have unlimited job settings meaning I can have 10 sets of filters for example or 20 or 30 and they all run consequtive maybe seperating each product by product ID and sorting the distribution to different emails/locations…

Please let me know if you can complete this task for Zen Cart.

I have attached a sample of exported data to view in excel form.

Simple List Filter

September 8th, 2011 Comments off

Create a basic filtering program that takes csv inputs like the below, but up millions of entries in the list.

Input and output may be done via what ever form is easiest for you.

Needs to accept input for a given list of words or phrases.

Needs to delete the entire entry for all entries that contain said word or phrase.

Example.
Input “for” with the following list.

[taffeta cocktail dresses],91,73,1.08,3,Yes
[maternity clothes new orleans],91,91,1.16,2,Yes
[white tulle flower girl dresses],36,16,1.10,2,Yes
[kid car seats],73,58,0.94,1,Yes
[easy piano for beginners],22,12,1.55,1,Yes
[boden maternity clothes],110,73,0.57,2,Yes
[musical notes for songs],73,22,0.10,3,Yes
[hip maternity wear],110,91,1.12,2,Yes
[amy grant sheet music],58,46,0.29,3,Yes
[promo code for motherhood maternity],91,91,0.39,3,Yes

Output Should be

[taffeta cocktail dresses],91,73,1.08,3,Yes
[maternity clothes new orleans],91,91,1.16,2,Yes
[white tulle flower girl dresses],36,16,1.10,2,Yes
[kid car seats],73,58,0.94,1,Yes
[boden maternity clothes],110,73,0.57,2,Yes
[hip maternity wear],110,91,1.12,2,Yes

Any language you are comfortable with is allowed.
C# is preferred.

Program should be bug free and not require additional plugins.

Preference for those who could whip it out in the next few hours.

Php Search By Postcode Location Distance Integration.

September 7th, 2011 Comments off

I have a reverse bidding website very similar to this scriptlance site. But because we are selling physical services we need to integrate a feature whereby visitors can search for local jobs.

I want a search feature that will allow businesses to enter a post code and then it will bring up jobs within the specified area. eg 10 miles/50 miles/nation wide.

I already have the post code database imported to a table in my database.

If you go to the website auctions.compsmart.co.uk you will see the search bar “find work” on the home page. Ideally I want a second field in the search box that will allow to search by postcode.

This is the job criteria.
1. Add a postcode field to the customer sign up form to store this with their other details such as name/town etc. (very simple)
2. A table named ‘projects’ contains all the job request details. Eg. Window frame size colour etc. When a customer adds a job request we need some hidden fields containing their postcode and location inserting into the project table. This will allow us to search for projects by postcode/location.
3. We then need the search by location feature adding to the search bar on the home page.
4. We should be able to filter results based on distance from a specified postcode or town.
5. Search results table should have a new column headed “distance” and should be sortable.

File Keyword Search Program

August 17th, 2011 Comments off

I need a program written that will search files containing image documents. These imaged documents will need to be converted to a searchable document (by OCR) then searched for key word(‘s) and identified. It needs to be able to handle large file with multiple documents, isolate documents with the target words.

Fail2ban Need Regex Rule For Custom Filter

August 2nd, 2011 Comments off

I am configuring fail2ban to process a log file that is not part of the normal fail2ban filters. An example of a log entry would be:

[Aug 02 15:53:04] err: bad or missing CDX header refused connect from 98.165.54.217:50692 [l:980]

Please do not bid if you can’t do this it’s one line of regex that is specific to a fail2ban filter file.

I’m looking at $5 or so USD no more

Zen Cart Ups Filter

July 22nd, 2011 Comments off

I need a quick modification to Zen Cart includes/modules/shipping/UPS.php

Filter code should be added at about line 71.

If one or more products_id are using master_categories id XXX then set shipping method to: ’2DA’ => ’2nd Day Air’, and hide all other methods.

I need this to work for two different websites.

For www.siteA.com > Category > Cars ID = 66.

For www.siteB.com > Category > Cars Id = 100
> Sub category > Small Id = 109
> sub category > Large Id = 110

If any item in Cart is in this category UPS 2 day air is the only shipping method avalble.

code is similar to this:

// disable only when entire cart is free shipping
if (zen_get_shipping_enabled($this->code)) {
$this->enabled = ((MODULE_SHIPPING_UPS_STATUS == ‘True’) ? true : false);
}

// disable for one master_categories_id
if ((IS_ADMIN_FLAG == false

Sobi2 Filter

July 20th, 2011 Comments off

Hello all,

i am using joomla 1.5 and sobi2 version 2.9.3.2 and i want on my v-card to have a panel where the user can click and filter and sort the entries like this:

1.by custom fields – for exmple: when im in a category and press “berlin” i want to see entries which are only in berlin.

i want this to be in a drop down where they can choose from(because its a small list to choose from), and when they choose from the drop-down list the v-card refreshes in a ajax way to show the filtered entries.

2. i want a button that in a click will sort entries from a-z and in another click will sort entries from z-a(in my language ofcorse but i dont believe that its gonna be a problem cause the sql takes care of it anyway).

3. another button that will sort ascending and desending the entries by rating. one click most rated will be first one click it will be last….

4. a inputbox which makes an autosuggest from my list of cities(i have a long long list and its a custom field) when a user click a letter on it…

the design is not importent – only the functionallity.

thanks very much, ronen.

Categories: Filter, Joomla, Sobi2 Tags: , , , , , ,

Member Profile Filter For WordPress

July 18th, 2011 Comments off

WORDPRESS

I need a form that allows site visitors to filter registered members based on custom fields, for example:

Gender: male/female
Districts served: downtown, upper east side, soho, etc.
Speaks English: yes/no
Other language: Spanish, Italian, French, etc.

Results page should output a list of members which can be further sorted based on (for example):

Rate/hour (ASC/DSC)
Years of experience (ASC/DSC)

Custom fields have been set up using Register Plus Redux (which uses the wp_usermeta table).

The filtering basically uses the get_users() function (http://codex.wordpress.org/Function_Reference/get_users)

I’ve attached some similar code (although it is setup as a widget) and a screenshot of how I want the form to look like (more or less).

Additionally, there are existing plugins such as BP Profile Search (http://wordpress.org/extend/plugins/bp-profile-search/), amr users (http://wordpress.org/extend/plugins/amr-users/) and Member List Plugin (http://wordpress.org/extend/plugins/members-list/) that will probably have most of the code you need. I have several bookmarked pages with code snippets to help as well.

Basically, you will need to tweak the code attached and add some sorting to the form (look for code in amr users Member List Plugin).

Very small and easy project which can be done in 1-2 hours, so I’m looking for someone who can do this cheaply and quickly (less than $10/hour).

Excell Filter Program For Japanese Text Extraction

July 2nd, 2011 Comments off

Excell filter program needed to extract Japanese (Hiragana) data.
See attached document “Filter.05.06.07.doc” for more details.
In attached document “Extract.Colours.xls” you will find a filter to extract Japanese (Katakana) data, which should be a very good clue to construct the needed filters
If additional information is needed, please do not hesitate to ask.
Kind regards
Jon

Sort Filter Function For Cs-cart Website

June 23rd, 2011 Comments off

I am looking for an add-on to my Cs-cart shopping cart that is similar to the one at the top of this page: http://tinyurl.com/68mfeqb

It is the box at the top with the different sizes, colors, brands, etc. of shirts. This module likely has an admin function where the user can enter the custom fields, etc.

There is currently some Filtering capability within cs-cart, but it’s not exactly what I am looking for:

http://kb2.cs-cart.com/product-filters

and relating to filters is product features:
http://kb2.cs-cart.com/product-features

Thanks!

Jap. Small/simple Filter Needed To Arrange Data

June 18th, 2011 Comments off

SMALL/SIMPLE FILTER PROGRAM NEEDED TO ARRANGE JAPANESE DATA.
Step.1 -> Create filter to extract ONLY Japanese KATAKANA text from Excell spreadsheet.
Step.2 -> Combine all the cells with KATAKANA text (text separated by comma in one single cell)
For more details see attached document

Filter Database Results – Php/mysql

June 13th, 2011 Comments off

I need a script that will filter a database table based on five fields and return the best “matched” field based on set defaults.

Like if field 1 = ‘yes’ and field 2 = yes… and so on.

Please download attached file with sample database structure and data.

#NOTES:

- You will need to group rows by “id” and “similar”. You will filter the results for the current row id against the ids found in the column called “similar”.

- Columns “rank” and “did” will be unique per group of id/did.

- It must return at least one id after all the filters. Basically if there is no match just return any id from the group.

Very simple script. Needs to be done today. Please PM Questions.

Filter Duplicate Data

June 7th, 2011 Comments off

I have a list of phone models that need filtering, with some the data is duplicated, but in a different order, i.e.:

Blackberry 8110 Pearl
Blackberry Pearl 8110

The above data is the same, just the model name is swapped, I need to be able to filter the above occurrences in the data file

I have attached a sample data file and how I would like the outout to be

Note: Output is to have a line between each duplicate data

-Any question, just ask

Small/simple Filter Program Needed To Arrange Data

June 6th, 2011 Comments off

Small/simple filter program needed to arrange data.

1) A .csv spread sheet has data separated by

Search List Page – With Filter 2

June 3rd, 2011 Comments off

See attached image for notes on project.
(on venue, fan, and performer’s home page – need to add new tab in header that links to new search page, filter, etc…)

Search List Page – With Filter

May 21st, 2011 Comments off

See attached image for notes on project.
(on venue, fan, and performer’s home page – need to add new tab in header that links to new search page, filter, etc…)

Zent Cart Product Filter Needed.

May 2nd, 2011 Comments off

Hi,
This is a simple proyect, we need to have a product filter on a website created with Zent Cart.

The filter must be by price range with the following details:
- All products
0.0 to $10.00
$10.00 – $20.00
$20.01 – $50.00
$50.01 – $100.00
$100.01 – $300.00
$300.01 – $400.00
$400.01 – $500.00
Above $500.00

Attached is a zip with the files that need to be installed and configured.

Thanks.

Photoshop Spilled Paint Effect Filter

April 26th, 2011 Comments off

I need someone to create an easy to use filter for me to use with payers in PHOTOSHOP in order to be able to show my ink colors. Attached are 4 files.. 1 is the preferred shape I would like so it does not look identical to my competitor. The other 3 images are samples from my competitor to show what we are trying to produce. What I need:

1) Photoshop file

2) Do not include bottle in the image as I will add my own ink bottles. Make only the spilled liquid layer.

3) Must have depth and highlights like my competitors (attached).

4) Use layers so the top layer is the reflective and depth effect and the below layer will allow me to easily select the color from my ink bottles and convert the spill to match the color of the ink in the bottle.

5) Supply me with step by step direction on how to use your new template to create any color I want by choosing the color with the color picker.

I think this is a SUPER easy task for someone who knows photoshop well, so if you want to do it and PM me a sample, that is the easiest way to get me to choose you. If I get what I want and at a good price, I will choose the winner and stop the bidding immediately. If we do not get samples, then I will wait and choose the winner based on reputation, price, and ability to explain what they will do.. Thanks,

Add Filter Functionality To Php Site 2

April 15th, 2011 Comments off

I have a site that displays a list of products/services. Each product/service has a category (Database table [deals] has a field [categoryid]. I want users can filter the product/service list by selecting one or more categories

see the site here:
http://www.bankforumtest.com/deals/athens

see attached files
#1 the source code of the page (in php)
#2 and #3 how I would like the users be able to select categories to filter the list (I prefer #2)

Bear