The Articles Topic

All updates to the site will be posted here.

Moderator: CricketMX Forum Moderators

Post Reply
Articles Bot
Forum Bot
Forum Bot
Posts: 95
Joined: Thu Jan 10, 2008 8:05 am

This article is a follow-on from the blog post I made at phpBB.com not too long ago. I recommend reading that post first before reading this, as all of the information you need might be in that po...

Read more
View all articles at http://www.cricketmx.com/articles/
I'm only a forum bot!
Articles Bot
Forum Bot
Forum Bot
Posts: 95
Joined: Thu Jan 10, 2008 8:05 am

The good thing about Saturday Night Live's recurring "Digital Short" segment is that there's something for everyone.

Here are my favourites:

#1 - Dear Sister (April 14, 2007)
A spoof of a season finale of The OC, Dear Sister featured Andy Samberg, Bill Hader, Kristen Wiig, Jason Sudeikis...

Read more
Digg this article
View all articles at http://www.cricketmx.com/articles/
I'm only a forum bot!
tenfoottrike
Greenhorn
Greenhorn
Posts: 1
Joined: Wed Dec 30, 2009 6:05 pm

Articles Bot wrote:
This article is a follow-on from the blog post I made at phpBB.com not too long ago. I recommend reading that post first before reading this, as all of the information you need might be in that po...

Read more
first off thanks thia post was a big help but i followed the step buy steps but when i go to run it on the site i just get these error's

Warning: include() [function.include]: URL file-access is disabled in the server configuration in /home/deviants/public_html/cosplaygirls/forum/top_5_post.php on line 6

Warning: include(http://cosplaydeviants.com/cosplaygirls ... common.php) [function.include]: failed to open stream: no suitable wrapper could be found in /home/deviants/public_html/cosplaygirls/forum/top_5_post.php on line 6

Warning: include() [function.include]: Failed opening 'http://cosplaydeviants.com/cosplaygirls ... common.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /home/deviants/public_html/cosplaygirls/forum/top_5_post.php on line 6

Warning: include() [function.include]: URL file-access is disabled in the server configuration in /home/deviants/public_html/cosplaygirls/forum/top_5_post.php on line 7

Warning: include(http://cosplaydeviants.com/cosplaygirls ... bbcode.php) [function.include]: failed to open stream: no suitable wrapper could be found in /home/deviants/public_html/cosplaygirls/forum/top_5_post.php on line 7

Warning: include() [function.include]: Failed opening 'http://cosplaydeviants.com/cosplaygirls ... bbcode.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /home/deviants/public_html/cosplaygirls/forum/top_5_post.php on line 7

Warning: include() [function.include]: URL file-access is disabled in the server configuration in /home/deviants/public_html/cosplaygirls/forum/top_5_post.php on line 8

Warning: include(http://cosplaydeviants.com/cosplaygirls ... isplay.php) [function.include]: failed to open stream: no suitable wrapper could be found in /home/deviants/public_html/cosplaygirls/forum/top_5_post.php on line 8

Warning: include() [function.include]: Failed opening 'http://cosplaydeviants.com/cosplaygirls ... isplay.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /home/deviants/public_html/cosplaygirls/forum/top_5_post.php on line 8

Fatal error: Call to a member function session_begin() on a non-object in /home/deviants/public_html/cosplaygirls/forum/top_5_post.php on line 11

what can i do to fix this i have been trying for a few days now and i think i just about pulled out all my hair if you could give me some ideas that would be awesome
User avatar
battye
Site Admin
Site Admin
Posts: 14391
Joined: Sun Jan 11, 2004 8:26 am
Location: Australia
Contact:

Can you post the contents of the file "top_5_post.php" in code tags and I will take a look at it? :)
CricketMX.com in 2022: Still the home of bat's, rat's and other farmyard animals!

"OK, life [as you chose to define it] repeats until there are no more lessons to be learned." - nrnoble (June 12, 2005)
"the new forum looks awesome, it's getting bigger & better" - p2p-sharing-rules (11 Jan, 2008)
"Looks like CMX is not only getting bigger...but, also getting better!!" - moongirl (14 Dec, 2007)
dvdauthority
Greenhorn
Greenhorn
Posts: 1
Joined: Tue Jan 05, 2010 4:21 pm

Articles Bot wrote:
This article is a follow-on from the blog post I made at phpBB.com not too long ago. I recommend reading that post first before reading this, as all of the information you need might be in that po...

Read more
How would you modify this so that you could read any forum, regardless of permissions?
Articles Bot
Forum Bot
Forum Bot
Posts: 95
Joined: Thu Jan 10, 2008 8:05 am

Flicking through the vast wasteland of rubbish on Foxtel (Australian Pay TV) it was by chance I saw Matt LeBlanc on the E! channel in a preview of an upcoming sitcom. A bit of extra research, and I discovered that U.S. cable network "Showtime" - possibly in association with BBC, if IMDB is...

Read more
View all articles at http://www.cricketmx.com/articles/
I'm only a forum bot!
User avatar
battye
Site Admin
Site Admin
Posts: 14391
Joined: Sun Jan 11, 2004 8:26 am
Location: Australia
Contact:

dvdauthority wrote:
Articles Bot wrote:
This article is a follow-on from the blog post I made at phpBB.com not too long ago. I recommend reading that post first before reading this, as all of the information you need might be in that po...

Read more
How would you modify this so that you could read any forum, regardless of permissions?
Hi, sorry for the delay in replying. This article - http://www.cricketmx.com/articles/read/ ... in-phpbb3/ - has the code you are looking for.

But if you find:

Code: Select all

'WHERE' => $db->sql_in_set('t.forum_id', array_keys($auth->acl_getf('f_read', true))) . '
AND t.topic_status <> ' . ITEM_MOVED . '
AND t.topic_approved = 1',
Replace it with:

Code: Select all

'WHERE' => 't.topic_status <> ' . ITEM_MOVED . '
AND t.topic_approved = 1',
:)
CricketMX.com in 2022: Still the home of bat's, rat's and other farmyard animals!

"OK, life [as you chose to define it] repeats until there are no more lessons to be learned." - nrnoble (June 12, 2005)
"the new forum looks awesome, it's getting bigger & better" - p2p-sharing-rules (11 Jan, 2008)
"Looks like CMX is not only getting bigger...but, also getting better!!" - moongirl (14 Dec, 2007)
Articles Bot
Forum Bot
Forum Bot
Posts: 95
Joined: Thu Jan 10, 2008 8:05 am

Before going to England I had researched the all important matter of using mobile data abroad quite thoroughly. I was quite sceptical about my chances - and I was always going to feel this way until I could see it first hand working as I wanted on my iPhone. As it turn...

Read more
Digg this article
View all articles at http://www.cricketmx.com/articles/
I'm only a forum bot!
Articles Bot
Forum Bot
Forum Bot
Posts: 95
Joined: Thu Jan 10, 2008 8:05 am

I am known to have an irrational fear of rats and mice. It would also seem that I have very selective rodent phobia!

"Badger, badger, badger,"....I have loved those Weebls from our very first encounter.
I have perfected my "Badger Dance" while still remaining seated at the keybo...

Read more
View all articles at http://www.cricketmx.com/articles/
I'm only a forum bot!
User avatar
Rat
Drain Brain
Drain Brain
Posts: 4476
Joined: Mon Jun 14, 2004 9:38 am
Location: in the dark

I think moon was under the influence of something when she wrote that article.
Articles Bot
Forum Bot
Forum Bot
Posts: 95
Joined: Thu Jan 10, 2008 8:05 am

The last time I'd used wireless internet in Singapore was in early 2007. Simulation cricket was all the rage, and my parting memory was how wonderfully well the Singaporean government had set up a national wi-fi network and how lousy my laptop battery was for lasting just 15 minutes off a full charg...

Read more
Digg this article
View all articles at http://www.cricketmx.com/articles/
I'm only a forum bot!
Articles Bot
Forum Bot
Forum Bot
Posts: 95
Joined: Thu Jan 10, 2008 8:05 am

On April 14, 2010 another significant chapter of Australian television began. Australian variety and comedy show Hey Hey It's Saturday originally ran between 1971 and 1999 before it was axed by Channel 9 - reportedly due to its high budget. Even in 1999, no other entertainment program had been on ai...

Read more
View all articles at http://www.cricketmx.com/articles/
I'm only a forum bot!
Articles Bot
Forum Bot
Forum Bot
Posts: 95
Joined: Thu Jan 10, 2008 8:05 am

Since last year I've enjoyed following the TV ratings at http://tvbythenumbers.com/. My favourite TV shows are the Thursday night NBC comedies - Community, Parks and Recreation, The Office and 30 Rock is must-see-tv for me. And of course Saturday Night Live which I have been watching sinc...

Read more
Digg this article
View all articles at http://www.cricketmx.com/articles/
I'm only a forum bot!
Articles Bot
Forum Bot
Forum Bot
Posts: 95
Joined: Thu Jan 10, 2008 8:05 am

KFC's sandwich-without-bread, the "Double Down", may be the biggest revolution to hit food since (ironically) sliced bread.

We've all seen the commercial (if you are one of the uninitiated, you can see it at http://www.youtube.com/watch?v=9L1Fhbb8Av0), we all want the Double Down experien...

Read more
View all articles at http://www.cricketmx.com/articles/
I'm only a forum bot!
Articles Bot
Forum Bot
Forum Bot
Posts: 95
Joined: Thu Jan 10, 2008 8:05 am

Let me start off by saying that I think it is fantastic that Bet 365 (and I think other betting agencies like Betfair do the same) have gone out of their way to buy the rights to many sporting events and develop a system to stream it to users. The more free live sport available to people, the better...

Read more
Digg this article
View all articles at http://www.cricketmx.com/articles/
I'm only a forum bot!
Post Reply