Search results

  1. sgupta

    Message: Class 'SQLite3' not found

    In my Codeigntier Project, I have se databse.php file as below: $db[‘default’] = array( ‘dsn’ => ‘’, ‘hostname’ => ‘’, ‘username’ => ‘’, ‘password’ => ‘’, ‘database’ => ‘…/MBLRS.db’, ‘dbdriver’ => ‘sqlite3’, ‘dbprefix’ => ‘’, ‘pconnect’ => FALSE, ‘db_debug’ => (ENVIRONMENT !== ‘production’)...
  2. sgupta

    Call to undefined function exo_getglobalvariable()

    Using Codeigniter, I am trying to connect my application to a SQLITE3 Database. In the config.php file, I set baseurl as below: $config[‘base_url’] = ‘http://heserver/’; Then in the database.php, I tried to connect to the database as below...
  3. sgupta

    Full screen popup not working

    Hi, As a result of AJAX Call using Javascript, I want to show the response in a new popup window. I have written the following code, but its not working. A window opens up with the data, but it is not full screen. var w = window.open(‘about:blank’, ‘Report’, “fullscreen”); w.document.open()...
  4. sgupta

    WMIC returned Unknow

    Hi, the following code worked fine on my Windows 10 and Windows 7 PCS and returned the serial number: $uniqueKey = shell_exec('wmic bios get serialnumber 2>&1'); $uniqueKey = str_replace('SerialNumber', '', $uniqueKey); $uniqueKey = trim($uniqueKey); But it didnot work in client machine and...
  5. sgupta

    Adding application to firewall whitelist

    I created an application and when I executed it for the first time on a fresh machine, portable mysql database server refused the connection. Automatically firewall exception adding window popped up. I selected Private, Public, Work networks and clicked “Allow Access”, then restarted the...
  6. sgupta

    Image not visible on using mpdf

    I am using mpdf to show image on generated pdf, but images are not shown. I have used an image as an external resource, have tried call it by passing subfolder/imagename as src in image tag, but images are not visible. I have also spent a lot of time in uploading image to database BLOB column...
  7. sgupta

    No Support for several days. Is this how it goes even on paid subscription?

    I was too excited on making a paid subscription for Exeoutput4PHP because I though finally I got an alternate to .net for Desktop applications. But I am getting some errors and share the issues with support team and I havenot received any reply for past several days even after sending several...
  8. sgupta

    Shell_exec output gives problem in exeoutput but works fine in browser

    Above code workd fine in browser but it shows the following message when executed inside exeoutput environment: The current directory is invalid. Please help, its really urgent.
Back
Top