Hey guys, this is my first post. Been trying to get my heard around Drupal and having a pretty good time doing it; have run into a few hiccups though...but dealing with them BUT

this is my problem:

I was changing content type settings for the blog area, when all of a sudden I tried to save the page and I got this error:

"Method Not Allowed

The requested method POST is not allowed for the URL /index.php."

Then I hit back on my browser, got back to the same page, tried again, same problem. Then I figured I probably did something it didn't like, so I decided to 'Rest to defaults' - same error. But the problem is worse now - when I go to my website (www.groovesmooth.net) both browsers (Safari and Firefox) just download small file instead of loading the page. I can manually go to www.groovesmooth.net/admin or www.groovesmooth.net/blog and it works, but if I go back into Administer, then on some links (like editing content settings for example) just downloads a small file....very frustrating. Could somebody check out the site and see if you can figure out what's going on!?!?!?

THANKS!!! I'm sure there will be many more questions in the future, but need to get the site at least working!!!

cheers,

befrirave

Comments

befrirave’s picture

I've opened the file that my browser downloads when I go to the main page, and the administer page. All links seem to be working in administer EXCEPT for the content types one...which is where I was when this craziness started:

main page file i can't open

the other file (from content types) is:

<?php
// $Id: index.php,v 1.94 2007/12/26 08:46:48 dries Exp $

/**
* @file
* The PHP page that serves all page requests on a Drupal installation.
*
* The routines here dispatch control to the appropriate handler, which then
* prints the appropriate page.
*
* All Drupal code is released under the GNU General Public License.
* See COPYRIGHT.txt and LICENSE.txt.
*/

require_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);

$return = menu_execute_active_handler();

// Menu status constants are integers; page content is a string.
if (is_int($return)) {
switch ($return) {
case MENU_NOT_FOUND:
drupal_not_found();
break;
case MENU_ACCESS_DENIED:
drupal_access_denied();
break;
case MENU_SITE_OFFLINE:
drupal_site_offline();
break;
}
}
elseif (isset($return)) {
// Print any value (including an empty string) except NULL or undefined:
print theme('page', $return);
}

drupal_page_footer();

Hopefully you tech gods can help me out on this one!!

cheers

xmacinfo’s picture

First of all disable JavaScript in your browser. I did so and I am able to go to your site and in each section. While JS disable, try editing the page that caused some problems.

As for the blog, don't modify it's content type. You should instead create a new content type. Did you try to revert the changes you made to Blog content type?

Once you feel everything is like expected, turn on again JavaScript.

[EDIT] I've also tried your site with JavaScript enabled and your site behaves normally. Maybe you fixed the issue.

befrirave’s picture

Thanks for the heads up on JavaScript. It allowed me to change some settings, and turns out the "Audio Attachments - Enabled" for blog entry was what freaked everything out. Not sure about that, but I can attack that later.

When you say don't edit the blog content type, and create a new one, what exactly do you mean? I've been spending hours trying to figure out taxonomy and categories, vocabulary, etc. All I want is to make some tags that I can tick when I make a blog entry so that they then correspond to those tags in the URLs, and as links on the blog page. How do you do that!?

Cheers