Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Menu Item SpacingOpen up styles.css (line 137), replace with this:
ul.nav li { /* margin-right: 5px; original margin*/ margin-right: 36px; z-index: 10; }If you change the menu items in the future (Add or remove), you’ll need to adjust this new margin value.
Phil
Forum: Fixing WordPress
In reply to: Problem Uploading to Media LibraryPermissions. Try lowering the uploads folder in /wp-content to 755 and failing that, 777.
It means that WordPress is trying to create folders inside the uploads folder, but as it doesn’t have correct permissions, it can’t.
Forum: Fixing WordPress
In reply to: Permalink structure changed killed my WP-admin accessYou can also try accessing domain.com/wp-admin/index.php after you’ve ‘logged in’ (and redirected).
And last resort would be to clear all cookies and data from your browser – including cache (just to eliminate the obvious).
Forum: Fixing WordPress
In reply to: Permalink structure changed killed my WP-admin accessYes, phpmyadmin. You can also double check the login credentials from here too (users table – although password is MD5 encrypted).
I’d also check wp-config in root and check if Authentication Unique Keys and Salts have been completed.
You can get this unique data using WP’s page here.
This can sometimes affect login issues.
Forum: Fixing WordPress
In reply to: feature image upload errorHmm. Weird. Maybe try manually uploading a fresh copy of WP 3.5 yourself incase the auto-upgrade messed up part-way. Back-up first just incase.
Forum: Fixing WordPress
In reply to: Custom meta box on specific pagesWhere you generated the meta box code (functions file or plugin), maybe try placing it inside (not tested this myself):
function is_tree( $pid ) { if ( is_page() ) { return ( get_the_ID() == $pid || in_array( $pid, get_post_ancestors( get_the_ID() ) ) ); } return false; }More info on get_post_ancestors… here.
Yup, upload a fresh functions.php file.
Forum: Fixing WordPress
In reply to: Permalink structure changed killed my WP-admin accessI would access the database. Browse the ‘options’ table for Site URL and Home URL. Make sure that they’re what you want.
If already correct, I’d definitely be looking for .htaccess redirects.
PS – There’s a login here: http://www.rockitlab.com/71lbs/wp-login.php
Forum: Fixing WordPress
In reply to: Cannot upload imageUploads folder is in wp-content folder – same as your themes and plugins folder.
In Filezilla, you click on it once to highlight it, then you right-click on the same Uploads folder, you need to choose ‘File Attributes’ or ‘File Permissions’ (depending which screen you’re viewing). You can then change permissions to 755, 777 etc.
There will be a checkbox for recursive option.
Forum: Fixing WordPress
In reply to: Cannot upload imageYou can change permissions using filezilla (right click on Uploads folder) or through your hosting control panel ‘File Manager’.
You will only need to change the permissions of the Uploads folder – NOT the whole wp-content.
Make sure when you change it on ‘Uploads’, that you select ‘recursively’ option which will also change permissions of every folder inside the uploads folder as well. WordPress will be able to then access the folder and create new folders inside, eg, 2013/02, 2013/03 etc…
Hope this helps.
Forum: Fixing WordPress
In reply to: feature image upload errorWhat happens when you try to upload? Do you get an error?
Forum: Fixing WordPress
In reply to: Error after Upgrade from 3.5 to 3.5.1Looks connected to your caching plugin.
Try deactivating manually from your database or temporarily reset your plugins folder and try the site again.
Forum: Fixing WordPress
In reply to: Contact Form 7 to include post name and custom field infoYeah, will do. I thought there may be a general WP solution rather than CF7 only though, thinking there may be folk who recommend a different plugin.
Thanks, I’ve created one over there now so will shut this down. For people searching here in the future, this thread is moved to here.
Forum: Fixing WordPress
In reply to: Setting Domain to wordpress Folder does not work propperlyYou can also do the same from the WP admin, under settings -> General and via the database.
Forum: Fixing WordPress
In reply to: Separating line between posts in Twenty Twelve themeCan you post a link to the page? It will just be a little change to the CSS file.