Archive

Posts Tagged ‘thread’

Points System Plugin For Burning Board Forum

February 16th, 2012 Comments off

I need a points system plugin created for burning board forum software.

The system needs to do a number of things, all easily configurable from the admin interface:

- automatically give points to a new user
- SUBTRACT points for a new thread
- ADD points for a new reply
- allow person who posts thread to give their points to someone who replies to their thread.
- Allow admin to easily add/subtract points from users

Also:
- if person who creates thread deletes the thread, the poi…

Categories: Forum, Plugin Tags: , , , , , ,

Very Easy I Guess) Displaying Post Number

January 25th, 2012 Comments off

This is bbpress forum. I want, for each thread, the first post will be numbered 1, the second 2.

I can help you finding out what file you have to look at. I myself tried various changes so I can tell you what changes if I change what code, so that you can readily see what file you have to look at to complete the project.

Paid Thread & Bump Mod For Vbulletin 4.x.x

October 31st, 2011 Comments off

I need a mod for VBulletin 4 (currently version 4.1.7 but must work with all versions of VB 4.x.x).

Basically the MOD will have 2 features:

1)- It will allow our Members for one Category of our VB4 forum (6-7 sub-forums) whenever they Post a New Thread, it will take users to paypal page and after payment, thread will be posted.

I (Admin) must be able to edit price anytime from Admin area.

2)- The Users can bump the thread for some price. Every thread (under the category and sub-forums we mention) will have a bump button visible to thread creator. He/She can bump the thread by making payment via PayPal. The thread will be bumped to the top in it’s respective forum section.

Note: We need to disable the default feature of VB where if someone reply on a thread, the thread is bumped. This needs to be disabled and Bump should be only applied if payment is made.

Let me know if you have further questions.

Paid Thread & Bump Mod For Vbulletin 4.x.x

September 19th, 2011 Comments off

I need a mod for VBulletin 4 (currently version 4.0.0 but must work with all versions of VB 4.x).

Basically the MOD will have 2 features:

1)- It will allow our Members for one Category of our VB4 forum (6-7 sub-forums) whenever they Post a New Thread, it will take users to paypal page and after payment, thread will be posted.

I (Admin) must be able to edit price anytime from Admin area.

2)- The Users can bump the thread for some price. Every thread (under the category and sub-forums we mention) will have a bump button visible to thread creator. He/She can bump the thread by making payment via PayPal. The thread will be bumped to the top in it’s respective forum section.

Note: We need to disable the default feature of VB where if someone reply on a thread, the thread is bumped. This needs to be disabled and Bump should be only applied if payment is made.

Demo Example: Both features are in this forum and we need similarly..

http://www.warriorforum.com/warrior-special-offers-forum/

Let me know if you have further questions.

Multi-thread Java Program

August 24th, 2011 Comments off

This project is a java simulation program that uses Multi-threading.

Custom User Permissions For Phpbb

June 29th, 2011 Comments off

I am in need of someone that either knows how to do this (if functionality exists) or how to create a mod for phpbb…

The need is:

Be able to have a thread that only myself/client
can view based on permissions set.

and

Have another thread that myself/team can view.

I can see both but only client will see their thread
and no other threads (eg; for other clients or team threads)

Team can only view team threads (not client thread)

etc…

I hope this illustration makes sense.

Now I know there ‘might’ already be some functionality or mod
that allows for this in sub-forums. I’d prefer this on threads for a very specific reason.

Thanks and I look forward to your bids.

.

Vbulletin Template Work Requiring Javascript Needed

May 13th, 2011 Comments off

I have a vBulletin forum.

I need it so that the latest posts from specific subforums on my forum are shown inside a template using vBulletin external JavaScript feature

http://www.vbulletin.com/docs/html/main/vboptions_externaldataprovider_implementing

The above example in the above link will output some text that looks similar to this:

thread title 1 (thread starter of thread 1)
thread title 2 (thread starter of thread 2)
thread title 3 (thread starter of thread 3)

I need it so it looks something like this:

title 1
title 2
title 3

This will be placed inside a template and should be written in JavaScript. A user should be taken to each post when they click on it.

This doesn’t require any formatting beyond line breaks, hyperlinks. There is a template contains a style sheet I can use.

Simple Java Concurrent Erathostenes Sieve

May 7th, 2011 Comments off

Hi,
I need following assignment done.
Algorithm and steps are provided so it should be very easy for a java expert.

Eratosthenes’ Sieve

Eratosthenes’ sieve is a method for generating prime numbers. Our goal is to implement it using threads and pipes. The task may occur difficult to do at once, so it is divided into several steps.

Here is the algorithm:

1. A thread named Generator generates consecutive natural numbers (> 1) (until it reaches the limit given as argument) and writes them to a pipe.
2. The numbers are received by another thread named Sieve, created by the generator.
3. The sieving thread stores the first number read from the pipe. It is a prime number.
4. Afterwards it creates new sieving thread and transfers to it (using another pipe) the rest of the received numbers except for numbers divisible by the stored prime number.
5. Then the sieving thread returns (using another pipe) the stored prime number to the thread, from which it received the numbers.
6. Next, the sieving thread reads prime numbers from the (another, not used yet) pipe connecting it and the sieving thread it created earlier and sends them to its parent (the thread, to which the stored prime was sent; it is the thread, that created this one).
7. Having generated all the natural numbers, the main thread – the Generator – starts reading prime numbers from the pipe connecting it and its descendant and writes them to the command prompt.

Step 1

Create a class named Generator. An object of this class is a thread generating integer numbers (>1).
Step 2

Create a class named Sieve. An object of this class is a thread reading numbers from the pipe connecting it to the generator.

Notes:

* A stream object must be passed to the receiver thread as an argument to a constructor.
* A pipe stream must be decorated with a data stream (DataOutputStream or DataInputStream) to enable transfer of primitive types (integers).
* Having printed all the received numbers, both threads should terminate cleanly. To achieve this, the special value 0 may be sent as a termination signal (EOD, end of data).

Step 3

The receiver thread passes all the received numbers back to the sender using another pipe.
The sender (the generator) prints them out to the command prompt.
Step 4

* The sieving thread creates another sieving thread and transfers to it all the numbers it has received.
* The created sieving thread (descendant) reads the numbers and sends them back to the sender immediately (using another pipe).
* The sieving thread created by the generator receives the numbers from the descendant and returns them to the generator, who prints them.

There are 3 threads here.
Step 5, the last

The sieving thread does not pass all the numbers it gets to the descendant. It passes only those of them that are not divisible by the first number it got (and stored).

Each sieving thread creates another sieving thread until there are any numbers left in the transferred sequence.

Besides the stored prime number, it passes to the parent thread all the numbers received from the descendant.
Notes:

* Each sieving thread must take 2 stream objects as arguments to its constructor (only in the final version).
* All the streams must be closed properly.
* Each thread should print lots of diagnostic messages to ease debugging. However, a correctly working program should print only the prime numbers.

Forum Thread/post Links Required

May 2nd, 2011 Comments off

I will need 500 forum thread/post links over a month time.
Can be up to 3 posts on the same forum
Please supply an info on similar work done.

Vanillaforum Thread Notification

April 29th, 2011 Comments off

I use vanilla forum. I would like an addon that will email me when a new thread is created in the forum.

It should also allow me to reply to the thread via email, i.e I get a thread notification and reply to the email, and the reply is posted on the forum.

also, it should have a one click link to delete the thread – so if it is spam i can delete it quickly. if your not familar with vanilla forums then google it please.

Install Single Thread Forum

April 27th, 2011 Comments off

Suggest a simple forum script that is easy to customize and admin

install on my server, test, get paid

Automatic Forum Thread Bumping

April 20th, 2011 Comments off

I need simple script run with cron maybe just to post custom text to custom thread in custom forum. This is just to bumping my thread in forum so it’s always in the 1st position.

I don’t need desktop software with this, I need something that can run on server side.

Thanks.

Vbulletin Plugin-report Dead Links To Thread Starter By On

April 19th, 2011 Comments off

As title said

as the same protocol used in thank you hack, to have a button “report dead link”

on clicking this button with ajax mechansim it send a pm to thread starter to notify him about this dead link

in addition it may report to the Forum moderator as a notification or send a post/thread in specified forum

Vbulletin Q&a Module Plug-in

February 4th, 2010 Comments off

VBulletin 3.8.4

I want a plug-in that allows users to easily submit a new Question, and allows other users to easily answer that question.

A list of the top 10 questions will be displayed via a template hook ($qaboard). It will also have a small form so logged-in users can post a new question and hit Submit.

- Template hook ($qaboard) so I can place it where I want it
- When user submits a new question, it creates a new thread in a specified forum (controllable via AdminCP).
- Any user can browse that forum and answer questions just like normal.
- Each question on the Q&A board is linked to the thread, making it easier to view/answer.
- Three view/filter options for Top 10 board. Checkbox to enable/disable viewing unanswered questions (open threads are unanswered, closed threads are answered – staff will control this). Drop down to sort by popularity (# of views on thread) or sort by date (most recent questions).

You can see a rough idea at TomsHardware in this screen shot:
http://screencast.com/t/OWZjOTg0ZDc

Mike

Categories: MySQL, PHP Tags: , , , , , ,

Create Images For Vbulletin 2

January 10th, 2010 Comments off

I have some images that we used for our vbulletin 3.8 board, but we now went to vbulletin 4.0 and i would like to redo these images and also create a few more by using these.

I have included 2 images one is for new posts and one is for no new posts.
the one that blinks is for new posts.

want i want to do is remove the background from both of them so its just the player and then i need to create these images

thread closed, hot thread new posts, hot thread no new posts

this will require some imagination on your part

Basic Social Website Script

December 28th, 2009 Comments off

Registration System
- A simple registration system. There must be a CAPTCHA security system while registration. Also need simply registered user profil pages and users messages and topics will appear from profile page.

Creating Topic / Posting
- The script won’t be a forum but creating topic or posting systems can be similar. Do not need advanced editors like forums.
- When creating topic or sendin message there must be a option for adding picture, video or sound. Adding picture, video or sound system will similar Facebook. The users just enter the url of media. So files won’t be uploaded.
- When creating a thread the tags will be added by user and tag system must be controled via Admin panel.
- There must be a voting system like digg.com or unlem.net

Homepage
- Homepage must flexible. The widgets like most voted, most read, most replied, most watched can be replaced via admin panel. Also the thread count which appear on homepage must be controled via admin panel too.

Admin panel
- User informations
- Thread and post management
- The tag numbers for each thread
- Widgets on homepage
can be editet from homepage

The prices, you post, must be include design.

Single Thread Youtubecommentor

December 22nd, 2009 Comments off

I am a vb.net programmer that currently uses a prog I have made to send comments on Youtube but it isn’t using internal code at all. It’s using the Webbrowser Control. I am trying to get away from using the Webbrowser Control and using Httprequest/response and all the internal classes Vb.net offers.

I want this project done because first off I want the source so I can learn more internal functions with it plus I have been wanting to learn how to post data cause it will be posting the comment.

Here are the functions:
Load Usernames/Proxies(Format-UN:PW:PROXY:PORT(This is because I would rather use the same proxy per account at all times)
Load Video Urls to comment(already have a scapper/grabber)
load comments(just rotate them)
1 time out option between comments

I would rather this to be programed in VB.NET VS2008 But if programed in Visual C or anything just make sure to convert.

Thanks

Create Images For Vbulletin

December 12th, 2009 Comments off

I have some images that we used for our vbulletin 3.8 board, but we now went to vbulletin 4.0 and i would like to redo these images and also create a few more by using these.

I have included 2 images one is for new posts and one is for no new posts.
the one that blinks is for new posts.

want i want to do is remove the background from both of them so its just the player and then i need to create these images

thread closed, hot thread new posts, hot thread no new posts

this will require some imagination on your part

Forum Stats Script Needed 2

December 11th, 2009 Comments off

Forum Stats

I want stats from the message board found here:

http://www.warriorforum.com/warrior-special-offers-forum/

I want to know the following 3 stats:

1. # of New Threads (& bumps) added to Page 1 p.er DAY

2. # of Threads (& bumps) added to Page 1 p.er HOUR p.er Day

3. How long a thread lasts (in hours) on page 1 before being moved to page 2.

The point of this information will be to see which days & times are the best to place a new thread (or bump a thread) so it will last the longest amount to time on page 1.

Hopefully this makes sense :)

I am guessing this a script will run with an h.ourly cron.

Script must be written in PHP so it runs on my Linux cPanel server.

Please PM me with any questions.

Forum Posts

November 24th, 2009 Comments off

This should be an easy job for an experienced forum poster.

I Need approximately 20 forum posts for a one day trial. I the have forum login, all you need to do is post. This is one site you will be posting to.

Conditions:

-Cannot post in the same thread if you have already posted in that thread
-You must have a good understanding English
-You must post one full line of quality, original material relevant to the thread (no copy and paste).
-The 20 posts must be spread out throughout the day (posts can be grouped by 5, so you can post a max of 5 posts at one given time on different threads)

***PLEASE SUPPLY TEN SAMPLE POSTS***

If interested please send a message via PMB to discuss specifics in more detail, as well as providing previous experience if any.

If the trial is successful, this will lead to an ongoing project.

Forum Stats Script Needed

November 12th, 2009 Comments off

Forum Stats

I want stats from the message board found here:

http://www.warriorforum.com/warrior-special-offers-forum/

I want to know the following 3 stats:

1. # of New Threads (& bumps) added to Page 1 p.er DAY

2. # of Threads (& bumps) added to Page 1 p.er HOUR p.er Day

3. How long a thread lasts (in hours) on page 1 before being moved to page 2.

The point of this information will be to see which days & times are the best to place a new thread (or bump a thread) so it will last the longest amount to time on page 1.

Hopefully this makes sense :)

I am guessing this a script will run with an h.ourly cron.

Script must be written in PHP so it runs on my Linux cPanel server.

Please PM me with any questions.

Messageboard/blog Posts

October 15th, 2009 Comments off

Messageboard postings.

Looking for my website to be posted to North American electronics forums or any thread that has to do with something similar to my product as long as it’s based in Canada or America.

I will write up what to post on the forums for you, your job is to find the websites/topics and create a thread or join in on a thread which is similar to my product.

I will need some kind of database, either Excel spreadsheet or Word document with all of the posted links.

I’m not looking for bulk spam; I’m hiring you for quality links.

Each link needs to be under a different domain.

You’re paid only for the valid posts in the document.

This is not a project for link trading or links on random link pages, this is for message board/blog postings only.

If you are unsure please send me a few sample links from previous postings for another site.

PLEASE list how many posts you will be able to do for your bidding price or how much per post you charge.

Posts need to be made on a daily basis until completion.

25% of the posts should be made to blogs.

Thank you.
Happy bidding.

Joomla Customisation

October 10th, 2009 Comments off

1.0 Joomla

i. General Joomla functions are to be made available. It is a MUST TO USE Joomla CMS.

ii. Design Integration is required, you will be provided with the sliced design template.

1. Registration Module
2. Article (Page and News) Module
a. Add Article, b. Delete Article, c. Edit Article
3. Notification Module
a. Send Email notification to admin, b. Send Email to all user when new contents uploaded
4. Resources Module
a. Add Photo/Powerpoint/Videos, b. Delete Photo/Powerpoint/Videos, c. Edit Photo/Powerpoint/Videos
5. Forum Module
a. Post Thread, b. Edit Thread, c. Delete Thread, d. MarketPlace
6.Event & Calendar Module
a. Add Events, b. Edit Events, c. Delete Events
7. Web Analytics (Google Analytics)
8. Form to Email Module

Vbulletin Ads Support

October 7th, 2009 Comments off

Currently running vBulletin 3.8.4 within Joomla.

I want in-line advertising quite like this forum:
http://forums.bimmerforums.com/forum/showthread.php?t=1321896

Here’s what I want. I want to add advertising as follows:

Item #1: Type 1 sponsor
Every thread will randomly display TWO “Type 1″ sponsor ads, side by side in the upper right corners. Banner ads should be 468 x 60. (Note that the sample web page (Bimmerforums.com) only shows ONE of these sponsored ads in the upper right. I would like TWO .. side by side next to MY logo.

Item #2: Type 2 sponsor
Like Bimmer forums, I want there to be an overall sponsor for a category. See this:
http://forums.bimmerforums.com/forum/index.php

Lighting sponsored by BAVToys
Forced Induction sponsored by Active Autowerke

Then clicking on the forum, you can see every thread has
that sponsor’s ad.

For instance, this Forum is sponsored by “Active Autowerke”. When you click on any thread, say, this one, you can see their add before the posts.

http://forums.bimmerforums.com/forum/showthread.php?t=1319075

For Item #1 and Item #2.. I should be able to use a clean vBulletin MOD to:
a. Specify the advertiser as Type 1 or Type 2 (which automatically dictates the placement)
b. Load / import the graphic for the ad or use “hosted” ad if it’s on their website already
c. Specify final display date (expiry date)
d. Automatically send MONTHLY statistics to me and the advertiser about IMPRESSIONS and CLICKTHRUs

I don’t care what MOD you use, or even if I have to BUY it. I just need for it to hit all the requirements specified here.

Item #3: Netshelter Ads (part 1)
NetShelter 300×250 and 336×280 ads should displayed on
FIRST POST only (again like
http://forums.bimmerforums.com/forum/showthread.php?t=1319075)

You’ll see the first post in any thread has a big ad-block in it. I have a block of code from Netshelter to server ads of 300X250 and 336X280.

I am already a NetShelter customer, and can supply my Netshelter ad-display code block. All you need to to is integrate it to display both ad types as they come in. (It automatically falls back to Google when there are no ads to display.)

Item #4: NetShelter long ads, between every 3 posts in a thread.
Use similar NetShelter code. This time, using the 728 x 90
ads between every three posts in a thread.

Item #5:
Google ad-words ads at the bottom of posts.
Again, see this example, then scroll all the way down.
http://forums.bimmerforums.com/forum/showthread.php?t=1322222

You’ll see ad-words ads at the bottom. I want that same idea using my adwords account.

Latest Thread And Rss On Vb

September 3rd, 2009 Comments off

Hay i want to add Latest 15 new threads show on Forums right side menu and Main website RSS as links shows on side menu of forums.

Main Website : http://wwww.freshwap.net/
Forums : http://www.freshwap.net/forums/

Messageboard Postings

September 1st, 2009 Comments off

Messageboard postings.

Looking for my website to be posted to North American electronics forums or any thread that has to do with something similar to my product as long as it’s based in Canada or America.

I will write up what to post on the forums for you, your job is to find the websites/topics and either create a thread or join in on a thread which is similar to my product.

I will need some kind of database, either Excel spreadsheet or Word document with all of the posted links.

I’m not looking for bulk spam; I’m hiring you for quality links.

Each link needs to be under a different domain.

You’re paid only for the valid posts in the document.

This is not a project for link trading or links on random link pages, this is for message board postings only.

If you are unsure please send me a few sample links from previous postings for another site.

PLEASE list how many posts you will be able to do for your bidding price or how much per post you charge.

Thank you.
Happy bidding.

Elearning Voice.text Thread

August 30th, 2009 Comments off

I am looking for an established web developer who has experience with web design, RED 5, Agriya video/voice recording and programming. I recently had a site developed however, it has not been completed to satisifaction. The deadline for site completion has passed but site is still not complete. Need job finished ASAP.

1. Site was supposed to be created based upon voxopop.com and voicethread.com. The difference being that it will include both voice and text threads within one place and allow users to add music, video and ppt to their thread for other users to view and comment on. This needs to be completed.

2. There is an error in the add class function for adminstrators and teachers. Multiple classes can be added each with a different title but they are display the same time. This is an error that needs to be fixed.

3. Before users sign in, there are tabs available (Teacher Resources and Student Resources) The tabs disappear once user is signed in. This shouldn’t be. Once a student signs in, the student resources tab should also be available and teacher resources for teachers.

4. Also, there is another page that still needs text added to it.

The editions that need to be made are not very complex and previous developer should actually be responsible for them. However, he seems to have reached his ability capacity. The job was not well researched before hand and has not been completed on time and developer is requesting more money. However, I want a new developer who can get the job done within the alloted time frame, to my specifications and not expect more money beyond the accepted bid agreement.

IF YOU ARE NOT 100% POSITIVE THAT YOU CAN COMPLETE THIS JOB, PLEASE DO NOT BID. THIS JOB NEEDS TO BE COMPLETED WITHIN ONE WEEK.
Please submit mock up of an enhanced site design. www.soenglishglobally.com

Messageboard Posting

August 29th, 2009 Comments off

Message board posting.

Looking for my website to be posted to North American electronics forums or any thread that has to do with something similar to my product as long as it’s based in Canada or America.

I will write up what to post on the forums for you, your job is to find the websites/topics and either create a thread or join in on a thread which is similar to my product.

I will need some kind of database, either Excel spreadsheet or Word document with all of the posted links.

I’m not looking for bulk spam; I’m hiring you for quality links.
Each link needs to be under a different domain.

You’re paid only for the valid links in the document.

If you are unsure please send me a few sample links from previous postings for another site.

Please consider: I’m looking for someone to do this on a regular basis for with this site, and with a few other sites.

Thank you.
Happy bidding.

Graphics For Thread

July 21st, 2009 Comments off

I’m requesting the price for two graphic items to be
added to a “forum thread” that I’m displaying on a
business website. The first graphic to be a welcome
graphic, I like things that sparkle and grab attention,
and the last graphic a “money graphic” I have a
website that displays beautiful graphics that I like.
http://www.glitterfy.com/graphics/Money/
and yet if you have some better graphics, I’m certainly
open for new ideas. I would like a price and whether
or not it can be done on a “forum thread” THANKS

Expert Db

June 27th, 2009 Comments off

Hello i have problem in my forum i am found

the number of threads in my forum was about 32000 and now

i am see number of thread about 15000 thread that mean 50% of thread deleted i am don’t know why this happen

i want know reason for thaat and i have full backup for db we can ddiscus that with you

Categories: MySQL, PHP Tags: ,

Vbulletin Adsense Install

June 21st, 2009 Comments off

I have vbulletin 3.8 with standard Adsense integrated with the vbulletin system. See forums.profitsbay.com for example.

However, I want an additional Adsense box placed at the bottom of the last post on every thread. Please note I do NOT mean at the bottom of the screen/footer of the screen (there is Adsense there already) – I want it as part of the actual last post of every thread/just underneath the last post of each thread.

Please show me examples if you have done this before and if you have other ideas and please give me bid price.

Vbulletin + Google Maps Mod

June 11th, 2009 Comments off

I need somebody experienced with vBulletin and Google Maps API to write a custom mod compatible with vBulletin 3.8.x that will:

1) add custom fields to the new/edit thread posting form.
2) take input (a Google Maps url) from one of these custom fields and grab (grep? regex?) certain elements (coordinates) to be made available as variables which are saved to the vBulletin database and displayed in the first post of a new thread
3) use the same variables to get geocode information from Google and save fields from the Google Maps API JSON results (or XML results if you prefer) to the database and made available to be displayed in the first post. I think a separate db table for the data from item #1 and the returned JSON fields are ideal but am open to alternate suggestions.

Requirements
- Some fields will be required and some will not. Failing to submit appropriate data in a required field returns error indicating the problem.
- input of Google Maps url in one custom field is verified to be a Google url (including various international domains)
- All data submitted through custom fields are run through vBulletin’s form/input cleaning as well as protections from SQl injections, CSRF, other common attacks and clean out any submitted HTML
- Edit of thread posts containing url and other information from the custom fields will automatically display what is currently saved to the database and allow for edit/replacement according to vbulletin permissions regarding editing privileges. Change to Google Maps url in custom field will initiate reprocessing of grep/regex and related variables/data replaced in database (it would be a nice extra to have it prompt before replacing this data)
-Not all forums/new threads will use the custom fields. Make sure there are no errors if no data is submitted in the custom fields (these fields will likely not be shown in certain areas of the site).
-I have no problem with using an existing vBulletin hack such as http://www.vbulletin.org/forum/showthread.php?t=128587 as long as it is fixed to work with v3.8. I am also open to other vB hacks you may know that may make coding easier.

At the end of the project I expect the mod and all the changes with documentation (full install instructions) to be zipped and sent to me.

- – - – - – - – - – - – - – - – - – - – - – - – - – - – - – - – -
Sample of how this might work
User goes to do=newthread where custom field submission of this Google Map URL is entered:
http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q&ie=UTF8&layer=c&cbll=30.272735,-97.741076&panoid=CGDtk5FW3PDHGPuW_Vnh9g&cbp=12,13.06,,0,-2.17&ll=30.272587,-97.741123&spn=0.005597,0.00751&z=17&iwloc=A

The code verifies a clean Google Maps url was submitted and will grab this information from the submitted url:
&cbp=12,13.06,,0,-2.17
&ll=30.272587,-97.741123

This information will then, for example, be able to be inserted into the following HTML and displayed on the first post of the new thread
<iframe width=”425″ height=”240″ frameborder=”0″ scrolling=”no” marginheight=”0″ marginwidth=”0″ src=”http://maps.google.com/maps/sv?cbp=***cbp goes here***&cbll=***ll goes here***&panoid=&v=1&hl=en&gl=us”></iframe>

The &ll coordinates will also be submitted through the Google Map API for reverse geocoding (http://code.google.com/apis/maps/documentation/geocoding/#ReverseGeocoding) to receive and store the following JSON results in the database: id, address. CountryNameCode. CountryName. AdministrativeAreaName. LocalityName. ThoroughfareName. PostalCodeNumber and Accuracy.

If somebody goes to edit the post the custom fields and default thread fields will be visible and contain the information from the database. Changes to the post will result in the Google Map API information to be updated and saved back to the database.

Links that or may not be useful
Add custom fields to new threads
http://www.vbulletin.org/forum/showthread.php?t=114249
Validate fields or extract information using regular expressions
http://www.vbulletin.org/forum/showthread.php?t=215466
vBulletin Custom DataManagers (might be useful)
http://www.vbulletin.org/forum/showthread.php?t=119376
vBulletin Docs
http://www.vbulletin.com/docs/html/
vBulletin API Basics
http://www.vbulletin.org/forum/showthread.php?t=98009
Implementing CSRF Protection in modifications
http://www.vbulletin.org/forum/showthread.php?t=177013
Google Maps API
http://code.google.com/apis/maps/doc…ion/index.html
Google API – Geocoding

http://code.google.com/apis/maps/doc…ion/geocoding/

Vbulletin 3.82 Post Icon Sub

May 31st, 2009 Comments off

I have a movie web site, www.freeonlinemoviesforum.com, I am currently running VBulletin 3.8.2 and I need to have an option in the Edit Thread Post Icons to put in an image url for that thread’s post icon instead of using the smiles. Therefore the poster for the movie will show up in a good quality smaller size next to every movie thread. You can see an example of the size the poster should be on www.movies-finder.com, although I would like a better quality than whats showing on that site, as you can see the images are kinda blurry. I recently upgraded VBulletin and the code that was in place has been lost and the programmer is now MIA. So for future upgrades of VBulletin I will also need to know the script so next time I upgrade I can make sure this feature of my site does not disappear again.

Thank you!

Top Programmer For Big Site

May 6th, 2009 Comments off

I’m looking for a top class programmer or a well organized company to take on a very challenging task or re-doing my busy social networking site.

I had a site built by programmers I found on a freelance website like this one however while the site seemed OK by the look of it, it was badly programmed. It’s patched together by often unrelated pieces making it increasingly difficult to update with new features, but what’s worse

Message Board Map

April 21st, 2009 Comments off

I am looking to develop a GoogleMap API.

Users create message board type discussion threads by adding a marker to the map.
Other users can then read that thread and join the discussion by clicking that marker.

The API will be automated so that adding a pinpoint marker creates the new thread, which the user names, writes etc. Other users can click the pinpoint marker and read/post on the thread.

Here are examples;
http://www.nickdebois.com/action-map

http://www.elphicke.com/chatmap/

Crawler Clone Product Site 4

April 21st, 2009 Comments off

Project Detail:
==========================================
http://www.aisa-yalp.com <— please type the doman in reverse order to check it out

What we need is clone the product information:

=================================================
##. Category ID
##. Name: Command and Conquer: Red Alert 3 Ultimate Edition
##. Factory: Electronic Arts
##. Region: No Region Protection more choices
##. Compatible with PlayStation3

Vbulletin Auto-post Script

April 3rd, 2009 Comments off

Auto Post Summary

* Database Table – Fields: Date, Content

The database table above would have information in it from an application that I had developed. I want that information published in the following manner:

If an entry in the database is the FIRST entry for that month, then a new thread should be created called: {Month} – News.

Example: Datatable: 3/1/2009, “Brand new news for March”

New Thread Title: March – News
New Thread Post Message: “Brand new news for March”

If an entry in the database is NOT THE FIRST entry for that month, then the content would be posted in the previous thread called {Month} – News.

Example: Datatable: 3/20/2009, “More news for March”

In the ‘New Thread’ from above titled: March – News, a new post is added and this post would have the following information in it:

New Post Message: “More news for March”

That’s basically it. Anyone interested??? I need this pretty fast too.

This would have to be tested on YOUR server as I do not want to give out credentials to my own :)

Crawler Clone Product Site 4

March 28th, 2009 Comments off

Project Detail:
==========================================
http://www.aisa-yalp.com <— please type the doman in reverse order to check it out

What we need is clone the product information:

=================================================
##. Category ID
##. Name: Command and Conquer: Red Alert 3 Ultimate Edition
##. Factory: Electronic Arts
##. Region: No Region Protection more choices
##. Compatible with PlayStation3

Crawler Clone Product Site 3

March 27th, 2009 No comments

Project Detail:
==========================================
http://www.twf-sz.com/english/index.asp
http://www.twf-sz.com/china/index.asp

What we need is the
1. category id (a db table to store category name)
2. product code (both old and new code)
3. product name
4. product desc
5. list price (if any)
6. weight (if any)
7. small and large product photo (included photo in the product description)
8. data need to be store in our sql format (two tables only)
9. the crawler should work EITHER

Function:
1. crawler ALL product once we run the script
2. or crawler for the product ID range or category id ranage
3. no. of thread need to be define in the URL
4. if data is already exist, replace the NEW one with the existing data.
5. image is store in folder, but NOT in db. the path can be specific in the URL
6. filename must be renamed according to our need, such as change to all lower case, please ask if you worry.

We don’t need fancy interface, you can let us simply run the code like this

http://www.example.com/crawler.php?pid_start=1&pid_end=1000&thread=40&folder=images/category1/
http://www.example.com/crawler.php?cid_start=1&cid_end=1000&thread=40&folder=images/category1/

** product name, description. will have BOTH English and Chinese (store in the same table), UTF-8 encoding is needed, so you may need to convert the big5 Chinese to UTF-8 (easy task in php)

Make sure to handle the time out problem, may be output the data if it is crawl successfully.

Server & Programming Language:
==========================================
Javascript, AJAX, MySQL DB, RH Linux Apache 2.x, PHP 5.x

TIME LIMIT:
==========================================
7 Days (included holiday) — if you can’t do it, DO NOT bid.
as we won’t care how much effort you pay. if you can’t deliver it within this period, we will simply ask scriptance cancel the project, repost it and ask for money back from escrow.

Check out feedback, we always pay on time

OTHER LIMITATION:
==========================================
No feedback or review, please DO NOT bid.

PAYMENT RULE:
==========================================
1. We will escrow 50% $$ to the selected bidder.
2. ONCE the money is PAID to the escrow (or we agree on discussion), we start to count the time.
3. Programmer need to show the code which is working in his server, then we will escrow the rest of the money.
4. Programmer NEED to SEND full code to us to test in our server. (money already paid to ESCROW)
5. We will ONLY complete the payment, if and only if the SCRIPT is done without any error IN OUR server.
6. detail documentation should be included
7. Programmer MUST keep contact with us by MSN or other messenger. So that we can keep debug the code without dealy. consider that you save time, you will get EXTRA money.

SERIOUS FOR YOU!!! THINK before BID!
==========================================
******************************
Be respectful!
Programmer takes times to do write the code and bug fix, so do I! Please allow at least 2 business days for us to test.
DO NOT hurry us to complete the payment, it won’t work!
We only pay if and only if the code is 100% done! No exception!
******************************

Please think before you bid, we willing to pay EXTRA money as BONUS. (can check our previous project, we did pay BONUS!)

But we DO NOT want to waste time, and we DO NOT need quick but dirty code.
as we may need your future help, such as upgrade.

DO NOT place the bid if you DO NOT agree to any terms above.
question is always welcome to ask.

Bear