davesteele / comitup

Bootstrap Wifi support over Wifi
https://davesteele.github.io/comitup/
GNU General Public License v2.0
320 stars 54 forks source link

Not List SSID #99

Closed veyselolgun closed 4 years ago

veyselolgun commented 4 years ago

Hello, I am using Comitup 1.3.1-1 and I am able to connect any network (via sudo comitup-cli ) (in Raspberry) I am trying to monitoring all ssid in network but it is not monitoring Is this relevant comitup Does anyone have an idea ?


elseif($islem == 'connect') {
       ?>
       <div class="container">
           <div class="row">
               <div class="mtop40">
                   <div class="col-md-4 col-md-offset-4 text-center">
                       <h1 class="text-uppercase mbot20">WiFi Connection</h1>
                   </div>
               </div>
           </div>
           <div class="container">
    <? if ($_GET['ssid'] <> '') { ?>
     <div class="col-md-4">
         <h3>Connection to <?=$_GET['ssid'];?></h3>
         <p>
             Type the password and press the Connect button to connect this device to <b><?=$_GET['ssid'];?></b>.<br>

             This will terminate the current hotspot and try connecting to <b><?=$_GET['ssid'];?></b> for access.<br>

             If the connection fails, this hotspot will be re-created.<br>
         </p>
         <form method="post" action="?islem=connect">
             <input type="hidden" name="ssid" value="<?=$_GET['ssid'];?>">
             <div class="control-row">
                 <label>Password : </label>
                 <input type="password" name="password" class="form-control">
             </div>
             <div class="control-row" style="margin-top: 10px; padding-top: 10px;">
             <input type="submit" value="Connect" class="btn btn-info">
             </div>
         </form>
     </div>
     <? } ?>
davesteele commented 4 years ago

NetworkManager has trouble maintaining the available AP list via an interface which is serving an AP. The list is more complete if you add another Wifi interface using a USB device.

veyselolgun commented 4 years ago

Thank you, i will keep this. And after COVID-19 i will try this (Because no work currently)