• R/O
  • HTTP
  • SSH
  • HTTPS

master: Resumo do Repositório

embrj master repositories


Recent Commits RSS

Rev. Hora Autor Mensagem
0c70a09 2019-05-19 03:55:53 jianghgr master xctcc/embrr
30f05a4 2019-05-19 03:54:51 jianghgr xctcc/embrr
e4e2495 2019-05-19 03:51:47 jianghgr GeorgeValergas/embrr
3d20b02 2019-05-19 03:47:59 jianghgr AstroProfundis/embrr
c63769d 2019-05-19 03:43:55 jianghgr https://github.com/DavidCarrington/dabr
55c0d82 2019-05-19 03:42:25 jianghgr https://github.com/rahuldottech/Dabr
fc06803 2015-04-30 16:54:28 Jiang embrj
d7b1595 2015-01-28 08:58:12 Jiang embrj
8f0dd3a 2014-11-19 17:31:21 Jiang embrj
a983a08 2014-11-19 17:24:30 Jiang embr

Branches

Nome Rev. Hora Autor Mensagem
master 0c70a09 2019-05-19 03:55:53 jianghgr xctcc/embrr

README.md

embrr, a fork from embr

This is a twitter web client fork from embr, mainly based on r91 and merged necessary changes until the latest revisions, updated to Twitter REST API v1.1 and have some improved features.

You can download the zip archive of current version here if you don't want to use git-clone.

How to Install

The installation of embrr is pretty much the same with embr's, you just need to get the source, rename config.sample.php in /lib to config.php, edit it with your own app information and upload it to your hosting directory.

And here are some tips you may want to know:

  • embrr requires php-curl and php-bcmath
  • while not necessarily required, php-mcrypt is recommended
  • embrr is compatible with PHP from version 5.2 to 5.5, we didn't test it on 5.1 or older versions

Installing in sub-directory

If you need to install embrr in a sub-directory of your website, say, in /embrr, you'll need to adjust the .htaccess file with /embrr/user.php and /embrr/status.php instead of /user.php and /status.php.

nginx

For nginx users, you'll need to add these lines to your nginx config file:

location / {
    if (!-f $request_filename) {
        rewrite ^/(\d+)$ /status.php?id=$1 last;
        rewrite ^/(\w+)$ /user.php?id=$1 last;
        break;
    }
}

And of course, adjust it if you are in a sub-directory.

Notes

If you're having issues changing pages or sending DMs, try modify your php.ini as follows:

precision = 24 ;Use a value lager than 19 to replace the default 14
Show on old repository browser