vageez
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Creating Database without tablesA combination of things led to me successfully fixing the issue.
1. Installed the latest version… 3.9
2. Had to slightly alter my host file… with respects to removing rewrite directives…Thanks for all your help!
Forum: Installing WordPress
In reply to: Creating Database without tables@sneff I created the database
1. names match in the config file
2. user with full privileges created
3. Once everything is set up i am attempting to run https://authenticgreekdishes.com/wp-admin/install.php4. No tables are being created.
After chacking the error log i am seeing the following… which is essentially what being show in when accessing the URL…[Sun Apr 27 10:22:42 2014] [error] [client 64.229.165.94] WordPress database error Table 'agdsite.wp_options' doesn't exist for query SELECT option_value FROM wp_options WHERE option_name = 'show_on_front' LIMIT 1 made by require('wp-blog-header.php'), wp, WP->main, WP->query_posts, WP_Query->query, WP_Query->get_posts, WP_Query->parse_query, get_option [Sun Apr 27 10:22:42 2014] [error] [client 64.229.165.94] WordPress database error Table 'agdsite.wp_options' doesn't exist for query SELECT option_value FROM wp_options WHERE option_name = 'posts_per_page' LIMIT 1 made by require('wp-blog-header.php'), wp, WP->main, WP->query_posts, WP_Query->query, WP_Query->get_posts, get_option [Sun Apr 27 10:22:42 2014] [error] [client 64.229.165.94] WordPress database error Table 'agdsite.wp_options' doesn't exist for query SELECT option_value FROM wp_options WHERE option_name = 'comments_per_page' LIMIT 1 made by require('wp-blog-header.php'), wp, WP->main, WP->query_posts, WP_Query->query, WP_Query->get_posts, get_option [Sun Apr 27 10:22:42 2014] [error] [client 64.229.165.94] WordPress database error Table 'agdsite.wp_posts' doesn't exist for query SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts WHERE 1=1 AND wp_posts.post_type = 'post' AND (wp_posts.post_status = 'publish') ORDER BY wp_posts.post_date DESC LIMIT 0, 1 made by require('wp-blog-header.php'), wp, WP->main, WP->query_posts, WP_Query->query, WP_Query->get_posts [Sun Apr 27 10:22:42 2014] [error] [client 64.229.165.94] WordPress database error Table 'agdsite.wp_options' doesn't exist for query SELECT option_value FROM wp_options WHERE option_name = 'sticky_posts' LIMIT 1 made by require('wp-blog-header.php'), wp, WP->main, WP->query_posts, WP_Query->query, WP_Query->get_posts, get_option
@znuffin Im on a VPS… my hosting provider also breifly looked into the issue a few weeks back… they were not able to find the issue and basically told me to add a CPANEL to my hosting plan…
Im guessing ill try and install the most recent 3.9 version.
Forum: Installing WordPress
In reply to: Creating Database without tablesI set up wp config correctly…
I actually did some extensive testing with the settings to make sure they were correct.I tried several variations when trying to point to the dbhost…
My guess at this point is that there may be some sort of permissions issue when wp tries to create the tables..
Forum: Fixing WordPress
In reply to: Please help, I create a new blog – but cant be found.Im under the assumption that when I create the Blog, the subdomain gets created automatically.
Do I need to go in and manually create the subDomain.
thanks for the help.
Forum: Fixing WordPress
In reply to: Setting Post Titlecan u put up a link
so I can see?
Forum: Fixing WordPress
In reply to: Changing Header ImageThe white line on top of your banner is part of the image, it looks like u probably put a bevel or emboss feature on it in photoshop, and that is what you are seeing.
for the search bar, you need to go in the header.php(probably header.php) and remove the code that creates that search bar.
should be inside a
<form></form>
form tags, get rid of the form tags and everything inside.good luck
Forum: Fixing WordPress
In reply to: [Another WordPress Classifieds – Plugin] Click on place an ad issueIn the classifieds -> general settings
Uncheck search engine friendly links, this fixes the issue.
Forum: Fixing WordPress
In reply to: Changing Header ImageOK, first thing go into your style.css
{style.css on or around line 54)#header-back
background:transparent url(images/black-back.png) repeat scroll left top;
height:238px;
}change your height to what I have specified
Forum: Fixing WordPress
In reply to: Changing Header ImageHey I had a look,
your image tag should look like this.
<img src="images/yourlogo.jpg" height="116px"/>
that way it will fit.
Forum: Fixing WordPress
In reply to: [Another WordPress Classifieds – Plugin] Click on place an ad issueanyone?
Forum: Fixing WordPress
In reply to: Changing Header ImageInside WP_CONTENT/THEMES/YOURSELECTEDTHEME/HEADER.php
This should be the right location if all wordpress themes follow the same structure.
you will find this code.
-
Callatonic Productions
`</h1>
Replace the name(that I have underlined and made bold) with an image tag
<img src="images/yourimage.jpg"/>
this should work. Their is also the option to create a div with the same dimensions as your image. And in the CSS add the image as a background image. But the first way soul;d be easier. Good Luck.