webjunk
Forum Replies Created
-
What did they have you change? Maybe:
RewriteBase /Looks like its trying to use “/” as the target.
Forum: Plugins
In reply to: Contact Form 7 PaddingIts all handled by CSS. For Contact Form:
wp-content/plugins/contact-form-7/styles.cssForum: Plugins
In reply to: [Contact Form 7] Contact Form 7: Fresh install – Only code displays; No FormTry disablng the plugins anyway. Sometimes there are conflicts.
Would help to see your site and what tag you are using. Hate guessing….Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Contact form broken since update@banciii
Try starting a new topic. This one is marked Resolved.Forum: Fixing WordPress
In reply to: PageofPost setup getting Fatal Error in query.phpHave the flu so can’t get too far into it…
But I copied your code from pastbin and tried it and received no error. But from the looks of the code it might be theme dependant. Would try the default theme or another theme and see if you still have the error. Now I need to lie down again…Forum: Fixing WordPress
In reply to: After Login with User Name and PSW 404 errorYou can get me through the Live Support link at:
http://webjunk.comForum: Fixing WordPress
In reply to: After Login with User Name and PSW 404 errorViewing the 404 page would not help. At this point I don’t have any other suggestions wihtout actually logging in myself and seeing the php files. Could do that if you want. Otherwis maybe some others have some other suggestions.
Forum: Fixing WordPress
In reply to: After Login with User Name and PSW 404 errorIf you have a cPanel you should be able to look along the left-side and see your Home directory.
Try copying dashboard.php anyway….Forum: Fixing WordPress
In reply to: After Login with User Name and PSW 404 errorHave you tried copying a new (same version) dashboard.php?
Also try logging into wp-admin and then when dashboard fails to load go to this link to see if it loads:
http://www.rebaxter.net/wp-admin/options-general.phpHave you tried (300 msgs in two days I forget) just for a minute renaming your plugins directory, create new plugins directory in its pace with same permssions?
Forum: Fixing WordPress
In reply to: After Login with User Name and PSW 404 errorHard to see in my post/ The single quote ‘ is missing after the open ( parentheses
Forum: Fixing WordPress
In reply to: After Login with User Name and PSW 404 errorYou are missing the “‘” so will crash your site! Fix before applying!
Should be:/** Load WordPress dashboard API */ require_once('/home/rebaxter/public_html/wp-admin/includes/dashboard.php');Forum: Fixing WordPress
In reply to: How to remove side-bar from a random page?All within CSS. You will probably need to change “width” parameter in several locations. Its your site so it might be difficult for anyone to give you specific width amounts. Turn off any caching, make your changes, refresh browser. When finished enable any caching.
Forum: Fixing WordPress
In reply to: Link in category pageAN External link in the menus? Or within the content?
within menus use the page links to plugin
For content (a post) just click on the Edit Link icon (looks like a link of chain) in visual editor or if in html Link.
If outside content but within archive.php you need to edit archive.php which you can do from Appearance/Editor.Forum: Fixing WordPress
In reply to: Link header image to homepage – HELP!Just looked at your site and it does not work in my browser if you made the changes. So its not fixed, at least in all browsers. And I agree with Fishdogfish its too much.
Now I thought DXImageTransform.Microsoft.AlphaImageLoader was depreciated or taken out in newer versions of IE. It was just for the lack of proper png support back in IE 5 or 6.
But just now taking a quick look at your code I see the issue. The link you have right now like I said to use but is around the TEXT “Body Pixel” inside the header div. The problem is in your CSS you are putting the banner (from the header in CSS) over the top of the text. It comes from here:#header div { background: url(http://www.body-pixel.com/wp-content/uploads/2010/09/pcb_banner.color_ver._retro.gif) no-repeat center top;So not only is the text hidden so is the Link. You need the BANNER to have the link. You could change the depth/layers using z-index but then the text would display on top of the banner. WHat I think you need to do is take the image out of the css and put it in place of the text. You could just hardcode the image (how often do we change banners?) but if the theme supports uploading a banner you can just add code for it. Here is what I use in a couple of the themes I have written. Just need to make sure “$logo” is set to whatever variable your theme uses for the uploaded banner:
` if($logo): ?>
<h1 class=”logo”><a href=”<?php bloginfo(‘url’); ?>/”><img src=”<?php echo $logo; ?>” title=”<?php bloginfo(‘name’); ?>” alt=”<?php bloginfo(‘name’); ?>” /></a></h1>
<?php else: ?>
<h1 class=”logo”><a href=”<?php bloginfo(‘url’); ?>/”><?php bloginfo(‘name’); ?></a></h1>
<?php endif; ?>`Forum: Fixing WordPress
In reply to: After Login with User Name and PSW 404 errorThe File permissions need to be CORRECT for EVERYTHING. That link tells you what they need to be.
The change (below) I gave was to replace the ABSPATH which sometimes may not be directing properly in the wp-admin/index.php
Replace the path to with the Path on the Server from base to the dashborad.php. DO NOT USE URL! It needs to be the absolute (not relative from a directory) file path from what Apache sees as root./** Load WordPress dashboard API */ require_once('/PATHTO/wp-admin/includes/dashboard.php');