As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I've got a CMS which I have been building over the last couple of years which is pretty big and does what the website needs perfectly. I'm about to re-build the frontend of the website using Symfony2 and was just looking for re-assurance that I could use my existing CMS which has no Symfony2 components and is pretty much flat PHP with a Symfony2 frontend? I will probably even put the CMS on a subdomain of the website so the website files will be completely separate but would obviously share the same database.
Yes, there's no reason why you wouldn't be able to do this. You'd want to be careful of things such as result caching though as values may be updated in a completely separate system that wouldn't invalidate the cache.
Have you considered just using Silex instead if this is just for the frontend? It's much more lightweight so should provide better performance.
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I am a asp.net webforms developer (have 4 years of expirience), and have some expirience with MVC and razor engine + normal front end like jquery/templating and so on. Im used to build sites up from scratch. Yesterday ive got an idea to learn one of the CMS systems which everybody talks about. I chose Umbraco to be the system of my choice. Ive lerned some basics like templating, document types, content handling and so on.
Right now i really dont see when i should use umbraco and when to use plain asp.net webforms/MVC to build a website.
Can anybody explain me what is it that make umbraco so good that alot of people use it? The only thing i can see is that it makes some clear structure of a webpage.
As with all other Content Management Systems (CMS), they are build for the end-users to manage the content of their website in an easy way without the need of understanding, html, php or other programming languages.
Besides this, Umbraco is a powerful and flexible CMS build on the ASP.NET Framework and it is free and open-source.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am a student and I'm currently doing senior project. I'm required to work on the application control or application platform to let a group of programmer work together on a server with the security. I would like to know how a group of programmer work together on a server and how to work using visual studio 2010 on a server.
Thanks
First of all you have to use a version control system for your code such as SVN, which is one of the most popular.
There are also some other popular systems like GIT. You should try them both and see what fit your needs.
You'll probably want to create user accounts for each programmer on the server and allow them ssh access. Look into git for project version control.
i recommed your download here !
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am going to build a basic small business site for myself and would like to get a head start with a quality ASP.NET template and don't mind purchasing one.
Can you recommend a reputable site I might check out for this?
not specifically asp.net but http://www.themeforest.net have some good themes which could easily be used in asp.net
I think you would need to know what exactly you are going to do. If you are just after a web page template then look at a css web page template
If you are planning to have some sort of specific functionality and interactivity then how about Kentico which is a CMS system.
Failing that, there are a good few choices if you download the Microsoft Web Platform Installer
Regards,
Dom
Although Wordpress is used more for blogging and not asp.net, I like the aesthetics of its available themes and you can easily port them an asp.net:
http://wordpress.org/extend/themes/
Not a template site, but this gave me ideas and inspiration:
http://ecommercegallery.com/
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am finding a drupal module to enable file sharing between users, somebody know someone???
I've been investigating the same thing, and there are a number of options, based on your requirements:
You can use node attachments, as described above.
You can use the FileField module, which would give finer grain permissions.
You can use the WebFM module for a more file-system oriented approach.
Or, you can go whole-hog to a document management system and integrate KnowledgeTree or Alfresco.
I think I'm leaning toward FileField for simplicity, although I've thought hard about going full DMS.
You'll want to have a look at the /admin/settings/file-system page and then enable the Upload core module (/admin/build/modules) I assume, otherwise, you'll need to clarify your question.
Drupal is not the application for p2p sharing.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm a C# and PHP developer. At work, I just got some classic ASP stuff dumped in my lap. I only need to make edits for a few weeks so I don't want to have to learn too much about legacy stuff I'll never touch again. However, I do need to be able to do my job for this duration.
How can I get a good crash course in ASP? I need to get good-enough at it very quickly. What sites/books/resources would best fit this need?
http://www.w3schools.com has a really good ASP tutorial. It's actually what I used when I went into classic ASP from a PHP background in school.
realistically, classic ASP is just VBScript + a couple of libraries that handle web interaction.
The fastest way is here:
http://msdn.microsoft.com/en-us/library/d1wf56tt.aspx
understand the basics of VBScript (it's relatively tiny)
then understand the basic objects of classic ASP
Request
Response
Server
Session
Application
ASPError
check out http://www.devguru.com/ and go to the vbscript section for quick references to their functions