Re: [Cppcms-users] wikipp error
Brought to you by:
artyom-beilis
From: Artyom B. <art...@gm...> - 2018-07-15 11:30:23
|
On Sun, Jul 15, 2018 at 12:27 PM, Eric Jansen <jan...@gm...> wrote: > Hi Artyom, > > Thank you for your prompt reply. It works. But after that I encounter > another error as shown below: > > $ wikipp -c /usr/local/Cellar/share/wikipp/config.js > > 2018-07-15 17:25:37; wikipp, error: system: Socket operation on non-socket > (main.cpp:14) > > system: Socket operation on non-socket > If the wikipp is started as external application you need to specify the socket it listens on, either unix domain socket or TCP/IP. When it is configured as stdin - it expects to be started by the web server that replaces stdin/fd=0 file descriptor by a socket. So you need to configure the service properly: http://cppcms.com/wikipp/en/page/cppcms_1x_config#service http://cppcms.com/wikipp/en/page/cppcms_1x_tut_web_server_config Artyom > > Any configuration that I am missing? > Thank you and regards, > > ERIC JANSEN > Software Engineer > > > On Sun, Jul 15, 2018 at 2:54 PM Artyom Beilis <art...@gm...> > wrote: >> >> Make sure that >> >> "views" : { >> "paths" : [ "/usr/local/lib/wikipp" ], >> >> >> Points to right location that contains your wikipp views also check >> that ldd on that libraries works - showing that it finds dependent >> libraries. >> >> Artyom >> >> On Sun, Jul 15, 2018 at 9:41 AM, Eric Jansen <jan...@gm...> wrote: >> > Hi all, >> > >> > Need your assistance on configuration of wikipp after installation. >> > I installed the cppcms 1.2.1, cppdb, and wikipp under macOS from source >> > code >> > successful. But when I tried to run it for testing, as shown below >> > failed: >> > >> > $ wikipp -c /usr/local/Cellar/share/wikipp/config.js >> > >> > 2018-07-15 14:38:10; wikipp, error: Failed to load skin:view, no shared >> > object/dll found (main.cpp:14) >> > >> > Failed to load skin:view, no shared object/dll found >> > >> > Is there anything that I am missing. I follow the guidance from >> > http://cppcms.com/wikipp/en/page/install_wikipp >> > Thank you and regards, >> > >> > ERIC JANSEN >> > Software Engineer >> > >> > >> > ------------------------------------------------------------------------------ >> > Check out the vibrant tech community on one of the world's most >> > engaging tech sites, Slashdot.org! http://sdm.link/slashdot >> > _______________________________________________ >> > Cppcms-users mailing list >> > Cpp...@li... >> > https://lists.sourceforge.net/lists/listinfo/cppcms-users >> > >> >> >> ------------------------------------------------------------------------------ >> Check out the vibrant tech community on one of the world's most >> engaging tech sites, Slashdot.org! http://sdm.link/slashdot >> _______________________________________________ >> Cppcms-users mailing list >> Cpp...@li... >> https://lists.sourceforge.net/lists/listinfo/cppcms-users > > > ------------------------------------------------------------------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > |