Internal Server Error only on frontend and certain admin pages
I get internal server errors quite often in my everyday coding work if i misspell PHP function names in my code. So try deactivating your plugins and re-enabling one by one.
I get internal server errors quite often in my everyday coding work if i misspell PHP function names in my code. So try deactivating your plugins and re-enabling one by one.
Ehm, yea. I don’t know what exactly your problem is, so some notes about the code below. You should use the settings API. Here’s a (new) tutorial by Chip Bennet. The way you’re calling your currently set options (one get_option call per sub-array) you have about 11 db-calls only for your options. If you don’t … Read more
You have a javascript error on line 451: ReferenceError: Can’t find variable: jQuery. and then Failed to load resource: the server responded with a status of 403 (Forbidden): axx1cxj-b.css. The second one looks like s stylesheet that typekit is trying to load.
what’s the add action at the bottom doing? It’s not required for setting up CPTs, just the setup bit you have running on init…. I believe that is what’s throwing the error I have to make it an answer. It was a suggestion, but if it worked for you, I’ll make my comment an answer, … Read more
do_action( ‘after_setup_theme’ ); doesn’t pass any parameter. You are cutting something of the length 0 after theme setup. Why? Plus, your registration with add_action doesn’t tell WordPress that you want two parameters. The default is one parameter. You don’t need this call at all. If you define the function in your functions.php it will be … Read more
The content you get is not utf-8 encoded or the encoding is damaged by the importer. Usually SimplePie – the feed reader WordPress uses – is quite good at handling such cases. I wonder what an importer you use … Anyway, I’ve written a function to enforce utf-8 output. You should implement this very early … Read more
My guess is that you’re either running into issues with verbose rewrite rules (which, if you’ve reverted to default permalink structure and still have the problem, isn’t the problem), or else you’re just running into server resource limits. Have you tried using W3 Total Cache or another caching Plugin, to see if anything improves?
wp-lists.js seems to be one of scripts, used in WP admin. Assuming ajaxurl is defined is from there as well. This is likely some plugin, trying to use these in admin area but (being poorly coded) loading them everyhwere.
Have you changed anything in the stylesheet? WordPress looks for the header of that file to be in a specific format. http://codex.wordpress.org/Theme_Development#Theme_Stylesheet You could also check that all folders/filenames are consistent. Hopes this helps in some way – good luck!
I believe that means there’s an extra close-function tag somewhere in your functions.php file, $end;, } or such. You’ll have to pick through the code to find it. A text editor that color-codes code can help with this, but you’ll still have to click around and find it. Best of luck!