News:

SMF 2.1.4 has been released! Take it for a spin! Read more.

Main Menu

Forum not loading "No Data Received"

Started by guidance, June 29, 2012, 01:01:06 AM

Previous topic - Next topic

guidance

Hey, my forum is: http://loitersquad.co/forums/ [nofollow]
and it's not loading. I've tried it in Chrome, Internet Explorer, Firefox, and using http://browsershots.org [nofollow] to test pretty much every OS and browser on it. It didn't work on all of them.

Mods(this isn't a exact list, I'm going off of memory):
Simple Audio Video Embedder
an ad management plugin that I used to add Clicksor ads(don't recall the name)

I know it's not my server because http://loitersquad.co [nofollow] loads up fine, but the directory SMF is installed in(/forums/) doesn't.

Can anybody help me? It'd be much appreciated.

Xenocidius

This is quite strange indeed. What's even more interesting is that this works: http://loitersquad.co/forums/Themes/index.php

Maybe you have something funky going on in your /forums .htaccess file? Try seeing what's inside there.

Incidentally, when did this start happening?

ziycon

Have you got any mods installed for example pretty urls?

guidance

Quote from: Xenocidius on June 29, 2012, 04:18:01 AM
This is quite strange indeed. What's even more interesting is that this works: http://loitersquad.co/forums/Themes/index.php [nofollow]

Maybe you have something funky going on in your /forums .htaccess file? Try seeing what's inside there.

Incidentally, when did this start happening?
It was working last night, and I'll check the htacess file.

@Ziycon, I have some mods installed.

Here's the .htaccess file:
RewriteBase /forums/
# PRETTYURLS MOD BEGINS
# Pretty URLs mod
# http://code.google.com/p/prettyurls/
# .htaccess file generated automatically on: October 24, 2011, 9:15

RewriteEngine on

# Rules for: actions
RewriteRule ^(activate|admin|announce|attachapprove|buddy|calendar|clock|collapse)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(coppa|credits|deletemsg|display|dlattach|editpoll|editpoll2|emailuser)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(findmember|groups|help|helpadmin|im|jseditor|jsmodify|jsoption)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(lock|lockvoting|login|login2|logout|markasread|mergetopics|mlist)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(moderate|modifycat|modifykarma|movetopic|movetopic2|notify|notifyboard|openidreturn)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(pm|post|post2|printpage|profile|quotefast|quickmod|quickmod2)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(recent|register|register2|reminder|removepoll|removetopic2|reporttm|requestmembers)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(restoretopic|search|search2|sendtopic|smstats|suggest|spellcheck|splittopics)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(stats|sticky|theme|trackip|about:mozilla|about:unknown|unread|unreadreplies)/?$ ./index.php?pretty;action=$1 [L,QSA]
RewriteRule ^(verificationcode|viewprofile|vote|viewquery|viewsmfile|who|\.xml|xmlhttp)/?$ ./index.php?pretty;action=$1 [L,QSA]

# Rules for: boards
RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/?$ ./index.php?pretty;board=$1.0 [L,QSA]
RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/([0-9]*)/?$ ./index.php?pretty;board=$1.$2 [L,QSA]

# Rules for: topics
RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/([-_!~*'()$a-zA-Z0-9]+)/?$ ./index.php?pretty;board=$1;topic=$2.0 [L,QSA]
RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/([-_!~*'()$a-zA-Z0-9]+)/([0-9]*|msg[0-9]*|new)/?$ ./index.php?pretty;board=$1;topic=$2.$3 [L,QSA]

# PRETTYURLS MOD ENDS

ziycon

Ye, prettyurls is in there, can you disable the pretty url mod and see if everything works ok?

Comment out all the rules in the .htaccess file by putting a # in front of each line and save it, log into you're forum and disable the mod.

guidance

Quote from: ziycon on June 29, 2012, 05:49:31 AM
Ye, prettyurls is in there, can you disable the pretty url mod and see if everything works ok?

Comment out all the rules in the .htaccess file by putting a # in front of each line and save it, log into you're forum and disable the mod.
I changed the .htaccess file to this:
#RewriteBase /forums/
# PRETTYURLS MOD BEGINS
# Pretty URLs mod
# http://code.google.com/p/prettyurls/
# .htaccess file generated automatically on: October 24, 2011, 9:15

#RewriteEngine on

# Rules for: actions
#RewriteRule ^(activate|admin|announce|attachapprove|buddy|calendar|clock|collapse)/?$ ./index.php?pretty;action=$1 [L,QSA]
#RewriteRule ^(coppa|credits|deletemsg|display|dlattach|editpoll|editpoll2|emailuser)/?$ ./index.php?pretty;action=$1 [L,QSA]
#RewriteRule ^(findmember|groups|help|helpadmin|im|jseditor|jsmodify|jsoption)/?$ ./index.php?pretty;action=$1 [L,QSA]
#RewriteRule ^(lock|lockvoting|login|login2|logout|markasread|mergetopics|mlist)/?$ ./index.php?pretty;action=$1 [L,QSA]
#RewriteRule ^(moderate|modifycat|modifykarma|movetopic|movetopic2|notify|notifyboard|openidreturn)/?$ ./index.php?pretty;action=$1 [L,QSA]
#RewriteRule ^(pm|post|post2|printpage|profile|quotefast|quickmod|quickmod2)/?$ ./index.php?pretty;action=$1 [L,QSA]
#RewriteRule ^(recent|register|register2|reminder|removepoll|removetopic2|reporttm|requestmembers)/?$ ./index.php?pretty;action=$1 [L,QSA]
#RewriteRule ^(restoretopic|search|search2|sendtopic|smstats|suggest|spellcheck|splittopics)/?$ ./index.php?pretty;action=$1 [L,QSA]
#RewriteRule ^(stats|sticky|theme|trackip|about:mozilla|about:unknown|unread|unreadreplies)/?$ ./index.php?pretty;action=$1 [L,QSA]
#RewriteRule ^(verificationcode|viewprofile|vote|viewquery|viewsmfile|who|\.xml|xmlhttp)/?$ ./index.php?pretty;action=$1 [L,QSA]

# Rules for: boards
#RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/?$ ./index.php?pretty;board=$1.0 [L,QSA]
#RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/([0-9]*)/?$ ./index.php?pretty;board=$1.$2 [L,QSA]

# Rules for: topics
#RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/([-_!~*'()$a-zA-Z0-9]+)/?$ ./index.php?pretty;board=$1;topic=$2.0 [L,QSA]
#RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/([-_!~*'()$a-zA-Z0-9]+)/([0-9]*|msg[0-9]*|new)/?$ ./index.php?pretty;board=$1;topic=$2.$3 [L,QSA]

# PRETTYURLS MOD ENDS

and it still doesn't work.

ziycon

I'm just after noticing you have simpleportal installed, this could be the issue, can you disable all you're mods and see if the forum works?

guidance

Quote from: ziycon on June 29, 2012, 06:00:08 AM
I'm just after noticing you have simpleportal installed, this could be the issue, can you disable all you're mods and see if the forum works?
The admin panel doesn't load either.

guidance

Can anybody help me with this?

I need to get my forum back up ASAP.

guidance

Seriously, please, I need this up as quickly as possible. To whoever can help me, it'd be appreciated GREATLY.

Alternatively, if somebody can tell me how to make a backup of the forum posts, users, etc. with access to cPanel(the admin page doesn't load either, as said before), it'd be much appreciated.

busterone

It appears to be a server/host issue. http://loitersquad.co  does not load for me either.

guidance

Quote from: busterone on June 30, 2012, 01:24:43 AM
It appears to be a server/host issue. http://loitersquad.co  does not load for me either.
It loads for me just fine.

Xenocidius

Well, when did it start happening? Was it after you installed a certain mod or was it just random? If it was after a mod, this may help.

Otherwise, you could try looking at the root .htaccess file or restarting Apache.

guidance

Quote from: Xenocidius on June 30, 2012, 03:42:51 AM
Well, when did it start happening? Was it after you installed a certain mod or was it just random? If it was after a mod, this may help.

Otherwise, you could try looking at the root .htaccess file or restarting Apache.
I've already posted my htaccess file, and this wasn't after installing a mod, this just happened out of the blue.

Xenocidius

I mean your root / .htaccess file, not your /forums .htaccess file. Also, try restarting Apache.

guidance

Quote from: Xenocidius on June 30, 2012, 09:36:56 AM
I mean your root / .htaccess file, not your /forums .htaccess file. Also, try restarting Apache.
Root .htaccess:
# Do not remove this line or mod_rewrite rules and search engine friendly URLs will stop working
RewriteBase /

That's it.
I'm using http://powrhost.com [nofollow] for hosting, I don't think I can restart Apache.

ziycon

Are you still experiencing an issue with this?

Have a look at the below links on how to backup your database and files.
How do I backup my SMF forum?
How do I backup my database?

kat

The forum loads for me and it seems damned quick, too! :)

Advertisement: