rankbooster
Forum Replies Created
-
Forum: Hacks
In reply to: Can you see the flaw in my IF-THEN statement?Thank you!!
Is there a list of all the functions somewhere?
Forum: Fixing WordPress
In reply to: I get the following error when trying to access my site:That 3rd error message says it’s looking for the include in C:\PHP5\php, to which you probably don’t have access.
If you know where the “wp-blog-header.php” file is, then you COULD edit your .HTACCESS file (if on a Linux server and not Windoze) and add the following line (with your data instead of mine):
php_value include_path .:/home/aboutbl/public_html/blending
Use this to tell your site to look for files where they are instead in the default location (C:\PHP5\php).
Forum: Fixing WordPress
In reply to: Fatal error: etc etc on line 368Line 368 is trying to call a function that it doesn’t have access to. So, either remove the call, or figure out where that function is, and make it accessible (by inserting it between <? and ?> at the top of the page, for example).
Forum: Fixing WordPress
In reply to: Moving Menu to the left?Correct.
Forum: Fixing WordPress
In reply to: Strange File/404 issuesI had a similar problem once and discovered that the HTML in the theme SAID it was loading the photos to one directory, but really loaded them in another. Editing the code fixed it.
Forum: Fixing WordPress
In reply to: Can’t validate my RSS feed and have tried all advice I can fineFeedValidator.org says you have a blank line at the beginning of your feed. Did you try editing the code that creates the feed, looking for a stray
or something?Forum: Fixing WordPress
In reply to: Moving Menu to the left?Two things you could do to fix this:
1. Add #menu to your style sheet with something like:
#menu {padding-right:55px;}
2. Add to the table something like this:
<table align=right style=”padding-right:55px;”>“margin-right:55px;” might work better, try both.
Forum: Fixing WordPress
In reply to: Fatal error issuesWell, looks like your code on line 21 is trying to call a function that somehow didn’t make it to your new server, ie. wp_pagebar().
Did you overlook a file that had wp_pagebar() declared in it?
Forum: Fixing WordPress
In reply to: Can’t see blog postsHave you recently altered your Permalinks settings?
Forum: Fixing WordPress
In reply to: Post and old page permalinks work, new page permalinks don’tSame problem.
Did anyone find the solution?Forum: Fixing WordPress
In reply to: Custom PageThe documention about creating pages says PHP won’t run from within the HTML of a page you create, UNLESS you use a particular plugin specifically to allow it.
Forum: Fixing WordPress
In reply to: Page & Category links are unreliableTry the links for the categories along the gold bar on https://www.zionwildernesssurvivalschool.com/blog.
If you keep clicking on different ones, eventually the wrong content shows up.