Creating Website from Scratch

Discussion in 'Tech Discussion' started by eryafii, Oct 21, 2019.

  1. eryafii

    eryafii Well-Known Member

    Joined:
    Feb 3, 2017
    Messages:
    176
    Likes Received:
    94
    Reading List:
    Link
    I have a homework where I need to create a website of an organization using PHP and have databases.

    How do I include links that updates on its own? For example, the latest discussions here in Novelupdates where the latest 2 threads are shown?

    I'm creating a forum website for the organization btw and I thought that novelupdates forum is really cool and would like to incorporate some features but dont know how.

    Do you have any links for tutorials or other recommendations? I will really appreciate it. Thanks
     
    Chafalleiro likes this.
  2. sgrey

    sgrey Well-Known Member

    Joined:
    Jul 12, 2017
    Messages:
    1,215
    Likes Received:
    1,497
    Reading List:
    Link
    do you need to write one, or do you need to just make any web site with ready tools?
     
    Chafalleiro likes this.
  3. Underload

    Underload <I need someone to scratch my back!>

    Joined:
    Jul 1, 2016
    Messages:
    1,299
    Likes Received:
    845
    Reading List:
    Link
    You have my best wishes. Good luck.
     
  4. eryafii

    eryafii Well-Known Member

    Joined:
    Feb 3, 2017
    Messages:
    176
    Likes Received:
    94
    Reading List:
    Link
    Our professor allowed us to use tools
     
    Chafalleiro likes this.
  5. sgrey

    sgrey Well-Known Member

    Joined:
    Jul 12, 2017
    Messages:
    1,215
    Likes Received:
    1,497
    Reading List:
    Link
    if you want to make a forum, one of the easiest ways would be phpbb, mybb or something similar...
    there is also wordpress and such..

    Are you going to publish it, or it will be hosted only on your computer for the class purpose?
     
    Chafalleiro and eryafii like this.
  6. eryafii

    eryafii Well-Known Member

    Joined:
    Feb 3, 2017
    Messages:
    176
    Likes Received:
    94
    Reading List:
    Link
    Only for the computer class.
     
  7. sgrey

    sgrey Well-Known Member

    Joined:
    Jul 12, 2017
    Messages:
    1,215
    Likes Received:
    1,497
    Reading List:
    Link
    in that case, you will need to install a database such as MySQL as well. It might be a good idea to also install PHPMyAdmin.
    you will also need a web server, so perhaps an apache.
    Everything is fairly straightforward to install.

    an alternative would be to find a free hosting that provides this stuff for you
     
    Chafalleiro and eryafii like this.
  8. eryafii

    eryafii Well-Known Member

    Joined:
    Feb 3, 2017
    Messages:
    176
    Likes Received:
    94
    Reading List:
    Link
    I already installed those and can use it to view php files.

    Is this free? Because i'm poor af
     
    Chafalleiro likes this.
  9. sgrey

    sgrey Well-Known Member

    Joined:
    Jul 12, 2017
    Messages:
    1,215
    Likes Received:
    1,497
    Reading List:
    Link
    good, then you are set
    yep, all of these are free. just download phpBB and try it out.
    wordpress is as far as I know online only.. they didn't release their engine for download. The others you can download with no problem
     
    Chafalleiro and eryafii like this.
  10. eryafii

    eryafii Well-Known Member

    Joined:
    Feb 3, 2017
    Messages:
    176
    Likes Received:
    94
    Reading List:
    Link
    Thanks a lot
     
  11. xiazixin

    xiazixin Well-Known Member

    Joined:
    Dec 7, 2017
    Messages:
    1,402
    Likes Received:
    669
    Reading List:
    Link
  12. NodiX

    NodiX Well-Known Member

    Joined:
    Jul 25, 2017
    Messages:
    223
    Likes Received:
    148
    Reading List:
    Link
    NUF uses XenForo which isn't free, license alone cost $160. You can check its price here: https://xenforo.com/purchase/

    If it's a neat and free forum you're looking I'd recommend you to use the same forum engine as Qi Webnovel is using, Flarum, which is surprisingly free and open source. Another option for modern open source forum is Discourse, but that's written on Ruby instead of PHP if my memory is correct.
     
  13. Ai chan

    Ai chan Queen of Yuri, Devourer of Traps, Thrusted Witch

    Joined:
    Nov 7, 2015
    Messages:
    11,278
    Likes Received:
    24,346
    Reading List:
    Link
    Can't you just use RSS? You know that web feed feature that most blogging sites have that informs you whenever something new is posted. It's one of the ways Novelupdates retrieve links.

    Or you can use a time-specific content scraper which opens the URL of the website already listed in its database and scrapes any new post from that URL every 5 minutes (for example). Ai-chan isn't sure if there is a tool for this, you'd probably have to code it yourself.

    EDIT: Oh wait, this thread was from a month ago. Guys! He probably already submitted the project to his professor!