• 502 Bad Gateway nginx/1.1.19 at 2013年09月04日

    #1 楼 @lgn21st

    upstream myapp{
    server unix:/tmp/unicorn.hmp.sock;
    #server unix:/tmp/unicorn.rhea.sock;
    #server 192.168.1.7:9000;
    }
    server {
    listen  80;
    server_name hmp;
    client_max_body_size 4G;
    client_body_buffer_size 20M;
    access_log /home/hmpuser/deploy/shared/log/access.log;
    error_log /home/hmpuser/deploy/shared/log/error.log;
    root      /home/hmpuser/deploy/current;
    index    index.html;
    
    location / { 
         proxy_set_header X-Real-IP  $remote_addr;
         proxy_set_header  X-Forwarded-For  $proxy_add_x_forwarded_for;
         proxy_set_header  Host $http_host;
         proxy_redirect    off;
        try_files /system/maintenance.html $uri $uri/index.html $uri.html @ruby;
    }
    
    location @ruby{
    proxy_pass http://myapp;
    }
    }
    
  • #2 楼 @kennyworld 解决了 谢谢

  • PDFKit bug at 2013年08月22日

    #16 楼 @luikore 表示很头疼。已经去掉了 那三步。

  • PDFKit bug at 2013年08月22日

    #14 楼 @luikore 不是这儿的原因。还有其他可能么?

  • PDFKit bug at 2013年08月22日

    #11 楼 @luikore 为什么要把这两行去掉才能运行。。如果不去掉,应该怎么修改? application.html.erb

    <%= stylesheet_link_tag    "application", media: "all", "data-turbolinks-track" => true %>
    <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
    
  • PDFKit bug at 2013年08月22日

    #11 楼 @luikore 运行".pdf"后 一直这种状态

  • PDFKit bug at 2013年08月22日

    #9 楼 @luikore 能加好友么 我 QQ1218089628

  • PDFKit bug at 2013年08月21日

    你能不能写一个简单的例子 我用的 rails 4.0

  • PDFKit bug at 2013年08月21日

    #5 楼 @luikore 能生成

  • PDFKit bug at 2013年08月21日

    #3 楼 @luikore 不好意思 回复晚了 能

  • PDFKit bug at 2013年08月21日

    #1 楼 @luikore which wkhtmltopdf

    /usr/local/bin/wkhtmltopdf
    
  • 我现在也用到了 PDFKit 遇到了些许问题 which wkhtmltopdf

    /usr/local/bin/wkhtmltopdf
    

    config/initializers/pdfkit.rb

    config.wkhtmltopdf = '/usr/local/bin/wkhtmltopdf'
    

    剩余的和你一样 在路径加上".pdf"后不能显示任何东西。

  • XML 引用 XSL 样式 at 2013年07月24日

    #1 楼 @luikore 在 IE 客户端显示 应该怎么实现?

  • Net::HTTP 如何 删除资源 at 2013年07月05日
    uri = URI.parse(http://166.111.138.220:3000/patients/19)
    @response=Net::HTTP.post_form(uri, { '_method' => 'delete'})
    

    已解决 3Q

  • #6 楼 @chairy11 上传 zip 然后解压、、删除 zip。

  • #4 楼 @chairy11 好吧、、咱们一起努力一下 看看能不能解决掉、

  • #2 楼 @chairy11 你是怎么实现的?还是就是上传 zip 然后解压的。求指教

  • rails 浏览器 问题 at 2013年05月13日

    好的、、我试试、、3Q

  • rails 浏览器 问题 at 2013年05月13日

    在 google 下面 确定是 ajax 提交的、、换成 火狐以后 就不是 ajax 提交的了、、这个怎么解决啊?

  • rails 浏览器 问题 at 2013年05月13日
    <script>
        $(document).ready(function(){
            $('#tt').click(function(){
                alert("begin");
                event.preventDefault();
                $.ajax({
                    type: "post",
                    url:'/sessions',
                    data: {
                            name: $('#us').val(),
                            pass: $('#pa').val()                 
                    },
                    success: function(data){
                        alert("success");
                        if(data=="true"){
                            location.href ="/";
                        }else{
                            var mm=$('#myModal');
                            mm.modal('show');
                            setTimeout(function(){mm.modal('hide');},2000);
                            return false;
                        }
                    },
                    error: function(){
                        alert("error");
                    }
                });
            });
        });
    </script>
    

    火狐浏览器不实现 jquery-ajax 只弹出 begin 怎么解决?

  • rails 浏览器 问题 at 2013年05月13日

    大神们呢?求帮忙解决一下下。。。

  • rails 浏览器 问题 at 2013年05月13日

    google 和 火狐 的结果分别为

    Processing by SessionsController#create as */*
      Parameters: {"name"=>"", "pass"=>""}
    
    
    
    Processing by SessionsController#create as HTML
      Parameters: {"utf8"=>"✓", "authenticity_token"=>"hAIonBhsfCh5rZDGKR6aT1i8oRbSm/DuBVfPJNH6QHU=", "session"=>{"username"=>"zhangsan", "password"=>"[FILTERED]"}, "commit"=>"登录"}
    

    怎么让他们统一》?

  • 短信接口编码格式 at 2013年04月27日

    1 发送过去了、、它只显示英文不显示中文 2 报错 bad uri 如 3 楼所示

  • 短信接口编码格式 at 2013年04月27日
    #coding: UTF-8
    class PhoneController < ApplicationController
      #require 'net/http'
      require 'iconv'
      def pwd_phone
        @phone_number=params[:phone_num]
        @user=User.find_by_phone_number(@phone_number)
        if @user.nil?
          redirect_to :back
        else
          @pass=""
          6.times do
            @pass=@pass+rand(9).to_s
          end
          input_encode='gbk'
          out_encode='utf8'
            @str="您的身份校验码为:"+@pass+"(30分钟有效)。" 
          url="http://www.smsadmin.cn/smsmarketing/wwwroot/api/get_send/?uid=liker&pwd=0&mobile=155********&msg=ninhao"+@str
          @rs=Iconv.new(out_encode,input_encode).iconv(Net::HTTP.get(url))
          a=@rs.split(//).first
          if a.to_i==0
    
          else
            redirect_to "/phone/result?rs="+a+"&rss="+@pass+"&str="+@str
          end
        end
      end
    end
    
  • 短信接口编码格式 at 2013年04月27日

    昨天没试中文的 英文的已经能实现了、、

  • 短信接口编码格式 at 2013年04月27日

    还是不行啊!急需解决、、求帮忙、

  • 短信接口编码格式 at 2013年04月27日
    input_encode='gbk'
    out_encode='utf8'
    @str="您的身份校验码为:"+@pass+"(30分钟有效)。"
          url='http://www.smsadmin.cn/smsmarketing/wwwroot/api/get_send/?uid=****&pwd=******&mobile=155********&msg=ninhao#{URI.escape(@str)}'
          @rs=Iconv.new(out_encode,input_encode).iconv(Net::HTTP.get(URI(url)))
    
  • 短信接口编码格式 at 2013年04月27日

  • ruby 调用短信接口 at 2013年04月26日
    <% @str.split(//).each do |e|%>
        <%= e.unpack('H*').to_s+"\n" %>
    <% end %>