Forum

> > Unreal Software > What website software
Forums overviewUnreal Software overviewLog in to reply

English What website software

14 replies
To the start Previous 1 Next To the start

old What website software

Greenhawk
User Off Offline

Quote
I like the style of how this site's set up.I'd like to know what software was used to make this site. Or was it made with javascript or Php?

old Re: What website software

Geez
GAME BANNED Off Offline

Quote
As you should've guessed from .php endings on this website, it makes use of PHP. MySQL is used for storing data. JavaScript or more precisely jQuery is used for tooltips, post editor and more/spoiler tags.

The CMS used here is written by DC from scratch and is closed source.


Clear enough?

old Re: What website software

Geez
GAME BANNED Off Offline

Quote
I wouldn't recommend you developing your own CMS since:

> you need to know PHP and SQL good enough
> even if you do the above, you'll probably suck with design and leave a lot of vulerabilities (even the biggest CMSs do)
> you can always pick up eg. PhpBB and make a custom theme for it

That's it. If you still want to do your own from scratch, maybe sources of this could help you:

http://sourceforge.net/projects/cmslightv2/

old Re: What website software

oxytamine
User Off Offline

Quote
Never use CMS - full of shit to slow down your web-site. Full of exploits since open-source.

Write your own CMS instead. You can base it on any good framework to soften development. I prefer Silex and Symphony2.

Since you're new, I don't recommend starting with MySQL - it sucks. Try PostgreSQL, Percona Server with XtraDB, MariaDB - there are many good alternatives. MySQL and its InnoDB just dies with 350 requests/second in case you're low on resources.

Don't use Apache - otherwise it will be hard to switch to another web-server. Apache is only good when complied from source only with things you do need, if you can - do so. Otherwise it's an enterprize server which is good if you have more than 10 projects on your server running PHP, Python, Perl, altogether. What I mean is that Apache can handle them all great, so there is a need of Apache if you're running hardcore projects. If you want a simple forum running on PHP - Apache will create a huge load & many other troubles. Try lighthttpd or nginx (my choice) instead.

Finally, one of the most mistakes of newbies to programming is letting server do everything for user. Try to load user instead - as much as you can with JavaScript. More user does - less your server loads. But never ever trust user input. That means that it's good to use JavaScript for dynamic content, some requests, sorting tables, etc. But never to send some encrypted data to PHP script - it can be easily spoofed & faked then.
edited 1×, last 20.05.13 02:53:30 am

old Re: What website software

Greenhawk
User Off Offline

Quote
user oxytamine has written
Never use CMS - full of shit to slow down your web-site. Full of exploits since open-source.

Write your own CMS instead. You can base it on any good framework to soften development. I prefer Silex and Symphony2.

Since you're new, I don't recommend starting with MySQL - it sucks. Try PostgreSQL, Percona Server with XtraDB, MariaDB - there are many good alternatives. MySQL and its InnoDB just dies with 350 requests/second in case you're low on resources.

Don't use Apache - otherwise it will be hard to switch to another web-server. Apache is only good when complied from source only with things you do need, if you can - do so. Otherwise it's an enterprize server which is good if you have more than 10 projects on your server running PHP, Python, Perl, altogether. What I mean is that Apache can handle them all great, so there is a need of Apache if you're running hardcore projects. If you want a simple forum running on PHP - Apache will create a huge load & many other troubles. Try lighthttpd or nginx (my choice) instead.


I agree MySQL is alright but yeah i'll take a look at these stuff. I'm pretty sure we all want to make a site like @user DC: DC made.

old Re: What website software

oxytamine
User Off Offline

Quote
DC's web-site has nothing good (and nothing bad though). That's what I like about it. No useless features, simplicity in all the ways.

old Re: What website software

DC
Admin Off Offline

Quote
UnrealSoftware.de is actually not based on a CMS at all. All pages and the navigation are hardcoded. I'm not using a database for those. Only the community stuff (users/forum/file archive) is dynamic with database back-end. I wrote all that stuff myself from scratch to ensure that it works as I want it to work. I'm not using any third party forum/CMS software.
To the start Previous 1 Next To the start
Log in to replyUnreal Software overviewForums overview