Search results

  1. wayos

    Again the activation error

    Waiting for a position, I can not compile my scripts.
  2. wayos

    Wayos 3.5 2019 + ExeOutput for PHP 2018

    The system is for control of computer technical assistance. I changed many things, fix many bugs and so on. Personnel here is the final version of my program. Developed using: PHP 7.2,Sqlite, Jquery, CSS3, HTML 5. Plugins: sweetalert2, modernizr, jquery.magnific-popup, jquery-ui...
  3. wayos

    Again the activation error

    Again the activation error. Even if I disable it on the machine. I am using Windows 10 Build 18860 Insider. I think it has to do with the update every time a new build is released. Is anyone using the latest insider build? I do not disable it when it has a new build, can it be? Can you confirm...
  4. wayos

    Display the build number on my system

    In php it’s great! 👏 Thank you.🙂
  5. wayos

    Display the build number on my system

    I would like to display the build number on my system, is it possible? (php? javascript?). @gdgsupport Thank you.
  6. wayos

    V2019 Hanging When Compile

    Come on… What operating system are you using? is up to date. Tested with another operating system? Win10. Are you executing the program as an administrator? if yes uncheck or tick I had some mistakes in the beginning (with the new version, not the last since my maintenance ended) I had to...
  7. wayos

    SQLite and Chromium 70.x

    The worst that my maintenance ended =( @gdgsupport will this fix be free or only for those who have active maintenance? Tencent researchers notified those responsible for SQLite months ago and a fix was released on December 1 with the release of SQLite 3.26.0. Google Chrome 71 also brings the...
  8. wayos

    Option for user to clear cache folder

    If you are going to use ajax (jquery) just use the cache: 1 ------------------------------------------ $.ajaxSetup({ cache: false; }); 2 -------------------------------------------- OR jQuery.cachedScript = function( url, options ) { // Allow user to set any option except for dataType...
  9. wayos

    Option for user to clear cache folder

    The correct way for an image not to be cached is to use a key for image, for example: Example : <?php $key = rand(0,35); $imagekey = “&key=”.$key; echo “< img src=‘mydir/img/img.jpg$imagekey’ >” ?> I do not know if that’s your question … when I work with image, I like using the key to remove...
  10. wayos

    SQLite PDO Database Path

    The backslash (\) I see you have an error the correct would be: F:\EXEOutProjects\English101\Software\Data\db2\salespage.sqlite3 Fix (In the script you can put) define(‘DB_PATH’, $_SERVER[‘DOCUMENT_ROOT’].‘Data\db2\salespage.sqlite3’); $conn= new PDO(‘sqlite:’.DB_PATH); One bar can ruin...
  11. wayos

    SQLite PDO Database Path

    I tested it here and it worked(php 7.2). define('DB_PATH', $_SERVER['DOCUMENT_ROOT'].'/salespage.sqlite3'); $conn= new PDO('sqlite:'.DB_PATH);
  12. wayos

    SQLite PDO Database Path

    You could test: $dbname = $_SERVER[‘DOCUMENT_ROOT’].’/Data/db2/salespage.db’; $conn = new PDO(‘sqlite:$dbname’); Data being your virtual folder defined in the settings. GoodLuck
  13. wayos

    Activation Error

    Thank you, everything working. I did not know I had to deactivate it from other machines.
  14. wayos

    Activation Error

    When I try to activate I get the following message: 😟 As I work with multiple systems sometimes I have to reinstall windows and install the programs again, I’m getting this message. I also did not know that it has a maximum activation number … I do not agree with that. I do several tests on...
  15. wayos

    PHP-cgi stop working

    Thank you, I’m going to do some testing. ^^
  16. wayos

    PHP-cgi stop working

    Yes, they use updated windows 7 there is no way to have much information As soon as I have time I will install windows 7 on a virtual machine to try to make a simulation.
  17. wayos

    PHP-cgi stop working

    Hello, @gdgsupport Some clients of mine have complained that this message is received: PHP-cgi stop working … and this happens randomly, so far in (Windows 7) when the program is started. I’m using 2018.1
  18. wayos

    Need help on exeoutput

    Explaining, the program uses CEF which is the heart, so soon they are not the same thing, except rendering… We can not count on all chrome options because chrome only uses the webkit engine the print options, favorites etc are chrome things, have developed only for the browser! Did you get it...
  19. wayos

    Need help on exeoutput

    When the issue is antivirus is complicated, the right is you provide a log to the dev. I’ve never had problems with antivirus You can use my script for silent print, the new version of exeoutput has a little delay does not come to harm. It normally works cookies. Good luck
  20. wayos

    Heserver domain name

    I’m sorry, only now that I’ve been to see that only works on linux. This one I tested and works normal on local server (win). https://gist.github.com/odan/cedbd5431544d7bdd9e5d4072db9fe7c I think with this example you can learn to work with system information, using php exec. ^^
Back
Top