discourse-adplugin/README.md

158 lines
5.7 KiB
Markdown
Raw Normal View History

2015-09-02 20:18:59 -04:00
# Official Discourse Advertising Plugin
2015-09-02 20:18:59 -04:00
This is the official Discourse advertising plugin. It allows advertisements to be served by supported advertising platforms for users with a Discourse forum.
2015-09-02 20:37:25 -04:00
**Supported Discourse Version**: 1.4</p>
**Supported Ad Platforms**: [Google Adsense](http://www.google.com.au/adsense/start/why-adsense.html), [Google Double Click for Publishers](https://www.google.com/dfp)
2015-09-02 20:18:59 -04:00
## Installation
2015-09-02 20:18:59 -04:00
There are three sets of installation instructions:
2015-09-02 20:42:45 -04:00
1. **Docker Installation - Recommended** - If you have a live Discourse forum and minimal programming experience.
2015-09-02 20:18:59 -04:00
2. Non-Docker Installation - If you have experience with programming. This will set up this plugin as a git submodule in your Discourse directory.
3. Local Development - If you want develop locally and have experience with programming. This will set up this plugin as a symlinked file in Discourse's plugin directory.
### 1. Docker Installation - Recommended
As seen in a [how-to on meta.discourse.org](https://meta.discourse.org/t/advanced-troubleshooting-with-docker/15927#Example:%20Install%20a%20plugin), simply **add the plugin's repo url to your container's app.yml file**:
```yml
hooks:
after_code:
- exec:
cd: $home/plugins
cmd:
- mkdir -p plugins
- git clone https://github.com/team-melbourne-rgsoc2015/discourse-adplugin.git
```
Rebuild the container
```
cd /var/docker
git pull
./launcher rebuild app
```
2015-09-02 20:18:59 -04:00
### 2. Non-docker installation
* Run `bundle exec rake plugin:install repo=http://github.com/team-melbourne-rgsoc2015/discourse-adplugin` in your discourse directory
* In development mode, run `bundle exec rake assets:clean`
* In production, recompile your assets: `bundle exec rake assets:precompile`
* Restart Discourse
### 3. Local Development Installation
* Clone the [Discourse Adplugin Repo](http://github.com/team-melbourne-rgsoc2015/discourse-adplugin) in a new local folder.
* Separately clone [Discourse Forum](https://github.com/discourse/discourse) in another local folder.
* In your terminal, go into Discourse folder navigate into the plugins folder. Example ```cd ~/code/discourse/plugins```
* Create a symlink in this folder by typing the following into your terminal
:
```
ln -s ~/whereever_your_cloned_ad_plugin_path_is .
For example: ln -s ~/discourse-plugin-test .
```
* You can now make changes in your locally held Discourse Adplugin folder and see the effect of your changes when your run ```rails s``` in your locally held Discourse Forum files.
## Usage
2015-09-02 20:18:59 -04:00
Note TODO:
After installation users likely want to:
- Choose platform.
- Input ad codes + do a few other things. - DFP in detail with custom targeting - write guide on this.
- Display ad.
* Go to Admin > Settings > Ad Plugin
2015-07-24 00:58:21 -04:00
* Add DFP link into code boxes, input width and height based on Google Ad Ad units. Here are some sample ad codes that you can put in the input into the settings. But remember:
⋅⋅* Each slot requires a different sample ad code. That means, you cannot put the same ad sample ad codes multiple times in different slots. They won't appear.
⋅⋅* Don't click on the ad.
⋅⋅* On the last stroke of midnight, the magic will wear off. Make sure you leave the ball before then.
2015-08-09 19:26:21 -04:00
*Please test both plugins individually* - don't symlink both together, instead test them in isolation.
2015-08-09 19:28:19 -04:00
Input 3 parts - ad code (topmost box), width, height. And be sure to untick the disable box. Then, refresh the page for the inputs to take effect, and go to the ad location.
2015-08-09 19:26:21 -04:00
2015-08-09 19:28:19 -04:00
Usually google sizes to input are (width*height) 300*250 or 728*90 (best) respectively. Input your dfp ad code.
2015-08-09 19:26:21 -04:00
The namings in settings are with reference to the plugin outlets created by Discourse.
2015-08-09 19:28:19 -04:00
`dfp_topic_list_top_code`: ad will appear at the header of Discourse homepage
2015-08-09 19:26:21 -04:00
2015-08-09 19:28:19 -04:00
`dfp_topic_above_post_stream_code`: ad will appear at the header of all Discourse forum topics
2015-08-09 19:26:21 -04:00
2015-08-09 19:28:19 -04:00
`dfp_topic_above_suggested_code`: ad will appear at the footer above suggested topics of all Discourse forum topics
2015-08-09 19:26:21 -04:00
2015-08-09 19:28:19 -04:00
`dfp_post_bottom_code`: ad will appear on the Nth post (be sure to input N in the bottom-most box called
2015-08-09 19:26:21 -04:00
2015-08-09 19:28:19 -04:00
`dfp_nth_post_code` and ensure your total number of posts in topic >=N. For example, if you input N = 4, the forum should have at least 4 replies/posts)
2015-08-09 19:26:21 -04:00
2015-07-24 00:58:21 -04:00
### Sample DFP Ad Codes:
1. /142953540/PostandCourier/Postandcourier.com/News/Leaderboard_Bottom
2. /6355419/Travel/Europe/France/Paris
3. /1047893/kv_home_bigbox1
2015-07-27 19:39:49 -04:00
This is how it looks like when you put it in site settings.
2015-07-27 20:15:01 -04:00
(Images here aren't showing atm - but you can go to [this link to see the ad codes and what the ads look like when they're loaded](https://meta.discourse.org/t/rails-girls-soc-banter/26875/53)).
2015-07-27 19:39:49 -04:00
2015-07-27 19:52:04 -04:00
![](https://www.dropbox.com/sc/cyouv2pis3o4gx4/ad-codes-p1.png?dl=1)
2015-07-27 19:39:49 -04:00
2015-07-27 19:52:04 -04:00
![](https://www.dropbox.com/sc/5z7sl2hdmtzv1ho/ad-codes-p2.png?dl=1)
2015-07-27 19:39:49 -04:00
This is how the ads should display is all is working fine.... (ads also change so don't worry if your ads look different).
**Location: Topic list top**
2015-07-27 19:52:04 -04:00
![](https://www.dropbox.com/sc/cbu0otlt2zl5kdw/ad-display-1-discovery-list.png?dl=1)
2015-07-27 19:39:49 -04:00
**Location: Topic top**
2015-07-27 19:52:04 -04:00
![](https://www.dropbox.com/sc/cdx0duqkco7rs8s/ad-display-2-topic-top.png?dl=1)
2015-07-27 19:39:49 -04:00
**Location: Above Suggested Topic**
2015-07-27 19:52:04 -04:00
![](https://www.dropbox.com/sc/cnkialxmcfust55/ad-display-3-above-suggested.png?dl=1)
2015-07-27 19:39:49 -04:00
2015-07-24 00:58:21 -04:00
* Finally, if you wish to disable the ad, tick ad disabling box
# Ad Providers Supported
* Google DFP
2015-07-28 20:48:07 -04:00
# Potential Ad Sizes
Restricted container:
Max H: 300 or lower of ad, W: 1000 left align.
Topic list top, Topic top, Above Suggested
- 728*90
- 336*280
- 300*250
- 960*90
- 468*60
- 234*60
- 125*125
- 180*150
- 200*200
- 250*250
Post Bottom
Max H: 90 or lower of ad, W: 1000 left align.
- 728*90
- 960*90
- 468*60
- 234*60
## License
2015-09-02 20:18:59 -04:00
GPL v2 or MIT?