cms
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Background Images Not AppearingOne of your backgroundimages is http://www.allabreve.org/insomniac/wp-content/themes/ocean-mist-10/images/bgd_main.gif if try to have a look at it you’ll get the mainpage of your blog.
So you have 1) no gif with this name at this place and/ or a wrong htaccess.
Forum: Plugins
In reply to: Regular Expression HelpHello,
looks a little bit complex to me, too. I just paste some modified old code I used in an old project:
$regaus= '[^\">]';
$search = array ("'<a[^>]*?http({$regaus2}*)\"'si", "'<img[^>]*?http({$regaus2}*)\"'si");
$replace = array ("<a href=\"http\1\" style=\"xyz\"",
"<img href=\"http\1\" style=\"xyz\"");
$html = preg_replace($search, $replace, $html);
It does not check wheter the link goes out to an external or internal link. Perhaps you can use preg_replace_recall to check.
Forum: Fixing WordPress
In reply to: using mod rewrite to redirect from old url structureI do not know why, but for me it looks like your server does not accept the Stop-Flag (L) and moves on with rewriting…
Forum: Fixing WordPress
In reply to: Cannot modify header informationThis is the same problem as it happens often (I can tell). You put some spaces in one of the configuration files outside of the closing ?>
Have a look at all the files you edited since the problem has shown up.
Forum: Fixing WordPress
In reply to: global snippitsYes, create a file xyz.php with the information to be diplayed, go through your theme-files for the right place (like sidebar.php…), and call the php-file from there with include(‘xyz.php’);
You can use other file-types, too. But you have to use another implementation.
Forum: Themes and Templates
In reply to: posts arn’t cuztomizedHave a look at your source there are somebugs in there.
Fix all these: http://validator.w3.org/check?uri=http%3A%2F%2Fwww.kelly-element.net%2Fx%2F
And if you want to see a single post you see something like
Parse error: syntax error, unexpected $end in /home/kellyele/public_html/x/wp-content/themes/v5/single.php on line 20
perhaps you forgot a closing } ?
Forum: Themes and Templates
In reply to: Image not showing upWhich theme do you use (standard?), do you have an url?
Perhaps the background is no color but an image?