# Want to hire someone to make a simple discourse plugin for me

**URL:** <https://meta.discourse.org/t/want-to-hire-someone-to-make-a-simple-discourse-plugin-for-me/36257>\
**Category:** Marketplace\
**Created:** [2015年十二月2日 21:43 UTC](https://meta.discourse.org/t/want-to-hire-someone-to-make-a-simple-discourse-plugin-for-me/36257 "2015-12-02T21:43:55Z")\
**Posts on this page:** 5\
**Page:** 1

<div class="post-metadata">

**Author:** ![anon36895752](https://avatars.discourse-cdn.com/v4/letter/a/9d8465/32.png) [@anon36895752](https://meta.discourse.org/u/anon36895752)\
**Post date:** [2015年十二月2日 21:43 UTC](https://meta.discourse.org/t/want-to-hire-someone-to-make-a-simple-discourse-plugin-for-me/36257/1 "2015-12-02T21:43:55Z")

</div>

Hello,

I would like a plugin that works almost identical to the way the search page works, but slightly different. The plugin should do a search for the query, and then do a 301 redirect to the top search result. For example:  
[http://bassmusic.io/redirect?q=ableton+device+presets](http://bassmusic.io/redirect?q=ableton+device+presets)  
would give the user a 301 redirect to:  
[http://bassmusic.io/t/ableton-device-presets/7537](http://bassmusic.io/t/ableton-device-presets/7537)

Because that is the top result for:  
[http://bassmusic.io/search?q=ableton+device+presets](http://bassmusic.io/search?q=ableton+device+presets)

If anyone is interested in working on this please contact me with the amount of compensation you require and the timeline in which you could provide it. I can pay with paypal, and i will take the fee on my end so you get the full amount.

Thanks!

---

<div class="post-metadata">

**Author:** ![anon36895752](https://avatars.discourse-cdn.com/v4/letter/a/9d8465/32.png) [@anon36895752](https://meta.discourse.org/u/anon36895752)\
**Post date:** [2015年十二月3日 21:04 UTC](https://meta.discourse.org/t/want-to-hire-someone-to-make-a-simple-discourse-plugin-for-me/36257/3 "2015-12-03T21:04:14Z")

</div>

@kpfleming Thanks for letting me know.

---

<div class="post-metadata">

**Author:** ![gdpelican](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/gdpelican/32/81308_2.png) [@gdpelican](https://meta.discourse.org/u/gdpelican)\
**Post date:** [2015年十二月4日 05:55 UTC](https://meta.discourse.org/t/want-to-hire-someone-to-make-a-simple-discourse-plugin-for-me/36257/4 "2015-12-04T05:55:30Z")

</div>

I’ve completed this plugin, and made it available to anyone who wants to use it here:

[http://github.com/gdpelican/teleport](http://github.com/gdpelican/teleport)

![](https://global.discourse-cdn.com/meta/original/3X/5/e/5e8a3ce579304aea6b480b726459c5b63b7312eb.gif)

---

<div class="post-metadata">

**Author:** ![anon36895752](https://avatars.discourse-cdn.com/v4/letter/a/9d8465/32.png) [@anon36895752](https://meta.discourse.org/u/anon36895752)\
**Post date:** [2015年十二月4日 19:04 UTC](https://meta.discourse.org/t/want-to-hire-someone-to-make-a-simple-discourse-plugin-for-me/36257/5 "2015-12-04T19:04:14Z")

</div>

Thanks James!

I’ve sent you the rest of the money. Plugin works perfectly.

If anyone happens to be migrating from phpbb with SEO mod, you can do all your redirects with a simple php script and this plugin.

```
<?php
header("HTTP/1.1 301 Moved Permanently"); 

$actual_link = basename($_SERVER['REQUEST_URI']);
$parts = explode('-',$actual_link);
if($_SERVER['REQUEST_URI'] == "/"){
	$redirect_url = "http://new.forum.url";
} else if(sizeof($parts) > 1){
	array_pop($parts); // remove the -t123.html
	$redirect_url = "http://new.forum.url/teleport/search?q=".implode("+", $parts);		
} else {
	$redirect_url = "http://new.forum.url";
}
header("Location: ".$redirect_url);
?>

```

---

<div class="post-metadata">

**Author:** ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)\
**Post date:** [2016年一月20日 08:50 UTC](https://meta.discourse.org/t/want-to-hire-someone-to-make-a-simple-discourse-plugin-for-me/36257/6 "2016-01-20T08:50:20Z")

</div>


