KooBoo experiences and cases [closed] - sharepoint

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I´m considering using Kooboo as an intranet management system. Are there same featured in Kooboo that are present in SharePoint?
Where I can find examples of Kooboo extensions' development? I haven't found any extension showcase as Umbraco has. Is there something alike?

One year ago, we launched a website powered by Kooboo CMS.
The deployment was easy and everything was OK. The problem is that a lot of modules are not set or not mature enough to be used under the production environment.
For example, there was a big bug in the forum module. As we couldn't wait future releases that would come with the fixes, we considered editing the code.
On the other hand, the admin interface is really awesome: Full AJAX and easy to understand.
But, unhopefully, I would not recommand this CMS as it is still IMO in a development process.

Kooboo is a good open source CMS, but IMO it's not possible to compare it with Sharepoint. Kooboo is not an enterprise level CMS.
You can found examples on the Kooboo forum

Related

What is Spec Folder in Orchard CMS solution explorer? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am new in Orchard CMS and I want to know about the structure code of this CMS.do you know about Spec Folder in Orchard CMS solution explorer?
what is that?
It's tests built using Specflow.
See Orchard's Source Code Organization page.
I understand these are documentations base on BDD created by specflow.thank you all.

Application Support to Internet explorer 6 and 8 [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have successfully developed some application using netbeans as IDE. and they are all in currently production for the company.
But, here I faced one problem that the application is running perfectly fine in IE-6, but when i upgraded it to the IE-8, It does not support full features of the application and it is behaving awkward.
So I wanted to know, how 2 versions of IE makes the same application behaving different, and Is it related to some kind of development of the application, and whether we can make it working in all the versions.
I want to know some behind the scenes fact.
Thanks!!
If you are using richfaces 3.x, it has known issues with IE9 which are not yet fixed.
If you application work with IE7, then specify X-UI-Compatible meta tag to emulate IE7 behavior.

Browser Plugin Development [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to develop plugins and extensions for browsers like in the Chrome web store, but I do not know where to get started. Can anyone suggest anything?
You'll need knowledge of HTML, CSS, and JavaScript.
Then, you can start here.
Resources
Getting Started (Hello World!
extension)
Chrome Developer's Guide
Chrome APIs
Depends on which browser you want to extend. Then find tutorials, documentation, existing opensource extensions and code, code and code..
For chrome here is extension tutorial, start there..

Bing.com core technology? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
We all know bing.com is a Microsoft site, hence it's technology is built upon Microsoft stuck (I can hardly imaging something different). Does any one have an idea about what technologies are used in Bing.com (for serving the pages, for indexing the web, for searching the database.. etc)?
/* Strange question you say?! C'mon it's StackOverflow, we can get a good answer ;-) */
Any web search engine uses a web crawler to travel and index web pages and their content. Bing uses a crawler called Msnbot which, in the past, has been often criticized for being too slow.
Msnbot should appear this way in your server's log:
msnbot/2.0b (+http://search.msn.com/msnbot.htm)
Also, Microsoft has a FAQ page about Msnbot.
Java & oracle on linux boxes :)
Seriously, it is asp.net & sql server on windows.

PHP application works on a Windows server, but it doesn't work on a Linux server, why? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a PHP web application. This application works on Windows server, but it doesn't work on a Linux server. I think this is about php.ini or file permissions. What can be other reasons for this situaion? What must be the basic php.ini configurations for this situation?
Never ask "What can be other reasons". We are not weather forecasters here. We are programmers. And we have tools to be certain, what particular problem we are experiencing now.
The only thing you need is to ask PHP to tell you, what's the problem.
The easiest way is to put these lines into your configuration file,
ini_set('display_errors',1);
error_reporting(E_ALL);
and see what your app will say. It can be permissions or php.ini. All will be told.
Quite easy, eh? ;)
If these magic lines won't help, there are several other ways, the manual has a good manual in it: http://php.net/manual/en/configuration.changes.php
When your server goes public, don't forget to change these lines to
ini_set('display_errors',0);
ini_set('log_errors',1);
error_reporting(E_ALL);
and see error messages in the error log, not revealing it to the possible hackers and innocent users.

Resources