標籤

BAT (38) shell (34) Virtual Machine (33) Xubuntu (29) acfs (25) PHP (24) CentOS (21) Virtul Box (20) 編輯器 (17) 資料庫 (15) lubuntu (13) windows (13) CPP (12) ubuntu (12) chrome (11) laravel (10) Docker (9) Python (9) 5A88 (7) VMware (6) 資料結構 (6) Javascript (5) Node (5) Proxmox VE (5) 公告系統 (5) 程式積木 (5) Android Studio (4) ANN (3) OB2D2016x64 (3) Xoops (3) clonezilla (3) samba (3) 公文 (3) 其他 (3) 硬體 (3) API (2) Android (2) AppInvent2 (2) Html (2) Hyper-V (2) Nas (2) botnet (2) mbot (2) swift (2) wordpress (2) 樣板 (2) 防火牆 (2) AD的應用 (1) Ansible (1) Arduino (1) CSS (1) GitLab (1) HA Proxy (1) LegoEV3 (1) PowerShell (1) Scratch (1) VM (1) XenServer (1) kotlin (1) linuxmint (1) lxc (1)

2018年11月21日 星期三

phpmyadmin 出現錯誤訊息 count(): Parameter must be an array or an object that implements Countable 的錯誤訊息

問題描述:

解決方案:
1.編輯 /usr/share/phpmyadmin/libraries/sql.lib.php
   $sudo pico /usr/share/phpmyadmin/libraries/sql.lib.php
   將(count($analyzed_sql_results['select_expr'] == 1)
   修改成
       ((count($analyzed_sql_results['select_expr']) == 1)
2.重啟apache2
   $sudo service apache2 restart

參考文章:
1.https://stackoverflow.com/questions/48001569/phpmyadmin-count-parameter-must-be-an-array-or-an-object-that-implements-co

2018年11月20日 星期二

laravel 5.7 自己寫 [ 登出 ],出現錯誤訊息的解決方案

1.問題描述:
(1)寫在網站目錄/routes/web.php

#登出
Route::post('logout', 'Auth\LoginController@logout')->name('logout');

(2)寫在網站目錄/resources/views/layouts/navbar.blade.php

<li class="nav-item">
                <a class="nav-link" href="{{ route('logout') }}" >[ 登出 ]</a>
</li>

(3)出現的錯誤訊息:

2.解決方案:
(1) 變更方法為:將post 改為 get 

      寫在 網站目錄/routes/web.php
       #登出
      Route::post('logout', 'Auth\LoginController@logout')->name('logout');

    改寫成

      #登出
      Route::get('logout', 'Auth\LoginController@logout')->name('logout');
   其餘不用變更

(2) 變更方法為:增加javascript 與 form
     寫在網站目錄/resources/views/layouts/navbar.blade.php

    <li class="nav-item">
                <a class="nav-link" href="{{ route('logout') }}" >[ 登出 ]</a>
    </li>

改寫成

    <li class="nav-item">
        <a class="nav-link" href="{{ route('logout') }}"  onclick="event.preventDefault();
                                                     document.getElementById('logout-form').submit();">[ 登出 ]</a>
        <form id="logout-form" action="{{ route('logout') }}" method="POST" style="display: none;">
           @csrf
        </form>
    </li>


2018年11月13日 星期二

如何在 windows 7 及其以上的桌機實現mBot simulation in V-REP


感恩鹿鳴國中黃天韻組長指導,在 windows 7 及其以上的桌機實現mBot simulation in V-REP

壹.請到https://github.com/NenadZG/mBot-simulation 下載程式,解壓縮後可得
      mBot-simulation-master資料夾名。 mBot-simulation-master資料夾內,有個
     mBot.ttm 與V-REP scenes 資料夾。這在肆.設定:(2)V-REP會用到 


貳.在此頁面再往下,會看到
  或是到這些網址下載
  (1)V-REP
       http://www.coppeliarobotics.com/downloads.html

   (2)mBlock
       http://www.mblock.cc/software-1/mblock/mblock3/#Download

   (3)VSPE
       http://www.eterlogic.com/Downloads.html

參.安裝下載下來的程式。

肆.設定
     (1)VSPE:建立COM9
          開啟程式過程中,要選擇 否,即可。




     (2)V-REP 
          file->load model
          
          到mBot-simulation-master資料夾內找到  mBot.ttm後,開啟。

          載入後,依下圖,找到mbotScript旁的|||,並點選。
          設定COM9
          *更換場景:File->Open scene
選擇mBot-simulation-master資料夾內的V-REP scenes資料
                                夾,內有Demo room 1.ttt、Demo room 2.ttt、Line follower.ttt。
                                選擇一個後->開啟


     (3)設定mBlock
          確認下列事項

          寫完程式,點選綠色旗子
          如下圖,到V-REP 按下play符號,就可看到mbot很快筆直衝出。
     
參考文章:
1.http://touchclassroom.blogspot.com/2017/12/mbot-simulator-mblock-mbot-simulation.html

2.https://github.com/NenadZG/mBot-simulation

在 Windows 10 x64 1909版,使用BAT快速安裝公文系統與人事服務網(自然人憑證)版

相關內容移往 https://skjhcreator.blogspot.com/2021/02/windows-10-x64-1909bat.html