Search results

  1. P

    Blank page when using self signed certificate on wamp

    Thank you. that worked.
  2. P

    Blank page when using self signed certificate on wamp

    i have wamp installed on windows with self signed certificate on it my exeoutput application home page has an iframe like this <object class="objects" data="https://192.168.29.60/" type="text/html"></object> when i load the exe, the page displays a blank. if i directly open the html file with...
  3. P

    Blacklist / whitelist urls allowed in application

    here is a way to block multiple website function OnBeforeNavigate(NewURL, TargetFrame: String): Boolean; begin // Convert NewURL to lowercase for case-insensitive comparison NewURL := AnsiLowerCase(NewURL); // Block Dropbox, Google, and other specific sites if (Pos("dropbox", NewURL) >...
  4. P

    Phishing url control

    here is a way to block multiple websites function OnBeforeNavigate(NewURL, TargetFrame: String): Boolean; begin // Convert NewURL to lowercase for case-insensitive comparison NewURL := AnsiLowerCase(NewURL); // Block Dropbox, Google, and other specific sites if (Pos("dropbox", NewURL)...
  5. P

    Blacklist / whitelist urls allowed in application

    I have a button that opens up a new browser <button onclick="window.open('https://www.google.com', '_blank')">Google</button> Is there a way i can restrict people from going to other urls from the application. like i want to create a whitelist of urls which are allowed to be opened. maybe in...
  6. P

    PHP 7.2 Thread safe

    Same here, I am also looking for pthreads extension for multi threading in php. which requires pthread and threadsafety to operate. please look
  7. P

    Connect to external server

    I am trying to connect my application to an external localhost or server . i have made an index.html file with iframe to connect like this but i get cross origin errors sometimes. is there a way to connect the exe to external server to get the content <object name="search_iframe"...
Back
Top