callbarney
Forum Replies Created
-
Turns out it was the cache plugin that I was using. However whilst I’m logged in as an admin the cache is disabled which is why I never saw the problem.
I have the option of grouping all JS checked which caused the problem. I’m using the breeze plugin which allows me to exclude JS scripts from being included but I’m unsure how I reference the GA script to be excluded from being grouped
Forum: Fixing WordPress
In reply to: 500 Error whilst trying to import to new serverI appreciate your help but I’m hoping someone can specifically tell me the problem (from my error log) and the specific solution to the problem.
Forum: Fixing WordPress
In reply to: 500 Error whilst trying to import to new serverthe import/export functionality doesn’t deal with the database connectivity. It utilises the pre-existing connection and the re-imports the data as specified in the XML document.
500 are server errors, not database errors.
Forum: Fixing WordPress
In reply to: 500 Error whilst trying to import to new serverThanks Jack but I’m not doing a file move, I’m doing an export/import so not quite the same thing
Forum: Fixing WordPress
In reply to: open_basedir restriction in effectfixed the open_basedir restriction errors… was to do with running the php apache modle rather than cgi
still have the htaccess issue
Forum: Fixing WordPress
In reply to: open_basedir restriction in effectI saw this and it hasn’t fixed it….
It also says my .htaccess is writeable by wordpress even though i have it set to 655 permissions
Forum: Fixing WordPress
In reply to: Problems with 404it looks like the text only version of my homepage
on value=1977>1977<option value=1978>1978<option value=1979>1979<option value=1980>1980<option value=1981>1981<option value=1982>1982<option value=1983>1983<option value=1984>1984<option value=1985>1985<option value=1986>1986<option value=1987>1987<option value=1988>1988<option value=1989>1989<option value=1990>1990<option value=1991>1991<option value=1992>1992<option value=1993>1993<option value=1994>1994<option value=1995>1995<option value=1996>1996<option value=1997>1997<option value=1998>1998<option value=1999>1999<option value=2000>2000<option value=2001>2001<option value=2002>2002<option value=2003>2003<option value=2004>2004<option …..
I’ve just checked the plain text page, when a 404 is installed, it would also appear to be my homepage
Forum: Fixing WordPress
In reply to: Problems with 404page loads blank – Also tried added in <html><body> tages just to make sure but still nothing…
and no my htaccess is still the same
# BEGIN WordPress <IfModule mod_rewrite.c> ErrorDocument 404 /index.php?error=404 RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressForum: Fixing WordPress
In reply to: Problems with 404That is from login.php… when I removed the include login.php it didnt have that part of the code in, it had plain text code from further down the page… imply that its ignoring a certain ammount of characters at the start of the compiled page
Forum: Fixing WordPress
In reply to: Problems with 404nope still loads as plain text just without the log in code
Forum: Fixing WordPress
In reply to: Problems with 404OK…
Header is: http://wordpress.pastebin.ca/1817394
Functions is: http://wordpress.pastebin.ca/1817400
Let me know what your thinking
Forum: Fixing WordPress
In reply to: Problems with 404No there is no “not found” as my homepage is quite different to my content pages (which is what the 404 page is replicated to look like). In the homepage there is no-side bar, on all other pages there is. So when I go to the 404 their should be a side bar, but there isnt.
So going to the address you said: partyeventsunlimited.co.uk/PEU2/themes/YOURTHEMENAME/404.php, I get
Fatal error: Call to undefined function get_header() in /home/fhlinux142/p/partyeventsunlimited.co.uk/user/htdocs/wp-content/themes/PEU2/404.php on line 1my current code is:
<?php get_header(); ?> <div id="content" class="narrowcolumn"> <h2 class="center">Error 404 - Not Found</h2> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>hmmm, any idea?
Btw, thank you for your help, I really really really do appreciate it.
Forum: Fixing WordPress
In reply to: Problems with 404nope no fix….
Interesting, I changed my permalinks back to the default setting and it appears to load my homepage when any invalid addresses are quested… but when I go to
http://www.partyeventsunlimited.co.uk/404.php
I get
Fatal error: Call to undefined function get_header() in /home/fhlinux142/p/partyeventsunlimited.co.uk/user/htdocs/404.php on line 8and on line 8 of the 404 is:
get_header(); ?>which has previously been opened with:
<?phpForum: Fixing WordPress
In reply to: Problems with 404yes
Forum: Fixing WordPress
In reply to: Problems with 404I have done so…
I have now got my error page as:
<?php get_header(); ?> <div id="content" class="narrowcolumn"> <h2 class="center">Error 404 - Not Found</h2> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>and my .htaccess (which is in the same location as the index.php in the main root folder) is
# BEGIN WordPress <IfModule mod_rewrite.c> ErrorDocument 404 /index.php?error=404 RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressand its still opening in plain text.
I also notice that if I go to http://www.partyeventsunlimited.co.uk/index.php?error=404 I am automatically redirected to http://www.partyeventsunlimited.co.uk/?error=404 which takes me to my index page (nothing like my error page layout except the header and footer).
hmmm getting quite stumped…