Jump to content

Website Launched!

Sign in to follow this  

Recommended Posts

Guest

The site is really looking good. But I think, it would be a good idea, if you posted news on episodes or this website on the old blogspot account, also. This way, we can easily catch up with updates, since you have to admit that they don't come frequently lately and it's quite easy to forget to check out about new stuff.

 

But I like it so far. Keep up the good work.

Share this post


Link to post
Guest

Congratulations Ross! The site looks awesome!

I'm really looking forward to English subtitles and brand new CP episodes!

Share this post


Link to post
Guest

Great to see the site up again...

 

Having no RSS is truely a bummer...

and it really shouldn't be that hard to code as well.

 

I know 'cause I've done so myself in the past.

 

If you would like me to do it... I would gladly help you out.

Share this post


Link to post
Guest

Just out of curiosity, why did you name the website Accursed Farms?

Share this post


Link to post
Guest

Nice man! Continue with your Good work! ^_^

Hey by the way you knew that there were Barney's and shepard's Mind right?

And Headcrabs(Facehuggers)'s Mind? .... w8 there's no headcrab's mind yet XD

Share this post


Link to post
Guest

Damn, this site looks good! I too, would like to know why you decided to call it "Accursed Farms". It's really cool.

 

Lack of RSS doesn't concern me at all, I didn't even know what it is before I read about it in one of news on old site, heh.

 

Anyway, I already watched "Aliens" here and it was pretty good, though youtube quality suck a little. But subtitles are great.

 

This is very easy to navigate and cool looking site. Yep, freaking good job.

Share this post


Link to post
Guest

like the new website, must of took fourever!!!

Share this post


Link to post
Guest

Ooops, I just read FAQ and know everything I need about Accursed Farms. ^^"

Share this post


Link to post
Guest

RSS is a really big deal, I can't follow your news without it.

 

Is there any reason this site couldn't have been just built on Wordpress or something rather than by scratch? Can you keep posting on the Blogger site until you have RSS sorted, even if the posts are duplicates.

 

1 with "I've coded RSS and it's really not that hard and shouldn't take too long".

Share this post


Link to post
Guest

RSS really IS a big issue, hope it gets sorted out soon

Share this post


Link to post
Guest

So far the site looks good. BUT, I don't think its necessary for each user comment to say "Comment from -so

Share this post


Link to post
Guest

Finally! Now Ross can get back to making quality machinima and posting it all on a snazzy new website to boot! Creds to Ross and the web developers who helped with the site.

Share this post


Link to post
Guest

Fantastic.

 

Props on the idea, by the way - tacking on the brand name to all your stuff and keeping it in one place. I'd never even seen those two videos in the "OTHERS" section (I pissed myself laughing at the Halo one, as an aside).

 

Keep up the good work, and if you don't produce a new episode of something soon I'll murder you in your sleep.

 

... I mean, keep up the good work!

Share this post


Link to post
Guest

Finally, great job.

Hope to see the episodes coming now, but part of the excitement of your shows is the wait, so whatever.

Share this post


Link to post
Guest

The website looks great. The theme certainly matches the series . As well as makes you wonder what is to come, with new pilot episode to come and such. Does it not look like a Blood harvest farm ?

 

lingeron are you serious? It seems one of the best website name ever, even better then roosterteeth.

 

And also, DON'T question the CREATOR*

 

 

 

*creator ( of Civil protection and freeman's mind series)

Share this post


Link to post
Guest

Awesome

 

The video page is much better then the blog system. Perfect for any new viewers who want to watch all of a series.

Share this post


Link to post
Guest

a further note on the update scanner guide

set the change threshold to about 50 to avoid it alerting you when you login/out

 

and make sure it's set to the home page.

 

also it dose look like a very good site, I can see why it might of taken so long to code

Share this post


Link to post
Guest

RSS really isn't hard. Here's a quick function I threw together that will give you the RSS, you just need to change the SQL to match your database, put it in a PHP file, and call the showRSS() function:

 

<?php

function showRSS() {

$query = "SELECT

n.id AS newsid

,n.title AS title

,n.body AS body

,n.posttime AS posttime

,n.username AS username

FROM

news n

ORDER BY

n.posttime DESC

LIMIT 10;";

 

$result = mysql_query( $query );

 

if( ! $result ) {

die( 'Query failed: ' . $query . "

" . 'Error: ' . mysql_error() );

}

 

header('Content-type: application/rss xml');

print '<?xml version="1.0"?>';

?>

Accursed Farms

;http://www.accursedfarms.com/News.php

News, thoughts, and all kinds of stuff about Accursed Farms

en-us

60

<?php

while( $news = mysql_fetch_assoc( $result ) ) {

?>

<?=$news['title'] ?>

;http://www.accursedfarms.com/News.php?News_ID=<?=$news['newsid'] ?>

;http://www.accursedfarms.com/News.php?News_ID=<?=$news['newsid'] ?>

<?=$news['username'] ?>

<?=date( 'D, d F Y H:i:s O', strtotime( $news['posttime'] ) ) ?>

</p><p>&lt;?php </p><p> print substr( $news[&#039;body&#039;], 0, 200 ); </p><p>?&gt; </p><p> [...]

</p><p>&lt;?php </p><p> print $news[&#039;body&#039;]; </p><p>?&gt; </p><p>

<?php

}

?>

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in the community.

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  


×
×
  • Create New...

This website uses cookies, as do most websites since the 90s. By using this site, you consent to cookies. We have to say this or we get in trouble. Learn more.