Bez popisu

Desobediente Civil c669259c75 Adicionei novas instruções před 8 roky
css 340d32c77a proxy blocked domains handling před 10 roky
inc f48314fcac blocked domains handling - redirection to google cache před 10 roky
js 7e2e19eb63 client side decoded original link před 10 roky
lib 9c25f97c75 Desistindo de ser teimoso před 8 roky
.gitignore e83c0df701 Reorganizando variáveis před 8 roky
.htaccess 258206b45a initial před 10 roky
LICENSE b8328b768b Initial commit před 10 roky
README.md c669259c75 Adicionei novas instruções před 8 roky
ajax-loader.gif 258206b45a initial před 10 roky
apple-touch-icon-precomposed.png 258206b45a initial před 10 roky
capture.sh e556a3030f Agora sim cagada consertada před 8 roky
favicon.ico 258206b45a initial před 10 roky
humans.txt 258206b45a initial před 10 roky
index.php 45c6719ac1 Adicionando variáveis em arquivo separado před 8 roky
optimize.sh 7436a4abd9 sliced-images-new-feature před 10 roky
private.php e83c0df701 Reorganizando variáveis před 8 roky
proxy.php 340d32c77a proxy blocked domains handling před 10 roky
robots.txt 258206b45a initial před 10 roky
schema.sql b7cdc6de32 minor fix před 10 roky
slice.sh 7436a4abd9 sliced-images-new-feature před 10 roky
static.php a728bd57a4 Variável no lugar errado před 8 roky

README.md

naofo.de

url shortener which creates a print. for denouncing despicable content without giving it views or pagerank / it's all about http://wkhtmltopdf.org/

simple installation guide for ubuntu 14.04

dependencies:

  • python
  • apache
  • php5
  • php5-curl
  • php5-mysql
  • mysql
  • wkhtmltoimage
  • imagemagick

other requirements:

  • recaptcha
  • google analytics

steps:

  1. add apache variables in /etc/apache2/envvars:

    export naofode_recaptchakey='???'
    export naofode_dsn='mysql:host=localhost;dbname=???'
    export naofode_dbuser='???'
    export naofode_dbpass='???'

  2. alter recaptcha site key in index.php

  3. alter analytics javascript in index.php

  4. create database table:

    mysql> source /path/to/schema.sql

  5. edit files static.php and private.php to match your local configuration.

    also you'll have to change line 12 of file lib/Thrash.class.php to suit your environment.

  6. alter <Directory /var/www/> in /etc/apache2/apache2.conf:

    AllowOverride All

  7. execute

    mkdir /var/www/html/prints

  8. execute

    chown www-data:www-data /var/www/html/prints

  9. execute

    a2enmod rewrite

  10. execute

    service apache2 restart

Troubleshooting

xvfb

On a headless server I had to use xfvb as mentioned here and here.

On a debian based system you have to: sudo apt-get install xvfb

Otherwise, the capture.sh file should be changed.