juggledad
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: errorthis is a warning and shows up because you have
define('WP_DEBUG', true);
in your wp-config.php. Unless you are coding a plugin or theme, there is nothing you can do about it except change the debug oftoion to ‘false’ so you won’t see those messages.Forum: Themes and Templates
In reply to: [Atahualpa] Missing Headergo to the Header, Center and Footer configuration areas and hit the big Green save button.
Also if you are storing your header inmages in the theme folder, they get wiped out on an update (wordpress does this) but a new option was add awhile back to alow you to store the images outside the theme folder – check the options.
Forum: Themes and Templates
In reply to: [Atahualpa] Horizontal Footer MenuI would add a dynamic widget area to the footer and then use a plugin like ‘Easy menus’
Forum: Fixing WordPress
In reply to: basic question about adding pictures to siteWhat have you tried so far?
Forum: Fixing WordPress
In reply to: Error Database ConnectionBTW – the database you create using MAMP is NOT the same database that MAMP-PRO will use…they are located in two different places.
Forum: Fixing WordPress
In reply to: Error Database ConnectionSo, just to be clear – using MAMP Pro – you have used phpMyAdmin with the
– database name,
– user
– password
– hostname
that you have in the wp-contents.php file.What version of MAMP are you using? What platform? (Mac/PC)
Forum: Fixing WordPress
In reply to: Updated the Settings->General incorrectly1) go to dashboard->settings->reading->Front Page Displays
– press the ‘A static page’ radio button
– set FrontPage:’ to “Home” (or what ever you have called your home page)
– set ‘Posts page:’ to your page called ‘Blog”
2) go to dashboard->settings->permalink and change from the default to ‘Post name’
3) go test itForum: Fixing WordPress
In reply to: Error Database Connectionhave you checked all that?
have you used phpMyAdmin to access the DB with those credentials?Forum: Fixing WordPress
In reply to: Updated the Settings->General incorrectlywhat do you want displayed if someone just types ‘your_website_url.com’?
Forum: Fixing WordPress
In reply to: Updated the Settings->General incorrectlyMaybe you better explain your current setup a bit more. You said you installed WordPress in the folder pointed to with your_website_url.com.
Do you have something other than wordpress at that location too?
If this is all a wordpress site and you want the blog part of the site to be at your_website_url.com/blog, then you could create a static page as your front page, add a page called ‘Blog’ and then at dashboard->settings->reading, set Front page displays to the static page (you could call it ‘Home’ and point the blog page to the page ‘Blog’
Forum: Fixing WordPress
In reply to: Suddenly, 'insufficient privileges' at log onThis thread might help
Forum: Fixing WordPress
In reply to: Updated the Settings->General incorrectlyis the wordpress install in a folder called ‘blog’?
The url points to a folder if you add a slash (‘/’) after it and some text, the system will look in the folder the url poits to – for a folder with the name following the slash – in your case it is looking for the wordpress install to be in a folder called ‘blog’Forum: Fixing WordPress
In reply to: How to make bulleted list appear on my product description?in your CSS try using
list-style: inside none disc;
Forum: Fixing WordPress
In reply to: make the link access the page itselfAre you using a plugin to make the menu? if so, have you looked at it’s options?
If not, how are you building the menu?Forum: Fixing WordPress
In reply to: MySQL query to replace bulk contentYou need to add a ‘where’ clause and you will have to examine the wp-users table to find the persons ID. Say the ID for the person in teh wp-users table was ‘345’ you would use
where post_author = '234'
and that will limit the update to only whe posts with that user