• Member Avatar for rproffitt
    rproffitt

    Began Watching Quiz Application for vb.NET

    Good afternoon, I'm haven't coded in a very long time, and now I have some time in my life I'm actually coding a Quiz application in vb.net using ms access …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How do I set the default content page on IIS/ASP?

    This appears to vary a little from version to version of IIS. Let's start with what Microsoft writes at https://docs.microsoft.com/en-us/troubleshoot/iis/configure-default-document-iis
  • Member Avatar for rproffitt
    rproffitt

    Began Watching How do I set the default content page on IIS/ASP?

    How do I set the default “index” landing page (also known as the default content page) on a Classic ASP file? While setting up a simple first “Hello World” style …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to chinchin09 in What are the best Marketing Promotions?

    try the link it can help
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to jwenting in Is Cloud ERP Safe

    Public cloud solutions may be cheaper and convenient in the short term, in the long term they're expensive, brittle, and leave you open to the whims of a third party …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Any Recent Resource to Understand KMP algorithm?

    Did you read the Wikipedia on these. I read one at least if not more and felt they did an excellent job of explaining how they work. But understanding how …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in What data type to choose for storing the ip address in the database

    I'm reading https://www.daniweb.com/programming/databases/threads/510152/the-best-way-to-store-ipv4-ipv6 which also reveals the INET6_ATON and maybe the other function you'll be asking about very soon.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching What data type to choose for storing the ip address in the database

    Hi, I am currently working on a banlist and I am thinking about which data type to choose for storing the IP address in the database. Will the Binary data …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How to create a PHP program for converting Number in Sentence

    This is so close to what is known as the Caesar Cipher that well, let's find 140+ samples to start with. Read https://rosettacode.org/wiki/Caesar_cipher Given this is so well done and …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching How to create a PHP program for converting Number in Sentence

    I want to know the logic of how to creat a program for converting a string number to a sentence, each number represent a alphabet, number are seperated by space. …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Any Recent Resource to Understand KMP algorithm?

    I read the Wikipedia on this and came back that I would not code this at all but use the search calls/APIs that are currently in whatever language I'm coding …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Any Recent Resource to Understand KMP algorithm?

    I am trying to understand Boyer Moore algorithm & KMP algorithm (Knuth Morris Pratt)? I tried some places like GeeksForGeeks, TutorialsPoint etc. But I have still some doubts. If you …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Any one who can solve this in c++

    This looks like homework as few of my work projects demanded the UML diagram. Let's discuss what's stopping you from doing this homework.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Any one who can solve this in c++

    Two double data fields named width and height that specify the width and height of the rectangle. The default values are 1 for both width and height. - A string …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Why my data cannot display out at php ?

    I don't have your database to test against so for now drop some debug echo or prints on those lines 11, 13 and after 15 to show where in your …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Why my data cannot display out at php ?

    <?php require_once './includes/config.php'; $con = new mysqli(DB_HOST,DB_USER,DB_PASSWORD,DB_NAME); $sql = "SELECT * FROM contact-info"; if($result = $con->query($sql)){ while($row = $result->fetch_object()){ //display record 1 by 1 printf(' <tr> <td>%s</td> <td>%s</td> <td>%s</td> <td>%s</td> …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in why data cannot come out at the sql php?

    Didn't anyone tell you to never store passwords in the clear like that? More at https://www.google.com/search?&q=never+store+passwords+in+a+database Also, with so many login, password examples on the web, why did you decide …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching why data cannot come out at the sql php?

    <?php $name = $email = $password = $repeatpass = ''; $name = $_POST['name']; $email = $_POST['email']; $password = $_POST['password']; $repeatpass = $_POST['repeatpass']; $con = new mysqli(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME); $sql …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in i want to fix vb button

    As noted in your other discussion line 2 of run.bat needs to cd to the proper folder. Use the full path. Why? When you start a shell (cmd.exe or other) …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching i want to fix vb button

    hi, I put a button to run the batch file and everything is fine But when the file works it asks for other files that are complete to run it …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Is it realistic to create a social network quickly and inexpensively?

    IMO that's too vague a question. What scale is this to be? Will you support more than one country and language?
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Is it realistic to create a social network quickly and inexpensively?

    How much can it cost to create a social network in the web?
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in i want to fix vb.net button

    Next time put that code in a reply. See the CD tools line? Change tools to the full path to where you need to go. You are not assured your …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in i want to fix vb.net button

    While you did not share the contents of run.bat my guess is the current directory does not have dw.exe. Maybe the simplest fix is to add the CD command to …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching i want to fix vb.net button

    hi, I put a button to run the batch file and everything is fine But when the file works it asks for other files that are complete to run it …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Is Cloud ERP Safe

    My brother is turning off his Quickbooks Cloud in a few months. Why? Recent price increases and he can do the accounting without their cloud. As to server reliability it's …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Is Cloud ERP Safe

    I've read such claims before and my view is it's inherently unsafe. That is, if your business ERP is its lifeblood and the cloud provider you used is shut off …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Is Cloud ERP Safe

    Hi, Please can some one tell me is Cloud ERP Safe to use for your business ? THanks
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Sadegh_2 in I want to create a campus chat group can any one help with the code please

    Hi I want to create a circle button I do not know how to create a visual cli please help
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Viki_1 in How do you pronounce certain networking terminology

    The other day I heard "C double plus"!
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Why would a script work for the developer, but not for the client?

    The list of "What could cause this?" can be long. You mention cloud, API upload so my first thoughts which are guesses since I see no code or much details …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Why would a script work for the developer, but not for the client?

    I just hired a developer in India to write an API upload script for my cloud server. He just finished it and it works fine for him, but I've tried …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to HelgaRaymond in Which browser is best for SEO?

    The best browser for SEo is Mozilla Firefox. because it gives you a good support for SEO extension and tools that you used for SEO work.
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to jwenting in iCloud unlock

    https://support.apple.com/ go there :)
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to bessieexum in What is Robots in SEO ?

    Google show this massage for you, The robots. txt file, also known as the robots exclusion protocol or standard, is a text file that tells web robots (most often search …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to bessieexum in What are the best Marketing Promotions?

    The Best Advertising Campaigns of All Time (And What Made Them Successful ) Nike: Just Do It. Ad Campaign: Print, Television, Internet. Source: brandchannel. Coke: Share a Coke. Ad Campaign: …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in how to add audio to anacces database

    Are you sure you can't use Microsoft's supplied text to speech system? Noted at https://en.wikipedia.org/wiki/Microsoft_Speech_API
  • Member Avatar for rproffitt
    rproffitt

    Began Watching how to add audio to anacces database

    I have an access Database with Chinese and German words. How can I had their audio prononciation wich I get from Forvo or Google translate?
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in I'm using cPanel and would want to backup my website.

    I don't believe you here. 200 MB today would be well under a minute to backup. https://www.quora.com/How-long-will-it-take-to-transfer-a-1-GB-file-size-on-a-USB-2-0-and-a-USB-3-0-drive notes that a mediocre USB drive is a slow 10 MB per second …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching I'm using cPanel and would want to backup my website.

    Everything is in order, but it is going to take a long time to complete my backup. I'm certain my file is not much larger than it was at the …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Renu_10 in Which browser is best for SEO?

    According to me google chrome is best for seo.i am also use this.
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to ramasmith in What are the best Marketing Promotions?

    Facebook advertisement is the best marketing promotion.
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to chinchin09 in What are the best Marketing Promotions?

    i have been trying to use this linkcollider and its a good SEO
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Handling credit card info on site

    I worry here. That is, how else would you get the information needed to process the payment? Answer: It's legal to be paid for a product or service.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Handling credit card info on site

    Hi I'm using European payment provider which is providing me API to communicate with them. There is a step where I need to ask from a buyer credit card info …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How do I pull ascii files or folders off a server I am remoted into?

    I can't guess the host OS, configuration and more but for us we would just FTP the files out to a new location, email them or something else. I can't …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching How do I pull ascii files or folders off a server I am remoted into?

    How do I pull ascii files or folders off a server I am remoted into? For the first time in my life as a software developer I am tasked to …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in I want to find a reverse programmer

    Since you mention cooperate, I take it this is an agreed upon data share so no programmer would be required. If this is to get data without the operator's consent …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching I want to find a reverse programmer

    I want to find a programmer, grab the data of Chinese operators, web visitor numbers, and cooperate. This is a very good business.
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in time difference in php mysql

    That line 258 may need something like https://newbedev.com/how-to-convert-mysql-timestamp-to-date-time-in-php As I don't know what your MySQL data looks like all I can do is guess that you'll have to keep $row->exstdate …

The End.