Can I create a website/forum with wordpress?

  • Thread starter Thread starter Jarfi
  • Start date Start date
AI Thread Summary
Creating a media website with features like login, registration, profiles, forums, and blogs can be approached using various technologies. The discussion highlights the initial attempt to use HTML, which was deemed too time-consuming, leading to a shift towards WordPress. While WordPress offers themes and plugins, there is a question about the feasibility of custom designing a theme to meet specific needs. The conversation suggests that using PHP or Java servlets could provide more flexibility for custom functionality, especially if existing solutions do not meet specific requirements. Recommendations include leveraging established forum software like phpBB to avoid reinventing the wheel unless unique features are necessary. For those looking to implement more complex functionalities, learning PHP or ASP and understanding database management with MySQL or Microsoft SQL is advised. The Play! Framework is also mentioned as a viable option for Java developers seeking to build web applications.
Jarfi
Messages
384
Reaction score
12
I am trying to create a website that has a login/registration/logout and profiles with avatars, it also has forum like comment boards, blogs and stuff like that.

It's basically just a media site where people can talk on, there might even be a chat box.

I have finished all the concept work and all that so I am trying to create a prototype,

I started with HTML but realized learning it would take too much time to be worth the work(more efficient hiring a programmer)

Then I moved on to wordpress and after trying it I saw you can only use or design themes,

so my question is, for my website that is a bit forum like but has other possibilities, can I custom design a new theme with plugins in wordpress so that it does just that?

or is it better for me to use php, or maybe even java servlets(since I know java)?
 
Technology news on Phys.org
There is a lot of debate on which is better to use. That is, servlets or PHP or ASP or Perl or Ruby. Off the top of my head, PHP has a strong and large community. Using PHP or any of the above would be more suitable for your task.
 
check out phpBB or some other open source forum software.

Writing your own is re-inventing the wheel and I wouldn't suggest it unless you intend to do it better that what is already out there.
 
DavidSnider said:
check out phpBB or some other open source forum software.

Writing your own is re-inventing the wheel and I wouldn't suggest it unless you intend to do it better that what is already out there.

Agree. The other exception I'd say is if you're going to program your own, it should be because you want specific functionality that isn't supported by any forums or plugins for the available forums. I did that with one of my sites, mainly because I hate going through other peoples source code, and modifying them for certain functionality (such as adding a "like" feature or integrating some other software / processes that may serve as the foundation of your forum/web app). Since I do a lot of game development in my spare time, I ended up switching from phpbb (very excellent forum software btw) because I wanted a method of integration with achievements being tied to the profile, as well as for future leaderboards and other functionality that would just take too long to hack away at phpbb.

But to the original question, yes, you can use Wordpress, but if you're going to eventually move forward with more custom functionality, it would be more beneficial to learn php or asp, and how to utilize a database back end, such as MySQL (php/Linux servers) or Microsoft SQL (windows/asp), or if you're into torturing yourself, oracle database :p
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...

Similar threads

Back
Top