Free Web Hosting Forum
(#1 (permalink))
Old
Junior Member
Amos is on a distinguished road
 
Posts: 12
Join Date: Jul 2012
Arrow Short Stories Community - 07-08-2012, 05:55 PM

I'm creating a website (shortstoriescommunity.com) for sharing short stories and ideas for short stories. Hopefully some day we will grow to be a decent sized community. However, currently the site is in a sort of beta stage, so I'm looking for feedback and suggestions.

In particular, I'm looking for help in the following areas:
*The look and feel of the website. As you can probably tell from the lack of images on the site, I am a horrible artist. What do you think of the color scheme? If any of you have suggestions or contributions, or if anyone can design a better logo, that would be awesome. I am working on making it look more professional.

*Search engine optimization. Currently we barely appear on the tenth page of any related google search. Is there any way to improve this other than waiting?

*Feedback on any other feature on the website.

Feel free to post any short story you have written Or, if you know someone that is into short stories you could refer them to my site.
Reply With Quote
Sponsored Links
(#2 (permalink))
Old
Member
Get Group is on a distinguished road
 
Posts: 45
Join Date: Apr 2012
Default 07-09-2012, 12:43 PM

Hey, cool site, but the voting widget could be better , you know !


Regards,
Brahmnoor Singh

----

Visit My Sites-

The Technology Today

Pearls Of Poetry

& Give Your Feedback
Reply With Quote
(#3 (permalink))
Old
kuroneko's Avatar
Senior Member
kuroneko is on a distinguished road
 
Posts: 117
Join Date: Jul 2012
Default 07-09-2012, 05:10 PM

You got a nice site, you just have to keep on adding more quality contents Good luck!
Reply With Quote
(#4 (permalink))
Old
Junior Member
Amos is on a distinguished road
 
Posts: 12
Join Date: Jul 2012
Default 07-09-2012, 05:41 PM

Quote:
Originally Posted by Get Group View Post
Hey, cool site, but the voting widget could be better , you know !
how would you suggest making it better?
Reply With Quote
(#5 (permalink))
Old
echo442's Avatar
Senior Member
echo442 is on a distinguished road
 
Posts: 174
Join Date: Feb 2012
Location: UK
Default navbar color - 07-09-2012, 06:15 PM

i think if you made the navigation bar grey it will go with the other part of the site better and good luck with the site
Reply With Quote
(#6 (permalink))
Old
Junior Member
Amos is on a distinguished road
 
Posts: 12
Join Date: Jul 2012
Default 07-09-2012, 07:03 PM

Quote:
Originally Posted by echo442 View Post
i think if you made the navigation bar grey it will go with the other part of the site better and good luck with the site
Don't you think it will be a little bland if almost everything is on a grey-scale? idk, you could be right though. The green doesn't really mix with the rest of the site. What do other people think?
Reply With Quote
(#7 (permalink))
Old
Junior Member
Amos is on a distinguished road
 
Posts: 12
Join Date: Jul 2012
Default 07-17-2012, 07:14 PM

People have posted more stories on the site
If you register you can comment, rate and vote
Reply With Quote
(#8 (permalink))
Old
kuroneko's Avatar
Senior Member
kuroneko is on a distinguished road
 
Posts: 117
Join Date: Jul 2012
Default 07-17-2012, 09:03 PM

Things I noticed:
1. I think you don't check if the magic_quote is turned on or off. You have to check if magic_quote is enable and if not stripslashes the value before you put the content on your database. I checked up the source code of a certain article and it's a mess up.

This code my help you I hope you know how to implement it:
Code:
/**
 * Sanitize url request that fetch to database.
 *
 * PHP howto ・Sanitize database inputs.
 * @site http://www.denhamcoote.com/php-howto-sanitize-database-inputs.
 * @author Script created by, Denham Coote (http://www.denhamcoote.com/)
 * @note Removed 2010/10/23 because we don't need another validator.
 *
 * @returns data
 */
function frost_sanitizer( $value )
{
	if ( is_array( $value ) )
	{
		foreach( $value as $var=>$val )
		{
			$data[$var] = frost_sanitizer( $val );
		}
	}
	else
	{
		if ( get_magic_quotes_gpc() )
		{
			$value = stripslashes( $value );
		}
		$data = mysql_real_escape_string( $value );
	}
	return $data;
}
Or you can do stripslashes() or maybe str_replace().

2. You have to implement advance editor and I suggest using a popular one called TinyMCE (I use it and so is Wordpress) to fix your content's spacing.

Edit: I noticed you have editor implemented and that's good. I think your editor is not fixing the line you put into it. In Tinymce, each like becomes a paragraph (<p>&nbsp;</p>). I think you should look up your editor and fix the formatting.

Hope it helps

Last edited by kuroneko; 07-17-2012 at 09:05 PM.
Reply With Quote
(#9 (permalink))
Old
Junior Member
Amos is on a distinguished road
 
Posts: 12
Join Date: Jul 2012
Default 07-18-2012, 02:02 AM

@kuroneko
heh, your right, some of the code was a complete mess. I disabled magic quotes, which should fix the problem for future submissions. Do you know if there is any easy way to clean up the code that has already been submitted?

I had previously considered Tinymce and for one reason or another i decided against using it, but on you suggestion i checked it out again and decided it was better than i previously thought. So now im using it.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.5.2
vBulletin Skin developed by: vBStyles.com