鍍金池/ 問答/ PHP問答
心悲涼 回答

已修改,問題出在$1,$1獲取的是文件的訪問路徑。
node的實(shí)際訪問靜態(tài)文件目錄配置為/home/work/new/data/即可。

愛礙唉 回答
在my.cnf設(shè)置任何用戶登錄都可以獲得全部的權(quán)限
在[mysqld]的段中加上一句:skip-grant-tables 然后重啟mysql

然后執(zhí)行修改密碼的sql:
UPDATE user SET Password = password ('new-password') WHERE User = 'root';
flush privileges;

再次重啟mysql,這下應(yīng)該就好了

巫婆 回答

你用的什么系統(tǒng),還有pg 版本,是不是你的用戶不對,還有依賴包沒有。

臭榴蓮 回答

你這個(gè)文件應(yīng)該是直接游覽器打開吧?

可以通過配一個(gè)靜態(tài)服務(wù)器跑比如puer,然后后臺(tái)配下cors

1.跨域的話修改nginx配置,增加跨域配置

proxy_pass http://127.0.0.1:3000;

2.授權(quán)域名是后端地址,簡而言之就是調(diào)用微信授權(quán)的地址

1.php沒有編譯

2.

class B extends A
{
    public function e()
    {
        echo __CLASS__;
    }
}

等價(jià)于

class B
{
    public function f()
    {
        $this -> e();
    }
    public function e()
    {
        echo __CLASS__;
    }
}

這就是繼承的意義啊,不然我們要繼承干嘛使

懶洋洋 回答

加啥索引都一樣,你要確保你的這個(gè)數(shù)值范圍不會(huì)太大,不然即使你建立了索引,但是 mysql 依然會(huì)進(jìn)行全表掃描。如果你要更高的索引效率,建議根據(jù)實(shí)際情況,創(chuàng)建合適的組合索引,會(huì)好些。縮小可能的數(shù)值數(shù)量,避免全表查詢。

悶油瓶 回答

似乎是windows系統(tǒng)才引起的,,我解決的方法是備份了磁盤然后重裝了一個(gè)系統(tǒng),,,之前弄了好久都沒解決,

菊外人 回答

我記得nginx.conf默認(rèn)有幾條基礎(chǔ)的server規(guī)則,你把它都清掉,只留下include vhosts.conf試試~

附上我自己的配置:

nginx.conf

worker_processes 1;
error_log  logs/error.log;
pid        logs/nginx.pid;

events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile    on;
    tcp_nopush  on;
    keepalive_timeout 65;

    fastcgi_connect_timeout 300;
    fastcgi_send_timeout    300;
    fastcgi_read_timeout    300;
    fastcgi_buffer_size     128k;
    fastcgi_buffers 4 128k;
    fastcgi_busy_buffers_size 256k;
    fastcgi_temp_file_write_size 256k;

    gzip on;
    gzip_min_length  1k;
    gzip_buffers     4 32k;
    gzip_http_version 1.1;
    gzip_comp_level 2;
    gzip_types       text/plain application/x-javascript text/css application/xml;
    gzip_vary on;
    gzip_disable "MSIE [1-6].";

    server_names_hash_bucket_size 128;
    client_max_body_size     100m;
    client_header_buffer_size 256k;
    large_client_header_buffers 4 256k;

    include vhosts.conf;
}

vhosts.conf

server {
    listen       80;
    server_name  localhost;

    root    "X:/www";
    location / {
        index index.php;
        try_files $uri $uri/ /index.php?$args;
    }

    error_page 404              /404.html;
    error_page 500 502 503 504  /50x.html;

    location = /50x.html {
        root html;
    }

    location ~ \.php(.*)$  {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        include fastcgi_params;
        fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        fastcgi_param  PATH_INFO  $fastcgi_path_info;
        fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
        try_files $uri =404;
    }

    location ~ /\.(ht|svn|git) {
        deny all;
    }
}

(其實(shí)基本沒加什么,都是原來那些……)

兔寶寶 回答
server {
    listen 80;
    server_name index.test.com api.test.com admin.test.com;
    return 301 https://$host$request_uri;
}
server {
    listen 80 default_server;
    server_name _;
    return 404;
    access_log off;
}
怣痛 回答

你這個(gè)是屬于跨域不被允許的問題,我也遇到過。
當(dāng)時(shí)我的解決方法是,在config/index.js里面的proxyTable{} 設(shè)置代理解決的。
下面是我設(shè)置的三個(gè)代理你可以參考一下:
proxyTable: {

        //獲取單首歌曲信息
        '/getsongapi': {
            target: 'http://www.kugou.com/',//請求數(shù)據(jù)的地址
            secure: false,//false:請求方式為http,true:請求方式為https
            changeOrigin: true,//是否進(jìn)行跨域
            pathRewrite: {
                '^/getsongapi': '/'  //target后面的文件夾名字    
            },
        },
        //從m.kugou.com獲取數(shù)據(jù)
        '/api': {
            target: 'http://m.kugou.com/', //請求數(shù)據(jù)的地址
            secure: false, //false:請求方式為http,true:請求方式為https
            changeOrigin: true, //是否進(jìn)行跨域
            pathRewrite: {
                '^/api': '/' //target后面的文件夾名字    
            },

        },
        '/search': {
            target: 'http://mobilecdn.kugou.com/', //請求數(shù)據(jù)的地址
            changeOrigin: true,
            pathRewrite: {
                '^/search': '/' //target后面的文件夾名字    
            }

        },

        headers: {
            'User-Agent': 'Mozilla / 5.0(Linux; Android 6.0; Nexus 5 Build / MRA58N) AppleWebKit / 537.36(KHTML, like Gecko) Chrome / 55.0 .2883 .87 Mobile Safari / 537.36'
        }

    }
離人歸 回答

1.你改的文件不對吧,不是php5.6.32.ini是php.ini
2.你的服務(wù)器是什么,apache的話請重啟apache,nginx的話,請重啟php-fpm

汐顏 回答

setTimeout(code, milliseconds, param1, param2) // ie9+

或者

setTimeout((function(param1, param2){
    return function() {
        func(param1, param2)
    }
}(param1, param2)), milliseconds)
糖豆豆 回答

union,至于判斷哪個(gè)表標(biāo)題為空的事,還是交給編程語言去做吧

款爺 回答

websocket相當(dāng)于客戶端,所以需要socket服務(wù)端支持。