ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Researching OpenDental Software

    IT Discussion
    opendental dentist software
    10
    40
    1.7k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • F
      flaxking
      last edited by

      There's so many industries with niche LoB applications that are ripe for a shake-up by modern competitors. The issue is getting the business knowledge in order to make a competing product.

      scottalanmillerS 1 Reply Last reply Reply Quote 1
      • scottalanmillerS
        scottalanmiller @flaxking
        last edited by

        @flaxking said in Researching OpenDental Software:

        There's so many industries with niche LoB applications that are ripe for a shake-up by modern competitors. The issue is getting the business knowledge in order to make a competing product.

        And getting the customers to care. In many cases, just because you make a better mouse trap, doesn't mean that someone will buy it.

        F DashrenderD 2 Replies Last reply Reply Quote 0
        • F
          flaxking @scottalanmiller
          last edited by flaxking

          @scottalanmiller said in Researching OpenDental Software:

          @flaxking said in Researching OpenDental Software:

          There's so many industries with niche LoB applications that are ripe for a shake-up by modern competitors. The issue is getting the business knowledge in order to make a competing product.

          And getting the customers to care. In many cases, just because you make a better mouse trap, doesn't mean that someone will buy it.

          I've seen the prices they are paying, I don't think it would be hard to build a cheaper mouse trap too.

          scottalanmillerS 1 Reply Last reply Reply Quote 0
          • scottalanmillerS
            scottalanmiller @flaxking
            last edited by

            @flaxking said in Researching OpenDental Software:

            @scottalanmiller said in Researching OpenDental Software:

            @flaxking said in Researching OpenDental Software:

            There's so many industries with niche LoB applications that are ripe for a shake-up by modern competitors. The issue is getting the business knowledge in order to make a competing product.

            And getting the customers to care. In many cases, just because you make a better mouse trap, doesn't mean that someone will buy it.

            I've seen the prices they are paying, I don't think it would be hard to build a cheaper mouse trap too.

            Oh I know, but even cheaper often doesn't matter. There is a pain to switching, and that alone is more than many will contemplate, regardless of potential profits.

            1 Reply Last reply Reply Quote 1
            • IRJI
              IRJ
              last edited by

              PHI complicates things ALOT, too.

              1 Reply Last reply Reply Quote 0
              • DashrenderD
                Dashrender @scottalanmiller
                last edited by

                @scottalanmiller said in Researching OpenDental Software:

                @flaxking said in Researching OpenDental Software:

                There's so many industries with niche LoB applications that are ripe for a shake-up by modern competitors. The issue is getting the business knowledge in order to make a competing product.

                And getting the customers to care. In many cases, just because you make a better mouse trap, doesn't mean that someone will buy it.

                This is so true. It's not simply buying the new software, it's moving the old data over, or the customer now having to deal with two systems, for god knows how long... it's generally pretty damned expensive to change systems...

                scottalanmillerS 1 Reply Last reply Reply Quote 0
                • scottalanmillerS
                  scottalanmiller @Dashrender
                  last edited by

                  @Dashrender said in Researching OpenDental Software:

                  @scottalanmiller said in Researching OpenDental Software:

                  @flaxking said in Researching OpenDental Software:

                  There's so many industries with niche LoB applications that are ripe for a shake-up by modern competitors. The issue is getting the business knowledge in order to make a competing product.

                  And getting the customers to care. In many cases, just because you make a better mouse trap, doesn't mean that someone will buy it.

                  This is so true. It's not simply buying the new software, it's moving the old data over, or the customer now having to deal with two systems, for god knows how long... it's generally pretty damned expensive to change systems...

                  And don't forget learning curve.

                  DashrenderD 1 Reply Last reply Reply Quote 0
                  • DashrenderD
                    Dashrender @scottalanmiller
                    last edited by

                    @scottalanmiller said in Researching OpenDental Software:

                    @Dashrender said in Researching OpenDental Software:

                    @scottalanmiller said in Researching OpenDental Software:

                    @flaxking said in Researching OpenDental Software:

                    There's so many industries with niche LoB applications that are ripe for a shake-up by modern competitors. The issue is getting the business knowledge in order to make a competing product.

                    And getting the customers to care. In many cases, just because you make a better mouse trap, doesn't mean that someone will buy it.

                    This is so true. It's not simply buying the new software, it's moving the old data over, or the customer now having to deal with two systems, for god knows how long... it's generally pretty damned expensive to change systems...

                    And don't forget learning curve.

                    Exactly.

                    I'm having this exact with with a client now. They have a 20+ year old AS/400, yes a real AS/400 that is still running their back end systems... I've been talking to them for 5+ years to upgrade to at least a current version of their system or move to something else... still waiting.

                    1 Reply Last reply Reply Quote 0
                    • scottalanmillerS
                      scottalanmiller
                      last edited by

                      Linux MySQL Install....

                      MySQL

                      Install MySQL from RPM or install package that best matches system from http://dev.mysql.com/downloads/mysql/5.5.html.
                      Setup grant tables on Linux by running the following commands. This is documented at: http://dev.mysql.com/doc/refman/5.5/en/grant.html.

                      GRANT ALL ON *.* TO 'root'@'%' IDENTIFIED BY '';GRANT ALL ON *.* TO 'root'@'localhost' IDENTIFIED BY '';
                      

                      Edit the MySQL configuration file named my.cnf to disable the use of innoDB tables by default. The my.cnf file is usually located at the path /etc/init.d/my.cnf. Add the following text on its own line: default-storage-engine=MyISAM​.

                      When done, the my.cnf file should look very similar to the my.ini file that's described on MySQL Server Variables. There should not be a lot of additional clutter.

                      Copy a blank or current OpenDental database to the Linux server.

                      Each Linux installation might have a different MySQL data location or path. The database path is documented in my.cnf and is defined on a line starting with datadir=.

                      Copy the database files to a folder that you create in the data directory. For example, if the path is /var/lib/mysql and opendental is the name of your new database, copy to /var/lib/mysql/opendental/.

                      Ensure the newly created database folder has permissions for MySQL to access the files. Either set the owner to the mysql user or set the folder permissions to allow access to all users. Open a terminal window and type one of the two commands (change the directory path to match your actual database path): chown -R mysql:mysql /var/lib/mysql/opendental or chmod -R 777 /var/lib/mysql/opendental.

                      1 Reply Last reply Reply Quote 0
                      • scottalanmillerS
                        scottalanmiller
                        last edited by

                        So in the above directions, where the heck are we supposed to get the "blank" database from? WTF

                        DashrenderD stacksofplatesS 2 Replies Last reply Reply Quote 0
                        • DashrenderD
                          Dashrender @scottalanmiller
                          last edited by

                          @scottalanmiller said in Researching OpenDental Software:

                          So in the above directions, where the heck are we supposed to get the "blank" database from? WTF

                          I was wondering that myself.

                          scottalanmillerS 1 Reply Last reply Reply Quote 0
                          • scottalanmillerS
                            scottalanmiller @Dashrender
                            last edited by

                            @Dashrender said in Researching OpenDental Software:

                            @scottalanmiller said in Researching OpenDental Software:

                            So in the above directions, where the heck are we supposed to get the "blank" database from? WTF

                            I was wondering that myself.

                            They even have a page just for that, with zero details...

                            https://www.opendental.com/manual/usingodblank.html

                            1 Reply Last reply Reply Quote 0
                            • scottalanmillerS
                              scottalanmiller
                              last edited by

                              Their blank database page sends you to an installation page, which sends you right back to the same blank database page.

                              1 Reply Last reply Reply Quote 0
                              • stacksofplatesS
                                stacksofplates @scottalanmiller
                                last edited by

                                @scottalanmiller said in Researching OpenDental Software:

                                So in the above directions, where the heck are we supposed to get the "blank" database from? WTF

                                From what that page I looked sounded like when you install the trial it stuff up the schema.

                                1 Reply Last reply Reply Quote 0
                                • 1
                                • 2
                                • 2 / 2
                                • First post
                                  Last post