content-management-system

How to design an extensible CMS for Google App Engine?

血红的双手。 提交于 2019-12-11 06:05:36
问题 I am a fan of the extensibility of the CMSes. You can upload some code (usually PHP), authorize it from the CMS admin panel and it's running. I wonder if it is possible in Google App Engine. I haven't checked the extensibility of existing CMSes for Google App Engine, but if there is any of them that supports plugins I would like to know how they did it, and whether they are JS plugins only, or if they support Python/Java plugins too. 回答1: Actually I see no conceptual problem with supporting

GWT with a Content Management System

家住魔仙堡 提交于 2019-12-11 05:43:31
问题 I have GWT page with rich functionality. I wanted to use this module in different web sites as a widget. But due to limited flexibility of this module I can't change design easily, nor embed this module into different SEO(search engine optimized) pages. If there any CMS or methodology to ease work with GWT? 回答1: Take a look at GaSP: http://code.google.com/p/gasp-web-engine/ It's a CMS that I wrote based on GWT/SQL/PHP. It's pretty flexible. Let me know if you are willing to test it out. It

Resources for building public information displays using HTML/CSS? [closed]

℡╲_俬逩灬. 提交于 2019-12-11 05:20:51
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . I would like to displays schedules, maps and other informations on displays in a building for visitors. These displays would provide at most mouse input but no keyboard. Ten years ago this was the domain of Macromedia Director but today I believe that browsers and content management systems provide a better

rewrite ?id=__ to page title stored in db row

有些话、适合烂在心里 提交于 2019-12-11 05:03:02
问题 Thanks in advance for any help. I am trying to figure out how to rewrite dynamic urls created with a simple cms programming I am building. The code outputs the URL with the ID (www.mysite.com/index.php?id=1). I would like to modify the code so that it outputs the title of the row in the db with the id of 1 such as www.mysite.com/home or www.mysite.com/about where about is the title stored in the row of the db with an id of 1. Here is an example of how the code outputs: $result = mysql_query(

Using a CMS to Design a Web Application

馋奶兔 提交于 2019-12-11 04:17:45
问题 Is it at all practical to try to use Joomla or Drupal to design anything but brochure-ware or a blogging website? Are the modules/extensions frameworks really flexible enough for designing web applications that have a lot of data entry and reporting capabilities, or would you just be better designing it using a MVC framework, ASP.NET or just plain to-the-metal PHP? Say you want to design a web application that is primarely used for entering in data and reporting on that data. For example: you

How to stop ORBIS CMS from automatically inserting <p> tags

假如想象 提交于 2019-12-11 04:12:44
问题 Driving me crazy, finally found a decent CMS that is open source and can be installed, it's called Orbis CMS. One problem, can't for the life of me think why someone creating such sweet software wouldn't know that not all editable regions need the <p> tags when stylesheets are used! I'm using it on an already designed and developed page in xhtml and css so have all my styles etc sorted. But now that it inserts <p> everywhere you edit it stuffs up my <h1> <h2> etc tags. Does anyone know a work

Image URL Naming Scheme

陌路散爱 提交于 2019-12-11 02:34:58
问题 Prologue: I'm building a sort of CMS/social networking service that will host many images. I'm intending on using Eucalyptus/Amazon S3 to store the images and was wondering about the significance of the seemingly-random file-names used by sites like Tumblr, Twitter, &c., e.g. 31.media.tumblr.com/d6ba16060ea4dfd3c67ccf4dbc91df92/tumblr_n164cyLkNl1qkdb42o1_500.jpg and pbs.twimg.com/media/Bg7B_kBCMAABYfF.jpg How do they generate these strings, and what benefits does this incur over just

Which additional securities do you add to your open source cms installations?

醉酒当歌 提交于 2019-12-11 02:10:49
问题 I know that being open source does not necessarily makes a program more/less secure than closed source (let's assume this neutrality, to keep flames out of this post). Fact is: since the source code is open, everybody knows your defaults urls, default administrator logins, etc. I'm using Wordpress and Joomla in some projects of my clients, and I always try to create some kind of additional security. Excluding always updating your files to latest version, what do you usually do to add more

Drupal & Regular PHP Integration

青春壹個敷衍的年華 提交于 2019-12-11 01:48:16
问题 I'm building a new website which has one core application and many content pages. Content pages are mostly dynamic and I require a way to manage this dynamic content on a regular basis. The core application's main functionality is a 3 step process or reading user data (input page), reading data from MySQL (product page) and submitting an application to an email address (application page). Ideally I would like to build the core application in regular PHP and leverage Drupal for its content

October CMS: How to extend the backend user with role scope

拜拜、爱过 提交于 2019-12-10 18:23:02
问题 I've been able to extend the Backend\Models\User class and add a scoped query method to retrieve only super users: public function boot() { User::extend(function($model) { $model->addDynamicMethod('scopeIsSuperUser', function($query) { return $query->where('is_superuser', 1); }); }); } How can I have a scope method for users who are in a specific group? Like I only want users whose role is " BookManager ". Is it possible to use the $groups relation already defined on the Backend\Models\User