d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Programming & Development > Where Do I Start?
12Next
Add Reply New Topic New Poll
Member
Posts: 14,754
Joined: Dec 14 2006
Gold: 0.00
Dec 15 2014 06:13pm
I want to make my own craigslist style site.
I want it to have category style posting ie: [New Listing] -> select category [Electronics] -> select subcategory [Game Consoles].
I want it to have a jsp style posting system that has a post prefix [ WTB ] or [ WTS ].
I want it to have commenting/replying directly in the post, rather than having to have emails sent back and forth.
I want it to have ONLY facebook/social login.
I need it to be mobile friendly.

I've been through most of the codecademy "Build a website" courses, and that's all fairly simple, but that doesn't really help me understand what coding languages I need to make a site like this, or teach me how to do certain things like having a report posting page and admin panel, etc.
I don't understand things like how to create a working functioning interactive website. I understand how to create simple html webpages and using css styles to theme it, but to have logins and input fields to make posts and whatnot is beyond my level of comprehension.

Where do I start?

This post was edited by ThePwnEffect on Dec 15 2014 06:35pm
Member
Posts: 32,925
Joined: Jul 23 2006
Gold: 3,804.50
Dec 15 2014 07:01pm
if you intend to make $$ from this site, i suggest you start by hiring a developer to do it for you.

if you intend to have people other than you using this site, i suggest you start by hiring a developer to do it for you.

if none of the above apply, i suggest you look at a server side language. you have a lot of choices. php, ASP.NET, python, etc. just keep in mind you're in it for the long haul. you'll spend many months on it if you're coding it yourself as a newbie. it will also be extremely difficult to convince people to use your site. you'll likely have to pay people to "use" it while you're marketing it. but if this is just for a hobby or instructional purposes, have fun :)
Member
Posts: 14,754
Joined: Dec 14 2006
Gold: 0.00
Dec 15 2014 07:22pm
Quote (carteblanche @ Dec 15 2014 09:01pm)
if you intend to make $$ from this site, i suggest you start by hiring a developer to do it for you.

if you intend to have people other than you using this site, i suggest you start by hiring a developer to do it for you.

if none of the above apply, i suggest you look at a server side language. you have a lot of choices. php, ASP.NET, python, etc. just keep in mind you're in it for the long haul. you'll spend many months on it if you're coding it yourself as a newbie. it will also be extremely difficult to convince people to use your site. you'll likely have to pay people to "use" it while you're marketing it. but if this is just for a hobby or instructional purposes, have fun :)


Is it really that difficult to do?
My only intended source of revenue is non intrusive ads.

Hiring someone to do something like this would be very costly, would it not?
Member
Posts: 14,754
Joined: Dec 14 2006
Gold: 0.00
Dec 15 2014 07:54pm
Is there any software that at the very least (for free or very cheap) has most of what I'm asking?
I've tried OSClass, OpenClassifieds, tried using SMF forums, and it's all very limited.
Only thing I haven't tried is WordPress with a Classifieds theme/addon, due to the high cost of these themes and the lack of being able to really test them out before purchasing.
Member
Posts: 9,412
Joined: Nov 18 2009
Gold: 20.00
Dec 16 2014 11:41am
Quote (carteblanche @ Dec 15 2014 07:01pm)
if you intend to make $$ from this site, i suggest you start by hiring a developer to do it for you.

if you intend to have people other than you using this site, i suggest you start by hiring a developer to do it for you.

if none of the above apply, i suggest you look at a server side language. you have a lot of choices. php, ASP.NET, python, etc. just keep in mind you're in it for the long haul. you'll spend many months on it if you're coding it yourself as a newbie. it will also be extremely difficult to convince people to use your site. you'll likely have to pay people to "use" it while you're marketing it. but if this is just for a hobby or instructional purposes, have fun :)


My family members wouldn't even use my first website.

It was so sad.
Member
Posts: 1,358
Joined: Dec 30 2012
Gold: 0.10
Dec 16 2014 12:13pm
Quote (PixileDust @ Dec 16 2014 09:41am)
My family members wouldn't even use my first website.

It was so sad.


LOL
Member
Posts: 4,432
Joined: Sep 19 2007
Gold: 21,761.33
Dec 23 2014 01:20pm
Quote (ThePwnEffect @ Dec 16 2014 01:22am)
Is it really that difficult to do?
My only intended source of revenue is non intrusive ads.

Hiring someone to do something like this would be very costly, would it not?


aim lower bro. you are a nub.
Retired Moderator
Posts: 15,410
Joined: Jun 2 2005
Gold: 9,504.66
Trader: Trusted
Dec 24 2014 01:56am
Quote (ThePwnEffect @ 15 Dec 2014 18:13)
I want to make my own craigslist style site.
I want it to have category style posting ie: [New Listing] -> select category [Electronics] -> select subcategory [Game Consoles].
I want it to have a jsp style posting system that has a post prefix [ WTB ] or [ WTS ].
I want it to have commenting/replying directly in the post, rather than having to have emails sent back and forth.
I want it to have ONLY facebook/social login.
I need it to be mobile friendly.


general knowledge of: php, sql, javascript, css, html will permit you to accomplish all of the above.

html, css: visual and design aspects, including a mobile friendly interface, keyword: responsive design.
php, sql, javascript: all functional requirements can be met with these. both javascript and php will provide the desired function while sql will provide help you meet data storage/access needs.

as for the fb login, you can use either the php or js sdk. https://developers.facebook.com/docs/

there are many resources on the web, use google to find tutorials which are appropriate for your skill level in the above languages and invest the time.
Member
Posts: 3,139
Joined: Feb 16 2007
Gold: 151.00
Dec 24 2014 09:55am
Quote (Markro @ 24 Dec 2014 10:56)
general knowledge of: php, sql, javascript, css, html will permit you to accomplish all of the above.

html, css: visual and design aspects, including a mobile friendly interface, keyword: responsive design.
php, sql, javascript: all functional requirements can be met with these. both javascript and php will provide the desired function while sql will provide help you meet data storage/access needs.

as for the fb login, you can use either the php or js sdk. https://developers.facebook.com/docs/

there are many resources on the web, use google to find tutorials which are appropriate for your skill level in the above languages and invest the time.


PHP is not good for the long haul though, it is a declining language as far as backend development goes
Retired Moderator
Posts: 15,410
Joined: Jun 2 2005
Gold: 9,504.66
Trader: Trusted
Dec 24 2014 12:53pm
Quote (yaf @ 24 Dec 2014 09:55)
PHP is not good for the long haul though, it is a declining language as far as backend development goes


facebook disagrees with you, they run php, same with wikipedia. granted many web presences are transitioning away from it and towards java/rails/python platforms (among others). that still doesn't change the fact that its a perfect introductory language for his project.
Go Back To Programming & Development Topic List
12Next
Add Reply New Topic New Poll