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

    No, we havent executed the command on client side. As you said parameter 3 will also return hash, is there no way to get the original hard disk serial number?
  5. sgupta

    Adding application to firewall whitelist

    please reply with a solution
  6. 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...
  7. sgupta

    Adding application to firewall whitelist

    Hi, I used 3307
  8. sgupta

    Image not visible on using mpdf

    Well my problem was solved with data subfolder for now as I had to deliver the first version today. I will surely give your code a try and revert back.
  9. sgupta

    Image not visible on using mpdf

    Hi @kim so you mean if I want to use any folder other than virtual “Data” one, your solution has to be implemented. Otherwise, things will work fine with Data folder? If there is any other issue that can arise while using the data folder without using an absolute path? I am using following...
  10. 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...
  11. sgupta

    Image not visible on using mpdf

    I found a working solution I think. I need to create a data folder and place the png file inside that data folder. Then, on web page I use the logo as under: <img width="40px" src="logo.png"/> But in mpdf generation code, I need to write: <img width="60px"...
  12. sgupta

    Image not visible on using mpdf

    In your sample code, it uses exo_unpackvirtualfile which means the image is expected to be present within the exe file. But here in my application, user will upload an image which needs to be displayed. Since users can upload different images, I cannot store the image within exe. I can either...
  13. sgupta

    Image not visible on using mpdf

    My issue is : image is still not visible on pdf and you are suggesting a solution regarding file download? Are you kidding me? Where did I say that my pdf is not getting downloaded. When I say image is not visible on pdf, it means there is no problem in pdf generation … Still, I tried your...
  14. 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...
  15. 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...
  16. sgupta

    Shell_exec output gives problem in exeoutput but works fine in browser

    Hi, The reply was too late but I am happy that Exeoutput can accomplish that. However, I also found another way out. If we set a manual location for the Data folder in settings, wmic starts working with perfection. I have done it in Windows 10 pro, havent tried it in other OS versions. If...
  17. 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