Coder Social home page Coder Social logo

mnapoli / phpbeanstalkdadmin Goto Github PK

View Code? Open in Web Editor NEW
132.0 14.0 15.0 10.37 MB

[UNMAINTAINED] Beanstalkd admin interface

Home Page: http://mnapoli.github.com/phpBeanstalkdAdmin/

License: Other

PHP 85.67% HTML 13.07% ApacheConf 0.73% CSS 0.20% JavaScript 0.32%

phpbeanstalkdadmin's Introduction

phpbeanstalkdadmin's People

Contributors

circulon avatar mnapoli avatar specialtactics avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

phpbeanstalkdadmin's Issues

Maintaining

Hi, I would like to maintain your repository will be working on enhancements etc,
Kindly give me push access

Install assets with composer

jQuery, Bootstrap, Angular....all can be installed by composer.

Assets do not have to be persistent in the public directory, they can be installed with a post-install script.

Willing to maintain

Hey, are you still offering this?

I was planning something similar.

Would you allow me to do some rewrite? I would use a microframework instead of zend.

I am also thinking about writting a REST api.

Wrong route direction

Sorry, I'm new to PHP.

I set a link like this: ln -s ~/phpBeanstalkdAdmin/public /var/www/pbs
I realized a error request at: http://localhost/pbs/job/get-list; it show:
Not Found The requested URL /pbs/job/get-list was not found on this server.

Please show me where is my fault?

double port error on connect fail with custom port

Hi

Nice Interface, Makes my development sooo much simpler.

Ok this is a minor aesthetic issue but confusing to the beanstalk noob

if you type an invalid ip with a custom port in the server box you will get an error stating a socket connect failure to the
ip followed by the custom port followed by :11300.

eg
Socket error 60: Operation timed out (connecting to 192.168.42.10:23267:11300)

This seems to be due to the Job controller passing the server and port as a single string.

I fixed it by changing the connection setup of the getListAction() in the job controller to

    $server = $this->_getParam("server");
    $exp=explode(":", $server);
    $server = (isset($exp[0]))?$exp[0]:"localhost";
    $port =  (isset($exp[1]))?$exp[1]:"11300";
    $data = array ();
    try {
        // Connect to the server and get job list
        $messageQueue = new Pheanstalk_Pheanstalk($server,$port);

You may have a better method but this works for me

Thanks

Improve package

  • Write unit tests where/if needed
  • Improve docs
  • Improve package configurations (composer, git)

add nginx config

   location / {
        index index.html index.php;
    }
    location ~ \.php($|/) {
        fastcgi_pass   unix:/var/php/run/php-fpm.sock;
        fastcgi_index  index.php;
        fastcgi_split_path_info ^(.+\.php)(.*)$;
        fastcgi_param   PATH_INFO $fastcgi_path_info;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        fastcgi_param    PATH_TRANSLATED    $document_root$fastcgi_path_info;
        include       fastcgi_params;
    }
    if (!-e $request_filename) {
        rewrite ^/(.*)$ /index.php/$1 last;
        break;
    }

[Question] nginx support?

Hi -

I haven't had a chance to test - does this work on web servers other than Apache? The docs specifically say "apache", but I'm wondering if there's a dependency on Apache in some way that something like Nginx couldn't fulfill?

Thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.