This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#276 2012-01-17 13:02:43

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Scratch Forum Development Thread

scimonster wrote:

TRocket wrote:

Zeusking19 wrote:


The permissions can be easily changed. So no.

whats wrong with the permisions?

If you knew anything about wikis...
We should really be using the built in Administrators status, instead of the "admin". And someone needs to be a bureaucrat, to manage stuff properly. (Me? LOL)

we can't since this is what SF does for you!


http://i.imgur.com/1QqnHxQ.png

Offline

 

#277 2012-01-17 13:05:58

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Scratch Forum Development Thread

TRocket wrote:

scimonster wrote:

TRocket wrote:


whats wrong with the permisions?

If you knew anything about wikis...
We should really be using the built in Administrators status, instead of the "admin". And someone needs to be a bureaucrat, to manage stuff properly. (Me? LOL)

we can't since this is what SF does for you!

SF put in the admin and editor things?

Offline

 

#278 2012-01-17 13:07:05

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Scratch Forum Development Thread

scimonster wrote:

TRocket wrote:

scimonster wrote:


If you knew anything about wikis...
We should really be using the built in Administrators status, instead of the "admin". And someone needs to be a bureaucrat, to manage stuff properly. (Me? LOL)

we can't since this is what SF does for you!

SF put in the admin and editor things?

yes


http://i.imgur.com/1QqnHxQ.png

Offline

 

#279 2012-01-17 15:34:53

Zeusking19
Scratcher
Registered: 2011-07-10
Posts: 1000+

Re: Scratch Forum Development Thread

Hey guys,

The issues may be due to the way the system is handled, and sometimes the settings our only available to the root admin of the project. Let me have a look  smile

Zeus


http://i49.tinypic.com/2w7e1jm.pnghttp://dragcave.net/image/eFGFz.gifhttp://dragcave.net/image/9hE5q.gif

Offline

 

#280 2012-01-24 12:21:35

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Scratch Forum Development Thread

bump


http://i.imgur.com/1QqnHxQ.png

Offline

 

#281 2012-01-24 12:52:09

Zeusking19
Scratcher
Registered: 2011-07-10
Posts: 1000+

Re: Scratch Forum Development Thread

Notice:

The sourceforge wiki isnt working correctly for what we are going to do. I will get a new one up soon.


http://i49.tinypic.com/2w7e1jm.pnghttp://dragcave.net/image/eFGFz.gifhttp://dragcave.net/image/9hE5q.gif

Offline

 

#282 2012-01-24 12:55:37

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Scratch Forum Development Thread

Zeusking19 wrote:

Notice:

The sourceforge wiki isnt working correctly for what we are going to do. I will get a new one up soon.

what hosting will you use?


http://i.imgur.com/1QqnHxQ.png

Offline

 

#283 2012-01-24 13:02:06

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Scratch Forum Development Thread

To keep this more organized, should we use the forums that come with the SF project?  tongue

Offline

 

#284 2012-01-24 13:27:38

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Scratch Forum Development Thread

If we're going to be having the forum system run on AJAX, here is something very important: bookmarking URLs. If everything just changed without any URL changes, pages couldn't be bookmarked, and everything could be lost with a <backspace>. The fastest-changing part of a URL is the part after the hash: it doesn't load a new page. So here's how I think we should format the hash parts of a URL:

index.php#topic/85150
index.php#topic/85150|p/12
index.php#post/700164
index.php#forum/6
index.php#forum/6|p/4
index.php#tag/php(|p/2)
index.php#search/724281439(|p/2)
index.php#search/show_24h(|p/2)
index.php#search/show_unanswered(|p/2)
index.php#search/show_user|uid/105129(|p/2)
index.php#search/show_new(|p/2)
index.php#post/85150(|qid/700164)
index.php#edit/1000000 (I could actually use that URL [I made the 1,000,000th post!])
index.php#delete/1090638
index.php#report/666896
index.php#markread

I'm really not listing them all though. ^^ You probably get the format by now though.

Offline

 

#285 2012-01-24 16:45:20

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Scratch Forum Development Thread

scimonster wrote:

If we're going to be having the forum system run on AJAX, here is something very important: bookmarking URLs. If everything just changed without any URL changes, pages couldn't be bookmarked, and everything could be lost with a <backspace>. The fastest-changing part of a URL is the part after the hash: it doesn't load a new page. So here's how I think we should format the hash parts of a URL:

index.php#topic/85150
index.php#topic/85150|p/12
index.php#post/700164
index.php#forum/6
index.php#forum/6|p/4
index.php#tag/php(|p/2)
index.php#search/724281439(|p/2)
index.php#search/show_24h(|p/2)
index.php#search/show_unanswered(|p/2)
index.php#search/show_user|uid/105129(|p/2)
index.php#search/show_new(|p/2)
index.php#post/85150(|qid/700164)
index.php#edit/1000000 (I could actually use that URL [I made the 1,000,000th post!])
index.php#delete/1090638
index.php#report/666896
index.php#markread

I'm really not listing them all though. ^^ You probably get the format by now though.

Or just have a link button which gives you a link to /link?l=them above which posts this to the index

And we can have a back button on the page


http://i.imgur.com/1QqnHxQ.png

Offline

 

#286 2012-01-24 20:07:22

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Scratch Forum Development Thread

TRocket wrote:

scimonster wrote:

If we're going to be having the forum system run on AJAX, here is something very important: bookmarking URLs. If everything just changed without any URL changes, pages couldn't be bookmarked, and everything could be lost with a <backspace>. The fastest-changing part of a URL is the part after the hash: it doesn't load a new page. So here's how I think we should format the hash parts of a URL:

index.php#topic/85150
index.php#topic/85150|p/12
index.php#post/700164
index.php#forum/6
index.php#forum/6|p/4
index.php#tag/php(|p/2)
index.php#search/724281439(|p/2)
index.php#search/show_24h(|p/2)
index.php#search/show_unanswered(|p/2)
index.php#search/show_user|uid/105129(|p/2)
index.php#search/show_new(|p/2)
index.php#post/85150(|qid/700164)
index.php#edit/1000000 (I could actually use that URL [I made the 1,000,000th post!])
index.php#delete/1090638
index.php#report/666896
index.php#markread

I'm really not listing them all though. ^^ You probably get the format by now though.

Or just have a link button which gives you a link to /link?l=them above which posts this to the index

And we can have a back button on the page

But then you have the problem of going back to the index if your browser crashes. ._.
Sidenote: How do you POST things directly from a PHP script?

Offline

 

#287 2012-01-25 02:53:02

Zeusking19
Scratcher
Registered: 2011-07-10
Posts: 1000+

Re: Scratch Forum Development Thread

scimonster wrote:

TRocket wrote:

scimonster wrote:

If we're going to be having the forum system run on AJAX, here is something very important: bookmarking URLs. If everything just changed without any URL changes, pages couldn't be bookmarked, and everything could be lost with a <backspace>. The fastest-changing part of a URL is the part after the hash: it doesn't load a new page. So here's how I think we should format the hash parts of a URL:

I'm really not listing them all though. ^^ You probably get the format by now though.

Or just have a link button which gives you a link to /link?l=them above which posts this to the index

And we can have a back button on the page

But then you have the problem of going back to the index if your browser crashes. ._.
Sidenote: How do you POST things directly from a PHP script?

Try having a look at http://www.scriptschool.com/news/20050409/22/
for your  sidenote.


http://i49.tinypic.com/2w7e1jm.pnghttp://dragcave.net/image/eFGFz.gifhttp://dragcave.net/image/9hE5q.gif

Offline

 

#288 2012-01-25 08:06:12

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Scratch Forum Development Thread

Zeusking19 wrote:

scimonster wrote:

TRocket wrote:


Or just have a link button which gives you a link to /link?l=them above which posts this to the index

And we can have a back button on the page

But then you have the problem of going back to the index if your browser crashes. ._.
Sidenote: How do you POST things directly from a PHP script?

Try having a look at http://www.scriptschool.com/news/20050409/22/
for your  sidenote.

ScriptSchool.com is down...

Offline

 

#289 2012-01-25 10:05:38

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Scratch Forum Development Thread

Hardmath123 had a great suggestion: collapsible forum sections!
Here's the mockup he made:
http://www.imgpaste.com/Mj7A.png

Offline

 

#290 2012-01-25 10:06:47

Hardmath123
Scratcher
Registered: 2010-02-19
Posts: 1000+

Re: Scratch Forum Development Thread

scimonster wrote:

Hardmath123 had a great suggestion: collapsible forum sections!
Here's the mockup he made:
http://www.imgpaste.com/Mj7A.png

Wow, news travels fast! If you implement this, may I suggest disclosure triangles rather than [...]s? They look... coolerbig_smile


Hardmaths-MacBook-Pro:~ Hardmath$ sudo make $(whoami) a sandwich

Offline

 

#291 2012-01-25 10:13:38

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Scratch Forum Development Thread

Hardmath123 wrote:

scimonster wrote:

Hardmath123 had a great suggestion: collapsible forum sections!
Here's the mockup he made:
http://www.imgpaste.com/Mj7A.png

Wow, news travels fast! If you implement this, may I suggest disclosure triangles rather than [...]s? They look... coolerbig_smile

Yeah, maybe.  tongue

Offline

 

#292 2012-01-26 13:13:58

Zeusking19
Scratcher
Registered: 2011-07-10
Posts: 1000+

Re: Scratch Forum Development Thread

SVN Update:

Update the lib folder for read, unread and locked topic icons.


http://i49.tinypic.com/2w7e1jm.pnghttp://dragcave.net/image/eFGFz.gifhttp://dragcave.net/image/9hE5q.gif

Offline

 

#293 2012-01-26 13:21:29

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Scratch Forum Development Thread

SVN Update:

AJAX!  big_smile   big_smile  put pages in /pages insted!

please could someone make an animated loading icon!


http://i.imgur.com/1QqnHxQ.png

Offline

 

#294 2012-01-26 13:28:41

sci_test
Scratcher
Registered: 2011-06-22
Posts: 100+

Re: Scratch Forum Development Thread

TRocket wrote:

SVN Update:

AJAX!  big_smile   big_smile  put pages in /pages insted!

please could someone make an animated loading icon!

Weren't we not supposed to do any coding until all the brainstorming has been done? >_<


[signature removed - please be respectful]
Last edited by scimonster (1970-01-01 00:00:00)

Offline

 

#295 2012-01-26 14:12:00

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Scratch Forum Development Thread

sci_test wrote:

TRocket wrote:

SVN Update:

AJAX!  big_smile   big_smile  put pages in /pages insted!

please could someone make an animated loading icon!

Weren't we not supposed to do any coding until all the brainstorming has been done? >_<

Mock-ups are allowed, but we won't actually be coding the software yet.

Offline

 

#296 2012-01-31 14:37:55

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Scratch Forum Development Thread

bump anyone got any ideas about what to include?


http://i.imgur.com/1QqnHxQ.png

Offline

 

#297 2012-01-31 14:56:30

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Scratch Forum Development Thread

Not sure. I think we should start to decide what we will use. Like a MySQL database, the programming language, etc.

Offline

 

#298 2012-01-31 15:08:36

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: Scratch Forum Development Thread

Magnie wrote:

Not sure. I think we should start to decide what we will use. Like a MySQL database, the programming language, etc.

i think MySQL with PHP JS AJAX(yes i know it's not a language) and HtML


http://i.imgur.com/1QqnHxQ.png

Offline

 

#299 2012-01-31 15:58:24

Zeusking19
Scratcher
Registered: 2011-07-10
Posts: 1000+

Re: Scratch Forum Development Thread

TRocket wrote:

Magnie wrote:

Not sure. I think we should start to decide what we will use. Like a MySQL database, the programming language, etc.

i think MySQL with PHP JS AJAX(yes i know it's not a language) and HtML

I am adding MySQLi Support in the installer btw


http://i49.tinypic.com/2w7e1jm.pnghttp://dragcave.net/image/eFGFz.gifhttp://dragcave.net/image/9hE5q.gif

Offline

 

#300 2012-01-31 15:59:05

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Scratch Forum Development Thread

TRocket wrote:

Magnie wrote:

Not sure. I think we should start to decide what we will use. Like a MySQL database, the programming language, etc.

i think MySQL with PHP JS AJAX(yes i know it's not a language) and HtML

Okay then, those work.

So these could be the files we'll need:

index.php
post.php - Displays a post based on the ID entered (like: post.php?id=123)
login.php - Either displays a login, or opens the login page
logout.php
category.php or board.php
topic.php
profile.php
admin/admin.php
install/install.php
include/config.php
skins/default.css
skins/[username].css

Though that is obviously an incomplete list, so any suggestions?

Offline

 

Board footer