cppcms-users Mailing List for CppCMS C++ Web Framework (Page 112)
Brought to you by:
artyom-beilis
You can subscribe to this list here.
2009 |
Jan
|
Feb
(22) |
Mar
|
Apr
(3) |
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
(15) |
Nov
(16) |
Dec
(13) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2010 |
Jan
(4) |
Feb
|
Mar
(8) |
Apr
(8) |
May
(8) |
Jun
(36) |
Jul
(63) |
Aug
(126) |
Sep
(47) |
Oct
(66) |
Nov
(46) |
Dec
(42) |
2011 |
Jan
(87) |
Feb
(24) |
Mar
(54) |
Apr
(21) |
May
(22) |
Jun
(18) |
Jul
(22) |
Aug
(101) |
Sep
(57) |
Oct
(33) |
Nov
(34) |
Dec
(66) |
2012 |
Jan
(64) |
Feb
(76) |
Mar
(73) |
Apr
(105) |
May
(93) |
Jun
(83) |
Jul
(84) |
Aug
(88) |
Sep
(57) |
Oct
(59) |
Nov
(35) |
Dec
(49) |
2013 |
Jan
(67) |
Feb
(17) |
Mar
(49) |
Apr
(64) |
May
(87) |
Jun
(64) |
Jul
(93) |
Aug
(23) |
Sep
(15) |
Oct
(16) |
Nov
(62) |
Dec
(73) |
2014 |
Jan
(5) |
Feb
(23) |
Mar
(21) |
Apr
(11) |
May
(1) |
Jun
(19) |
Jul
(27) |
Aug
(16) |
Sep
(5) |
Oct
(37) |
Nov
(12) |
Dec
(9) |
2015 |
Jan
(7) |
Feb
(7) |
Mar
(44) |
Apr
(28) |
May
(5) |
Jun
(12) |
Jul
(8) |
Aug
|
Sep
(39) |
Oct
(34) |
Nov
(30) |
Dec
(34) |
2016 |
Jan
(66) |
Feb
(23) |
Mar
(33) |
Apr
(15) |
May
(11) |
Jun
(15) |
Jul
(26) |
Aug
(4) |
Sep
(1) |
Oct
(30) |
Nov
(10) |
Dec
|
2017 |
Jan
(52) |
Feb
(9) |
Mar
(24) |
Apr
(16) |
May
(9) |
Jun
(12) |
Jul
(33) |
Aug
(8) |
Sep
|
Oct
(1) |
Nov
(2) |
Dec
(6) |
2018 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
(14) |
Jun
(1) |
Jul
(9) |
Aug
(1) |
Sep
(13) |
Oct
(8) |
Nov
(2) |
Dec
(2) |
2019 |
Jan
(1) |
Feb
(1) |
Mar
(3) |
Apr
(3) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2020 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(9) |
Jul
(6) |
Aug
(25) |
Sep
(10) |
Oct
(10) |
Nov
(6) |
Dec
|
2021 |
Jan
|
Feb
|
Mar
(7) |
Apr
(1) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
(9) |
Oct
(1) |
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Artyom B. <art...@ya...> - 2011-07-27 14:47:34
|
> From: Allan SIMON <all...@su...> > > Hello, > > I want to retrieve the number of row in my table users, so I wrote the > following > > getUsersCount = sqliteDb.create_prepared_statement( > "SELECT count(*) as total FROM users " > ); > > int total = getUsersCount.query().get<int>("total"); > > But I run it, i get the following exception > > "2011-07-27 13:20:41 GMT; cppcms, error: Caught exception > [cppdb::null_value_fetch attempt fetch null column]" > > (which is different from the exception i get if i try to get the value > of a column that does not exists at all) > > > Am I doing something wrong ? > Yes. When you call query() you get a result set that you should iterate with next() functions. You looking for row() that would basically call query() and then call next() So rewrite it as: int total = getUsersCount.row().get<int>("total"); See: http://cppcms.sourceforge.net/sql/cppdb/classcppdb_1_1statement.html#7fd1167898cef7a5592bfd00453ab2f7 By the way: session::prepare() by default does what create_prepared_statement() does And the code above can be rewritten nicely as sqliteDb << "SELECT count(*) " "FROM users " << cppdb::row >> total; Artyom |
From: Allan S. <all...@su...> - 2011-07-27 13:35:33
|
Hello, I want to retrieve the number of row in my table users, so I wrote the following getUsersCount = sqliteDb.create_prepared_statement( "SELECT count(*) as total FROM users " ); int total = getUsersCount.query().get<int>("total"); But I run it, i get the following exception "2011-07-27 13:20:41 GMT; cppcms, error: Caught exception [cppdb::null_value_fetch attempt fetch null column]" (which is different from the exception i get if i try to get the value of a column that does not exists at all) Am I doing something wrong ? Regards, Allan |
From: 陈抒 <csf...@gm...> - 2011-07-27 12:57:00
|
I found it. 陈抒 Best regards http://blog.csdn.net/sheismylife On Wed, Jul 27, 2011 at 8:49 PM, 陈抒 <csf...@gm...> wrote: > I develop my web application following Tutorial: URL Mapping (v 1.x). > But it doesn't work. > Where can I find the source codes? > > > 陈抒 > Best regards > http://blog.csdn.net/sheismylife > |
From: 陈抒 <csf...@gm...> - 2011-07-27 12:50:22
|
I develop my web application following Tutorial: URL Mapping (v 1.x). But it doesn't work. Where can I find the source codes? 陈抒 Best regards http://blog.csdn.net/sheismylife |
From: Artyom B. <art...@ya...> - 2011-07-25 20:33:28
|
Use provided makefile, you miss linking the skin in. Also read: http://art-blog.no-ip.info/wikipp/en/page/cppcms_1x_tut_hello_templates Artyom >________________________________ >From: Daniel Rios <dan...@li...> >To: cpp...@li... >Sent: Monday, July 25, 2011 6:35 PM >Subject: [Cppcms-users] Error Running Forms Example on cppcms 0.99.8 > > > >Hello people, I'm Daniel first time here !. Im trying cppcms 0.99.8 newest version. The Hello World works fine, but when I try the forms example the browser doesn't show anything, >This is the console log: > > >server@xxx:~/forms$ c++ hello.cpp -lcppcms -o hello >server@xxx:~/forms$ ./hello -c config.js > > >2011-07-25 15:27:18 GMT; cppcms, error: Caught exception [There is no such skin:] >0x2b04e4: booster::stack_trace::trace(void**, int) + 0x24 in /usr/local/lib/libbooster.so.0 >0x804b7d1: ??? + 0x804b7d1 in ./hello >0x804b928: booster::runtime_error::runtime_error(std::string const&) + 0x30 in ./hello >0x804bb5a: cppcms::cppcms_error::cppcms_error(std::string const&) + 0x18 in ./hello >0xc91c86: cppcms::views_pool::render(std::string, std::string, std::ostream&, cppcms::base_content&) + 0x9b6 in /usr/local/lib/libcppcms.so.1 >0xc7b999: cppcms::application::render(std::string, cppcms::base_content&) + 0x99 in /usr/local/lib/libcppcms.so.1 >0x804ce08: ??? + 0x804ce08 in ./hello >0xc7451a: cppcms::http::context::dispatch(booster::intrusive_ptr<cppcms::application>, std::string, bool) + 0x7a in /usr/local/lib/libcppcms.so.1 >0xc75f08: booster::function<void ()()>::callable_impl<void, cppcms_boost::_bi::bind_t<void, void (*)(booster::intrusive_ptr<cppcms::application>, std::string, bool), cppcms_boost::_bi::list3<cppcms_boost::_bi::value<booster::intrusive_ptr<cppcms::application> >, cppcms_boost::_bi::value<std::string>, cppcms_boost::_bi::value<bool> > > >::call() + 0x68 in /usr/local/lib/libcppcms.so.1 >0xc77dc7: cppcms::impl::thread_pool::worker() + 0xa7 in /usr/local/lib/libcppcms.so.1 >0xc7773e: booster::function<void ()()>::callable_impl<void, cppcms_boost::_bi::bind_t<void, cppcms_boost::_mfi::mf0<void, cppcms::impl::thread_pool>, cppcms_boost::_bi::list1<cppcms_boost::_bi::value<cppcms::impl::thread_pool*> > > >::call() + 0x1e in /usr/local/lib/libcppcms.so.1 >0x322f4a: booster_thread_func + 0x2a in /usr/local/lib/libbooster.so.0 >0x35380e: ??? + 0x35380e in /lib/tls/i686/cmov/libpthread.so.0 >0x1dca0e: clone + 0x5e in /lib/tls/i686/cmov/libc.so.6 > (http_context.cpp:145) >2011-07-25 15:27:18 GMT; cppcms, error: Caught exception [There is no such skin:] >0x2b04e4: booster::stack_trace::trace(void**, int) + 0x24 in /usr/local/lib/libbooster.so.0 >0x804b7d1: ??? + 0x804b7d1 in ./hello >0x804b928: booster::runtime_error::runtime_error(std::string const&) + 0x30 in ./hello >0x804bb5a: cppcms::cppcms_error::cppcms_error(std::string const&) + 0x18 in ./hello >0xc91c86: cppcms::views_pool::render(std::string, std::string, std::ostream&, cppcms::base_content&) + 0x9b6 in /usr/local/lib/libcppcms.so.1 >0xc7b999: cppcms::application::render(std::string, cppcms::base_content&) + 0x99 in /usr/local/lib/libcppcms.so.1 >0x804ce08: ??? + 0x804ce08 in ./hello >0xc7451a: cppcms::http::context::dispatch(booster::intrusive_ptr<cppcms::application>, std::string, bool) + 0x7a in /usr/local/lib/libcppcms.so.1 >0xc75f08: booster::function<void ()()>::callable_impl<void, cppcms_boost::_bi::bind_t<void, void (*)(booster::intrusive_ptr<cppcms::application>, std::string, bool), cppcms_boost::_bi::list3<cppcms_boost::_bi::value<booster::intrusive_ptr<cppcms::application> >, cppcms_boost::_bi::value<std::string>, cppcms_boost::_bi::value<bool> > > >::call() + 0x68 in /usr/local/lib/libcppcms.so.1 >0xc77dc7: cppcms::impl::thread_pool::worker() + 0xa7 in /usr/local/lib/libcppcms.so.1 >0xc7773e: booster::function<void ()()>::callable_impl<void, cppcms_boost::_bi::bind_t<void, cppcms_boost::_mfi::mf0<void, cppcms::impl::thread_pool>, cppcms_boost::_bi::list1<cppcms_boost::_bi::value<cppcms::impl::thread_pool*> > > >::call() + 0x1e in /usr/local/lib/libcppcms.so.1 >0x322f4a: booster_thread_func + 0x2a in /usr/local/lib/libbooster.so.0 >0x35380e: ??? + 0x35380e in /lib/tls/i686/cmov/libpthread.so.0 >0x1dca0e: clone + 0x5e in /lib/tls/i686/cmov/libc.so.6 > (http_context.cpp:145) > > >Any Clue ?? > > >------------------------------------------------------------------------------ >Storage Efficiency Calculator >This modeling tool is based on patent-pending intellectual property that >has been used successfully in hundreds of IBM storage optimization engage- >ments, worldwide. Store less, Store more with what you own, Move data to >the right place. Try It Now! http://www.accelacomm.com/jaw/sfnl/114/51427378/ >_______________________________________________ >Cppcms-users mailing list >Cpp...@li... >https://lists.sourceforge.net/lists/listinfo/cppcms-users > > > |
From: Daniel R. <dan...@li...> - 2011-07-25 15:36:04
|
Hello people, I'm Daniel first time here !. Im trying cppcms 0.99.8 newest version. The Hello World works fine, but when I try the forms example the browser doesn't show anything, This is the console log: server@xxx:~/forms$ c++ hello.cpp -lcppcms -o helloserver@xxx:~/forms$ ./hello -c config.js 2011-07-25 15:27:18 GMT; cppcms, error: Caught exception [There is no such skin:]0x2b04e4: booster::stack_trace::trace(void**, int) + 0x24 in /usr/local/lib/libbooster.so.00x804b7d1: ??? + 0x804b7d1 in ./hello0x804b928: booster::runtime_error::runtime_error(std::string const&) + 0x30 in ./hello0x804bb5a: cppcms::cppcms_error::cppcms_error(std::string const&) + 0x18 in ./hello0xc91c86: cppcms::views_pool::render(std::string, std::string, std::ostream&, cppcms::base_content&) + 0x9b6 in /usr/local/lib/libcppcms.so.10xc7b999: cppcms::application::render(std::string, cppcms::base_content&) + 0x99 in /usr/local/lib/libcppcms.so.10x804ce08: ??? + 0x804ce08 in ./hello0xc7451a: cppcms::http::context::dispatch(booster::intrusive_ptr<cppcms::application>, std::string, bool) + 0x7a in /usr/local/lib/libcppcms.so.10xc75f08: booster::function<void ()()>::callable_impl<void, cppcms_boost::_bi::bind_t<void, void (*)(booster::intrusive_ptr<cppcms::application>, std::string, bool), cppcms_boost::_bi::list3<cppcms_boost::_bi::value<booster::intrusive_ptr<cppcms::application> >, cppcms_boost::_bi::value<std::string>, cppcms_boost::_bi::value<bool> > > >::call() + 0x68 in /usr/local/lib/libcppcms.so.10xc77dc7: cppcms::impl::thread_pool::worker() + 0xa7 in /usr/local/lib/libcppcms.so.10xc7773e: booster::function<void ()()>::callable_impl<void, cppcms_boost::_bi::bind_t<void, cppcms_boost::_mfi::mf0<void, cppcms::impl::thread_pool>, cppcms_boost::_bi::list1<cppcms_boost::_bi::value<cppcms::impl::thread_pool*> > > >::call() + 0x1e in /usr/local/lib/libcppcms.so.10x322f4a: booster_thread_func + 0x2a in /usr/local/lib/libbooster.so.00x35380e: ??? + 0x35380e in /lib/tls/i686/cmov/libpthread.so.00x1dca0e: clone + 0x5e in /lib/tls/i686/cmov/libc.so.6 (http_context.cpp:145)2011-07-25 15:27:18 GMT; cppcms, error: Caught exception [There is no such skin:]0x2b04e4: booster::stack_trace::trace(void**, int) + 0x24 in /usr/local/lib/libbooster.so.00x804b7d1: ??? + 0x804b7d1 in ./hello0x804b928: booster::runtime_error::runtime_error(std::string const&) + 0x30 in ./hello0x804bb5a: cppcms::cppcms_error::cppcms_error(std::string const&) + 0x18 in ./hello0xc91c86: cppcms::views_pool::render(std::string, std::string, std::ostream&, cppcms::base_content&) + 0x9b6 in /usr/local/lib/libcppcms.so.10xc7b999: cppcms::application::render(std::string, cppcms::base_content&) + 0x99 in /usr/local/lib/libcppcms.so.10x804ce08: ??? + 0x804ce08 in ./hello0xc7451a: cppcms::http::context::dispatch(booster::intrusive_ptr<cppcms::application>, std::string, bool) + 0x7a in /usr/local/lib/libcppcms.so.10xc75f08: booster::function<void ()()>::callable_impl<void, cppcms_boost::_bi::bind_t<void, void (*)(booster::intrusive_ptr<cppcms::application>, std::string, bool), cppcms_boost::_bi::list3<cppcms_boost::_bi::value<booster::intrusive_ptr<cppcms::application> >, cppcms_boost::_bi::value<std::string>, cppcms_boost::_bi::value<bool> > > >::call() + 0x68 in /usr/local/lib/libcppcms.so.10xc77dc7: cppcms::impl::thread_pool::worker() + 0xa7 in /usr/local/lib/libcppcms.so.10xc7773e: booster::function<void ()()>::callable_impl<void, cppcms_boost::_bi::bind_t<void, cppcms_boost::_mfi::mf0<void, cppcms::impl::thread_pool>, cppcms_boost::_bi::list1<cppcms_boost::_bi::value<cppcms::impl::thread_pool*> > > >::call() + 0x1e in /usr/local/lib/libcppcms.so.10x322f4a: booster_thread_func + 0x2a in /usr/local/lib/libbooster.so.00x35380e: ??? + 0x35380e in /lib/tls/i686/cmov/libpthread.so.00x1dca0e: clone + 0x5e in /lib/tls/i686/cmov/libc.so.6 (http_context.cpp:145) Any Clue ?? |
From: Alec T. <ale...@gm...> - 2011-07-22 18:57:02
|
Thanks 2011/7/17 Klaim - Joël Lamotte <mj...@gm...>: > > > On Sat, Jul 16, 2011 at 15:42, Alec Taylor <ale...@gm...> wrote: >> >> Maybe it's just early (and I'm jetlagged), but I just installed CppCMS >> (on Linux) and can't figure out what to do next. >> >> Is there a Getting Started Guide? >> > > Yes! > Got there http://cppcms.sourceforge.net/wikipp/en/page/main then click on > the version you're using. > You'll get on a page like this one with tutorials > : http://cppcms.sourceforge.net/wikipp/en/page/cppcms_1x > Each tutorial page explain basics. > Hope it helps. > Joël Lamotte > ------------------------------------------------------------------------------ > AppSumo Presents a FREE Video for the SourceForge Community by Eric > Ries, the creator of the Lean Startup Methodology on "Lean Startup > Secrets Revealed." This video shows you how to validate your ideas, > optimize your ideas and identify your business strategy. > http://p.sf.net/sfu/appsumosfdev2dev > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > > |
From: 陈抒 <csf...@gm...> - 2011-07-20 08:05:19
|
Hello, I didn't find any document that describes this feature. Can anybody tell me how to do this? 陈抒 Best regards http://blog.csdn.net/sheismylife |
From: Klaim - J. L. <mj...@gm...> - 2011-07-17 13:07:51
|
On Sat, Jul 16, 2011 at 15:42, Alec Taylor <ale...@gm...> wrote: > Maybe it's just early (and I'm jetlagged), but I just installed CppCMS > (on Linux) and can't figure out what to do next. > > Is there a Getting Started Guide? > > Yes! Got there http://cppcms.sourceforge.net/wikipp/en/page/main then click on the version you're using. You'll get on a page like this one with tutorials : http://cppcms.sourceforge.net/wikipp/en/page/cppcms_1x Each tutorial page explain basics. Hope it helps. Joël Lamotte |
From: Alec T. <ale...@gm...> - 2011-07-16 13:42:18
|
Maybe it's just early (and I'm jetlagged), but I just installed CppCMS (on Linux) and can't figure out what to do next. Is there a Getting Started Guide? |
From: Artyom B. <art...@ya...> - 2011-07-12 17:05:28
|
> > Hi All > > I'am not able to build trunk using cmake. I get the same error: > In file included from /Users/jb/cppcms/src/service.cpp:45: > /Users/jb/cppcms/private/prefork_acceptor.h:21:33: error: >cppcms_boost/bind.hpp: No such file or directory > In file included from /Users/jb/cppcms/src/service.cpp:45: > > I can't find bind.hpp in the booster library. > > My platform Mac OS X 10.6.8 > Read: http://cppcms.sourceforge.net/wikipp/en/page/cppcms_1x_build#get You missed (for svn version) tar -xjf cppcms_boost.tar.bz2 Also I'd suggest to use recently released 0.99.8 Artyom Beilis |
From: Jacob B. <ja...@bj...> - 2011-07-12 16:34:59
|
Hi All I'am not able to build trunk using cmake. I get the same error: In file included from /Users/jb/cppcms/src/service.cpp:45: /Users/jb/cppcms/private/prefork_acceptor.h:21:33: error: cppcms_boost/bind.hpp: No such file or directory In file included from /Users/jb/cppcms/src/service.cpp:45: I can't find bind.hpp in the booster library. My platform Mac OS X 10.6.8 /Jacob |
From: Artyom B. <art...@ya...> - 2011-07-11 20:05:32
|
Hello All, CppCMS 0.99.8 Released: It includes mostly updates in localization support (Boost.Locale) and several bug fixes. More details can be found at: http://art-blog.no-ip.info/cppcms/blog/post/82 Artyom Beilis |
From: Artyom B. <art...@ya...> - 2011-07-04 07:19:29
|
You probably need some basic knowledge about what JSON RPC is. See: - http://json-rpc.org/ - http://en.wikipedia.org/wiki/JSON-RPC - http://json-rpc.org/wiki/specification If you are looking for a client side implementation refer to toolkits like DOJO or JQery See also: http://json-rpc.org/wiki/implementations for client side code. CppCMS is designed for server side programming. So its Ajax examples currently assume some basic knowledge in client side. Artyom Beilis > >From: le ba <hma...@gm...> >To: cpp...@li... >Sent: Fri, July 1, 2011 5:23:42 PM >Subject: [Cppcms-users] ajax with json_rpc-cppcms can not understand the >mechanism. > > >Hi, > > > >You have provided an example for using json_rpc with cppcms-0.99.7 and I don't >understand how to test it. I can to build it but I don't know how to test the >application after. >Can you provided other example (json and ajax) detailed how the application >receive the data from the client and how the application to transmit the >response to the client after?. >I am a beginner with cppcms for web application but I think you have made a big >work with this framework. > > >Thanks you very much > > >Maminirina |
From: le ba <hma...@gm...> - 2011-07-01 14:23:48
|
Hi, You have provided an example for using json_rpc with cppcms-0.99.7 and I don't understand how to test it. I can to build it but I don't know how to test the application after. Can you provided other example (json and ajax) detailed how the application receive the data from the client and how the application to transmit the response to the client after?. I am a beginner with cppcms for web application but I think you have made a big work with this framework. Thanks you very much Maminirina |
From: Artyom B. <art...@ya...> - 2011-06-30 07:52:54
|
Several points: 1. I hadn't had a chance to test it with gcc-4.6.1 as it wasn't released when CppCMS 0.99.7 was released. It is actually really strange because this code included fix for 4.6.0 but something had changed in the compiler. These changes may fix your problem: =================================================================== --- booster/lib/system/src/posix_error.cpp (revision 1833) +++ booster/lib/system/src/posix_error.cpp (working copy) @@ -47,6 +47,7 @@ class system_error_impl : public posix_error_impl { public: + system_error_impl() {} virtual char const *name() const { return "system"; @@ -55,7 +56,7 @@ }; error_category const &get_system_category() { - static const system_error_impl se = system_error_impl(); + static const system_error_impl se; return se; } Second problem is currently CppCMS fails to compile with ICU 4.8 (3.6 up to 4.6 should work fine) as ICU had removed some API in this version. I'm working on it but it will take some time. > 4) run cmake -DDISABLE_ICONV=ON -DDISABLE_GCRYPT=ON -DDISABLE_SCGI=ON > -DDISABLE_HTTP=ON ../ and I get: 1. I would not recommend you to disable HTTP as it is very useful for debugging. Same for SCGI as "make test" will fail as test suite is designed for full build. 2. iconv is built - in into GNU libc and it is faster then ICU so I'd recommend you to keep it. Generally defaults should be good unless you want to make some embedded builds where the size of the executable matters. Artyom ----- Original Message ---- > From: Tae Sandoval Murgan <tae...@gm...> > To: cpp...@li... > Sent: Thu, June 30, 2011 7:39:46 AM > Subject: [Cppcms-users] Trying to build in Arch Linux > > Hi there: > > I'm trying to build the last release in my Arch Linux syste which runs > gcc 4.6.1, CMake 2.8.4 (I never used it before), zlib 1.2.5, PCRE > 8.12, python 2.7.2, ICU 4.8 and OpenSSL 1.0.0.d. What I did: > > 1) Download the 0.99.7 - beta 7 version from SourceForge; > 2) extract it to ~/cppcms-0.99.7/; > 3) create ~/cppcm-0.99.7/build/; > 4) cd in that directory; > 4) run cmake -DDISABLE_ICONV=ON -DDISABLE_GCRYPT=ON -DDISABLE_SCGI=ON > -DDISABLE_HTTP=ON ../ and I get: > > -- The C compiler identification is GNU > -- The CXX compiler identification is GNU > -- Check for working C compiler: /usr/bin/gcc > -- Check for working C compiler: /usr/bin/gcc -- works > -- Detecting C compiler ABI info > -- Detecting C compiler ABI info - done > -- Check for working CXX compiler: /usr/bin/c++ > -- Check for working CXX compiler: /usr/bin/c++ -- works > -- Detecting CXX compiler ABI info > -- Detecting CXX compiler ABI info - done > -- Looking for ICU libraries > -- ICU Found, building booster locale > -- Performing Test GCC_IS_GCC4 > -- Performing Test GCC_IS_GCC4 - Success > -- Looking for dlopen > -- Looking for dlopen - not found > -- Looking for socket > -- Looking for socket - found > -- Looking for gethostbyname > -- Looking for gethostbyname - found > -- Performing Test BOOSTER_HAS_GCC_SYNC > -- Performing Test BOOSTER_HAS_GCC_SYNC - Success > -- Performing Test BOOSTER_HAVE_GCC_BITS_EXCHANGE_AND_ADD > -- Performing Test BOOSTER_HAVE_GCC_BITS_EXCHANGE_AND_ADD - Failed > -- Performing Test BOOSTER_HAVE_GCC_EXT_EXCHANGE_AND_ADD > -- Performing Test BOOSTER_HAVE_GCC_EXT_EXCHANGE_AND_ADD - Success > -- Performing Test BOOSTER_HAVE_FREEBSD_ATOMIC > -- Performing Test BOOSTER_HAVE_FREEBSD_ATOMIC - Failed > -- Performing Test BOOSTER_HAVE_SOLARIS_ATOMIC > -- Performing Test BOOSTER_HAVE_SOLARIS_ATOMIC - Failed > -- Performing Test BOOSTER_HAVE_MAC_OS_X_ATOMIC > -- Performing Test BOOSTER_HAVE_MAC_OS_X_ATOMIC - Failed > -- Performing Test BOOSTER_HAVE_STDINT_H > -- Performing Test BOOSTER_HAVE_STDINT_H - Success > -- Performing Test BOOSTER_HAVE_INTTYPES_H > -- Performing Test BOOSTER_HAVE_INTTYPES_H - Success > -- Performing Test BOOSTER_AIO_HAVE_PF_INET6 > -- Performing Test BOOSTER_AIO_HAVE_PF_INET6 - Success > -- Performing Test CPPCMS_HAVE_STDINT_H > -- Performing Test CPPCMS_HAVE_STDINT_H - Success > -- Performing Test CPPCMS_HAVE_INTTYPES_H > -- Performing Test CPPCMS_HAVE_INTTYPES_H - Success > -- Looking for atoll > -- Looking for atoll - found > -- Looking for _atoi64 > -- Looking for _atoi64 - not found > -- Looking for snprintf > -- Looking for snprintf - found > -- Looking for stat > -- Looking for stat - found > -- Looking for _stat > -- Looking for _stat - not found > -- Performing Test CPPCMS_HAVE_STD_WSTRING > -- Performing Test CPPCMS_HAVE_STD_WSTRING - Success > -- Performing Test CPPCMS_HAVE_BSD_TM > -- Performing Test CPPCMS_HAVE_BSD_TM - Success > -- Performing Test CPPCMS_HAVE_CPP0X_UXSTRING > -- Performing Test CPPCMS_HAVE_CPP0X_UXSTRING - Failed > -- Performing Test CPPCMS_HAVE_CPP_0X_AUTO > -- Performing Test CPPCMS_HAVE_CPP_0X_AUTO - Failed > -- Performing Test CPPCMS_HAVE_CPP_0X_DECLTYPE > -- Performing Test CPPCMS_HAVE_CPP_0X_DECLTYPE - Failed > -- Performing Test CPPCMS_HAVE_GCC_TYPEOF > -- Performing Test CPPCMS_HAVE_GCC_TYPEOF - Success > -- Performing Test CPPCMS_HAVE_UNDERSCORE_TYPEOF > -- Performing Test CPPCMS_HAVE_UNDERSCORE_TYPEOF - Success > -- Looking for dlopen > -- Looking for dlopen - not found > -- Looking for dlopen in dl > -- Looking for dlopen in dl - found > -- Looking for socket > -- Looking for socket - found > -- Looking for gethostbyname > -- Looking for gethostbyname - found > -- Looking for canonicalize_file_name > -- Looking for canonicalize_file_name - found > -- Configuring done > -- Generating done > -- Build files have been written to: /home/tae/cppcms-0.99.7/build > > 5) run make and I get: > > Scanning dependencies of target booster > [ 0%] Building CXX object > booster/CMakeFiles/booster.dir/lib/ptime/src/posix_time.cpp.o > [ 1%] Building CXX object > booster/CMakeFiles/booster.dir/lib/ptime/src/ctime.cpp.o > [ 1%] Building CXX object > booster/CMakeFiles/booster.dir/lib/regex/src/pcre_regex.cpp.o > [ 1%] Building CXX object > booster/CMakeFiles/booster.dir/lib/system/src/posix_error.cpp.o > /home/tae/cppcms-0.99.7/booster/lib/system/src/posix_error.cpp: In > function ‘const booster::system::error_category& > booster::system::get_posix_category()’: > /home/tae/cppcms-0.99.7/booster/lib/system/src/posix_error.cpp:44:33: > error: uninitialized const ‘se’ [-fpermissive] > /home/tae/cppcms-0.99.7/booster/lib/system/src/posix_error.cpp:15:8: > note: ‘const class booster::system::posix_error_impl’ has no > user-provided default constructor > /home/tae/cppcms-0.99.7/booster/lib/system/src/posix_error.cpp: In > function ‘const booster::system::error_category& > booster::system::get_system_category()’: > /home/tae/cppcms-0.99.7/booster/lib/system/src/posix_error.cpp:58:34: > error: uninitialized const ‘se’ [-fpermissive] > /home/tae/cppcms-0.99.7/booster/lib/system/src/posix_error.cpp:48:8: > note: ‘const class booster::system::system_error_impl’ has no > user-provided default constructor > /home/tae/cppcms-0.99.7/booster/./booster/system_error.h: At global scope: > /home/tae/cppcms-0.99.7/booster/./booster/system_error.h:56:31: > warning: ‘booster::system::posix_category’ defined but not used > [-Wunused-variable] > make[2]: *** [booster/CMakeFiles/booster.dir/lib/system/src/posix_error.cpp.o] > Error 1 > make[1]: *** [booster/CMakeFiles/booster.dir/all] Error 2 > make: *** [all] Error 2 > > As I told, I never used CMake before, and anyway, I'm a C++ n00b, so > I'm really lost. > > Thanks beforehand for any help, and sorry for my English. > > ------------------------------------------------------------------------------ > All of the data generated in your IT infrastructure is seriously valuable. > Why? It contains a definitive record of application performance, security > threats, fraudulent activity, and more. Splunk takes this data and makes > sense of it. IT sense. And common sense. > http://p.sf.net/sfu/splunk-d2d-c2 > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > |
From: Tae S. M. <tae...@gm...> - 2011-06-30 04:40:15
|
Hi there: I'm trying to build the last release in my Arch Linux syste which runs gcc 4.6.1, CMake 2.8.4 (I never used it before), zlib 1.2.5, PCRE 8.12, python 2.7.2, ICU 4.8 and OpenSSL 1.0.0.d. What I did: 1) Download the 0.99.7 - beta 7 version from SourceForge; 2) extract it to ~/cppcms-0.99.7/; 3) create ~/cppcm-0.99.7/build/; 4) cd in that directory; 4) run cmake -DDISABLE_ICONV=ON -DDISABLE_GCRYPT=ON -DDISABLE_SCGI=ON -DDISABLE_HTTP=ON ../ and I get: -- The C compiler identification is GNU -- The CXX compiler identification is GNU -- Check for working C compiler: /usr/bin/gcc -- Check for working C compiler: /usr/bin/gcc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Looking for ICU libraries -- ICU Found, building booster locale -- Performing Test GCC_IS_GCC4 -- Performing Test GCC_IS_GCC4 - Success -- Looking for dlopen -- Looking for dlopen - not found -- Looking for socket -- Looking for socket - found -- Looking for gethostbyname -- Looking for gethostbyname - found -- Performing Test BOOSTER_HAS_GCC_SYNC -- Performing Test BOOSTER_HAS_GCC_SYNC - Success -- Performing Test BOOSTER_HAVE_GCC_BITS_EXCHANGE_AND_ADD -- Performing Test BOOSTER_HAVE_GCC_BITS_EXCHANGE_AND_ADD - Failed -- Performing Test BOOSTER_HAVE_GCC_EXT_EXCHANGE_AND_ADD -- Performing Test BOOSTER_HAVE_GCC_EXT_EXCHANGE_AND_ADD - Success -- Performing Test BOOSTER_HAVE_FREEBSD_ATOMIC -- Performing Test BOOSTER_HAVE_FREEBSD_ATOMIC - Failed -- Performing Test BOOSTER_HAVE_SOLARIS_ATOMIC -- Performing Test BOOSTER_HAVE_SOLARIS_ATOMIC - Failed -- Performing Test BOOSTER_HAVE_MAC_OS_X_ATOMIC -- Performing Test BOOSTER_HAVE_MAC_OS_X_ATOMIC - Failed -- Performing Test BOOSTER_HAVE_STDINT_H -- Performing Test BOOSTER_HAVE_STDINT_H - Success -- Performing Test BOOSTER_HAVE_INTTYPES_H -- Performing Test BOOSTER_HAVE_INTTYPES_H - Success -- Performing Test BOOSTER_AIO_HAVE_PF_INET6 -- Performing Test BOOSTER_AIO_HAVE_PF_INET6 - Success -- Performing Test CPPCMS_HAVE_STDINT_H -- Performing Test CPPCMS_HAVE_STDINT_H - Success -- Performing Test CPPCMS_HAVE_INTTYPES_H -- Performing Test CPPCMS_HAVE_INTTYPES_H - Success -- Looking for atoll -- Looking for atoll - found -- Looking for _atoi64 -- Looking for _atoi64 - not found -- Looking for snprintf -- Looking for snprintf - found -- Looking for stat -- Looking for stat - found -- Looking for _stat -- Looking for _stat - not found -- Performing Test CPPCMS_HAVE_STD_WSTRING -- Performing Test CPPCMS_HAVE_STD_WSTRING - Success -- Performing Test CPPCMS_HAVE_BSD_TM -- Performing Test CPPCMS_HAVE_BSD_TM - Success -- Performing Test CPPCMS_HAVE_CPP0X_UXSTRING -- Performing Test CPPCMS_HAVE_CPP0X_UXSTRING - Failed -- Performing Test CPPCMS_HAVE_CPP_0X_AUTO -- Performing Test CPPCMS_HAVE_CPP_0X_AUTO - Failed -- Performing Test CPPCMS_HAVE_CPP_0X_DECLTYPE -- Performing Test CPPCMS_HAVE_CPP_0X_DECLTYPE - Failed -- Performing Test CPPCMS_HAVE_GCC_TYPEOF -- Performing Test CPPCMS_HAVE_GCC_TYPEOF - Success -- Performing Test CPPCMS_HAVE_UNDERSCORE_TYPEOF -- Performing Test CPPCMS_HAVE_UNDERSCORE_TYPEOF - Success -- Looking for dlopen -- Looking for dlopen - not found -- Looking for dlopen in dl -- Looking for dlopen in dl - found -- Looking for socket -- Looking for socket - found -- Looking for gethostbyname -- Looking for gethostbyname - found -- Looking for canonicalize_file_name -- Looking for canonicalize_file_name - found -- Configuring done -- Generating done -- Build files have been written to: /home/tae/cppcms-0.99.7/build 5) run make and I get: Scanning dependencies of target booster [ 0%] Building CXX object booster/CMakeFiles/booster.dir/lib/ptime/src/posix_time.cpp.o [ 1%] Building CXX object booster/CMakeFiles/booster.dir/lib/ptime/src/ctime.cpp.o [ 1%] Building CXX object booster/CMakeFiles/booster.dir/lib/regex/src/pcre_regex.cpp.o [ 1%] Building CXX object booster/CMakeFiles/booster.dir/lib/system/src/posix_error.cpp.o /home/tae/cppcms-0.99.7/booster/lib/system/src/posix_error.cpp: In function ‘const booster::system::error_category& booster::system::get_posix_category()’: /home/tae/cppcms-0.99.7/booster/lib/system/src/posix_error.cpp:44:33: error: uninitialized const ‘se’ [-fpermissive] /home/tae/cppcms-0.99.7/booster/lib/system/src/posix_error.cpp:15:8: note: ‘const class booster::system::posix_error_impl’ has no user-provided default constructor /home/tae/cppcms-0.99.7/booster/lib/system/src/posix_error.cpp: In function ‘const booster::system::error_category& booster::system::get_system_category()’: /home/tae/cppcms-0.99.7/booster/lib/system/src/posix_error.cpp:58:34: error: uninitialized const ‘se’ [-fpermissive] /home/tae/cppcms-0.99.7/booster/lib/system/src/posix_error.cpp:48:8: note: ‘const class booster::system::system_error_impl’ has no user-provided default constructor /home/tae/cppcms-0.99.7/booster/./booster/system_error.h: At global scope: /home/tae/cppcms-0.99.7/booster/./booster/system_error.h:56:31: warning: ‘booster::system::posix_category’ defined but not used [-Wunused-variable] make[2]: *** [booster/CMakeFiles/booster.dir/lib/system/src/posix_error.cpp.o] Error 1 make[1]: *** [booster/CMakeFiles/booster.dir/all] Error 2 make: *** [all] Error 2 As I told, I never used CMake before, and anyway, I'm a C++ n00b, so I'm really lost. Thanks beforehand for any help, and sorry for my English. |
From: Vizcayno T. <viz...@gm...> - 2011-06-23 01:15:01
|
On Wed, Jun 22, 2011 at 12:46 AM, Artyom Beilis <art...@ya...> wrote: > Hello, > > Do you follow these instructions: > > http://art-blog.no-ip.info/sql/cppdb/build.html > Thanks for your indications, I followed the instructions indicated there so, I have the final product: cppdb_sqlite3.dll After that I executed some of the examples/tests programs with the expected results. :-) My best regards. > These variables should be defined automatically by CMake > script. > > If it still fails do send me: > > - the content of CMakeCache.txt created > > - the output of run of CMake and NMake. > > Note use -DCMAKE_VERBOSE_MAKEFILE=ON option for CMake > so the output would be clear enough. > > Artyom > > > > ----- Original Message ---- >> From: Vizcayno Tamparantan <viz...@gm...> >> To: cpp...@li... >> Sent: Wed, June 22, 2011 1:39:22 AM >> Subject: [Cppcms-users] MS-VC10 compilation error in cppDB >> >> Hello: >> >> In program driver_manager.cpp the next lines are written: >> . >> . >> . >> if (!(module=conn.get("@module")).empty()) { >> so_names.push_back(module); >> } >> else { >> Line 160: std::string so_name1 = CPPDB_LIBRARY_PREFIX "cppdb_" + >> conn.driver + CPPDB_LIBRARY_SUFFIX_V1; >> std::string so_name2 = CPPDB_LIBRARY_PREFIX "cppdb_" >> + conn.driver + CPPDB_LIBRARY_SUFFIX_V2; >> . >> . >> . >> >> When compiling in MS-VC2010 I have the next error in line 160: >> error C2065: 'CPPDB_LIBRARY_PREFIX' : undeclared identifier >> error C2143: syntax error : missing ';' before 'string' driver_manager.cpp >> error C2146: syntax error : missing ';' before identifier 'CPPDB_SOVERSION' >> error C2065: 'CPPDB_SOVERSION' : undeclared identifier >> error C2146: syntax error : missing ';' before identifier >>'CPPDB_LIBRARY_SUFFIX' >> error C2065: 'CPPDB_LIBRARY_SUFFIX' : undeclared identifier >> >> I read some of the file cppDB\CMakeLists.txt and I found the next >>definitions: >> add_definitions(-DCPPDB_LIBRARY_PREFIX="${CMAKE_SHARED_LIBRARY_PREFIX}") >> add_definitions(-DCPPDB_LIBRARY_SUFFIX="${CMAKE_SHARED_LIBRARY_SUFFIX}") >> add_definitions(-DCPPDB_SOVERSION="${CPPDB_SOVERSION}") >> >> However, I can not establish the values of >> ${CMAKE_SHARED_LIBRARY_PREFIX}, ${CMAKE_SHARED_LIBRARY_SUFFIX} and >> ${CPPDB_SOVERSION} >> >> Is this possible for you to help me in this matter? >> >> My best regards >> >> Vizcayno. >> >> ------------------------------------------------------------------------------ >> EditLive Enterprise is the world's most technically advanced content >> authoring tool. Experience the power of Track Changes, Inline Image >> Editing and ensure content is compliant with Accessibility Checking. >> http://p.sf.net/sfu/ephox-dev2dev >> _______________________________________________ >> Cppcms-users mailing list >> Cpp...@li... >> https://lists.sourceforge.net/lists/listinfo/cppcms-users >> > > ------------------------------------------------------------------------------ > Simplify data backup and recovery for your virtual environment with vRanger. > Installation's a snap, and flexible recovery options mean your data is safe, > secure and there when you need it. Data protection magic? > Nope - It's vRanger. Get your free trial download today. > http://p.sf.net/sfu/quest-sfdev2dev > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > |
From: Artyom B. <art...@ya...> - 2011-06-22 04:46:37
|
Hello, Do you follow these instructions: http://art-blog.no-ip.info/sql/cppdb/build.html These variables should be defined automatically by CMake script. If it still fails do send me: - the content of CMakeCache.txt created - the output of run of CMake and NMake. Note use -DCMAKE_VERBOSE_MAKEFILE=ON option for CMake so the output would be clear enough. Artyom ----- Original Message ---- > From: Vizcayno Tamparantan <viz...@gm...> > To: cpp...@li... > Sent: Wed, June 22, 2011 1:39:22 AM > Subject: [Cppcms-users] MS-VC10 compilation error in cppDB > > Hello: > > In program driver_manager.cpp the next lines are written: > . > . > . > if (!(module=conn.get("@module")).empty()) { > so_names.push_back(module); > } > else { > Line 160: std::string so_name1 = CPPDB_LIBRARY_PREFIX "cppdb_" + > conn.driver + CPPDB_LIBRARY_SUFFIX_V1; > std::string so_name2 = CPPDB_LIBRARY_PREFIX "cppdb_" > + conn.driver + CPPDB_LIBRARY_SUFFIX_V2; > . > . > . > > When compiling in MS-VC2010 I have the next error in line 160: > error C2065: 'CPPDB_LIBRARY_PREFIX' : undeclared identifier > error C2143: syntax error : missing ';' before 'string' driver_manager.cpp > error C2146: syntax error : missing ';' before identifier 'CPPDB_SOVERSION' > error C2065: 'CPPDB_SOVERSION' : undeclared identifier > error C2146: syntax error : missing ';' before identifier >'CPPDB_LIBRARY_SUFFIX' > error C2065: 'CPPDB_LIBRARY_SUFFIX' : undeclared identifier > > I read some of the file cppDB\CMakeLists.txt and I found the next >definitions: > add_definitions(-DCPPDB_LIBRARY_PREFIX="${CMAKE_SHARED_LIBRARY_PREFIX}") > add_definitions(-DCPPDB_LIBRARY_SUFFIX="${CMAKE_SHARED_LIBRARY_SUFFIX}") > add_definitions(-DCPPDB_SOVERSION="${CPPDB_SOVERSION}") > > However, I can not establish the values of > ${CMAKE_SHARED_LIBRARY_PREFIX}, ${CMAKE_SHARED_LIBRARY_SUFFIX} and > ${CPPDB_SOVERSION} > > Is this possible for you to help me in this matter? > > My best regards > > Vizcayno. > > ------------------------------------------------------------------------------ > EditLive Enterprise is the world's most technically advanced content > authoring tool. Experience the power of Track Changes, Inline Image > Editing and ensure content is compliant with Accessibility Checking. > http://p.sf.net/sfu/ephox-dev2dev > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > |
From: Vizcayno T. <viz...@gm...> - 2011-06-21 22:39:29
|
Hello: In program driver_manager.cpp the next lines are written: . . . if (!(module=conn.get("@module")).empty()) { so_names.push_back(module); } else { Line 160: std::string so_name1 = CPPDB_LIBRARY_PREFIX "cppdb_" + conn.driver + CPPDB_LIBRARY_SUFFIX_V1; std::string so_name2 = CPPDB_LIBRARY_PREFIX "cppdb_" + conn.driver + CPPDB_LIBRARY_SUFFIX_V2; . . . When compiling in MS-VC2010 I have the next error in line 160: error C2065: 'CPPDB_LIBRARY_PREFIX' : undeclared identifier error C2143: syntax error : missing ';' before 'string' driver_manager.cpp error C2146: syntax error : missing ';' before identifier 'CPPDB_SOVERSION' error C2065: 'CPPDB_SOVERSION' : undeclared identifier error C2146: syntax error : missing ';' before identifier 'CPPDB_LIBRARY_SUFFIX' error C2065: 'CPPDB_LIBRARY_SUFFIX' : undeclared identifier I read some of the file cppDB\CMakeLists.txt and I found the next definitions: add_definitions(-DCPPDB_LIBRARY_PREFIX="${CMAKE_SHARED_LIBRARY_PREFIX}") add_definitions(-DCPPDB_LIBRARY_SUFFIX="${CMAKE_SHARED_LIBRARY_SUFFIX}") add_definitions(-DCPPDB_SOVERSION="${CPPDB_SOVERSION}") However, I can not establish the values of ${CMAKE_SHARED_LIBRARY_PREFIX}, ${CMAKE_SHARED_LIBRARY_SUFFIX} and ${CPPDB_SOVERSION} Is this possible for you to help me in this matter? My best regards Vizcayno. |
From: Artyom B. <art...@ya...> - 2011-06-16 09:37:17
|
>Hi Artyom, > > >I have a project I'm planning to use CPPCMS with but it seems I'll not be able >to start it until the very end of the year or next year. > > >But I will report in the wiki the website once online, noted. > > >Joël Lamotte. Thanks, meanwhile more users had written themselves on the wiki, so thank you all for sharing Artyom |
From: Klaim - J. L. <mj...@gm...> - 2011-06-15 20:55:21
|
Hi Artyom, I have a project I'm planning to use CPPCMS with but it seems I'll not be able to start it until the very end of the year or next year. But I will report in the wiki the website once online, noted. Joël Lamotte. |
From: Artyom B. <art...@ya...> - 2011-06-13 16:37:43
|
Hello CppCMS users. I'd like to remind you about this page in CppCMS's wiki: Who Uses CppCMS: http://art-blog.no-ip.info/wikipp/en/page/who_uses I know that not all of you have active web sites running on CppCMS but some of you do. It would be very helpful to have a list of public web sites that use CppCMS technology, it would be very helpful for CppCMS marketing. I recently discovered several services running on CppCMS http://dive.dhiti.com/ http://drilll.com/ http://intweetion.com/ Also I know that http://tatoeba.org/eng/ moving to CppCMS and I had found an early alpha version of their new web site http://tato.sysko.fr/eng But none of them was listed in the wiki. So... If you own/develop a web site that uses CppCMS or you have deployed embedded or other applications using CppCMS I will be grateful if you list *yourselves* in the wiki: http://art-blog.no-ip.info/wikipp/en/page/who_uses Thank you very much. Artyom Beilis |
From: Artyom B. <art...@ya...> - 2011-06-13 11:07:10
|
Hello All, I'd like to remind that there is a page in the CppCMS's wiki titled "Who Uses CppCMS?" http://art-blog.no-ip.info/wikipp/en/page/who_uses I know that many of you actively use CppCMS for development of web sites and embedded applications. I will be grateful if you add yourself to the "Who Uses CppCMS" page. It would help in marketing of this project and finally bring more users and contributes to it. I ask you because I recently discovered a small company "Dhiti" that uses CppCMS in their RESTful web services and I had found that tatoeba.org actively develops a new version based on CppCMS and already have some CppCMS based alpha version of it on-line. However, none of them actually appear in the wiki. So if you have active public web sites running on CppCMS or your company or your project uses embeds CppCMS in your applications, please tell us. Thank You, Artyom P.S.: I had send and other mail to the list but it seems to be lost or filtered. So if you receive other mail like this... it is just because of problems with a mailman. |
From: Artyom B. <art...@ya...> - 2011-06-13 09:17:31
|
Hello CppCMS users. I'd like to remind you about this page in CppCMS's wiki: Who Uses CppCMS: http://art-blog.no-ip.info/wikipp/en/page/who_uses I know that not all of you have active web sites running on CppCMS but some of you do. It would be very helpful to have a list of public web sites that use CppCMS technology, it would be very helpful for CppCMS marketing. I recently discovered several services running on CppCMS http://dive.dhiti.com/ http://drilll.com/ http://intweetion.com/ Also I know that http://tatoeba.org/eng/ moving to CppCMS and I had found an early alpha version of their new web site http://tato.sysko.fr/eng But none of them was listed in the wiki. So... If you own/develop a web site that uses CppCMS or you have deployed embedded or other applications using CppCMS I will be grateful if you list *yourselves* in the wiki: http://art-blog.no-ip.info/wikipp/en/page/who_uses Thank you very much. Artyom Beilis |