ken1990julius
Forum Replies Created
-
Forum: Your WordPress
In reply to: Review my Site Pleasenice technical site. well organized.
Forum: Your WordPress
In reply to: My WordPress sitegame-extension.com isn’t loading.
Forum: Your WordPress
In reply to: a new blog for Rochefort (France) with original templatenice blog. theme is beautiful.
Forum: Your WordPress
In reply to: Any tips…hi good nice site looks very different and looks like its already popular but requires improvement in the area of content and presentation. you need to add more content.also agree with the above that font has to be more readable.
Forum: Your WordPress
In reply to: My first blognice site. you can add some videos about Iceland travel along with the images. that would be better
Forum: Your WordPress
In reply to: KatoWeb / Need some feedbackcontent is good bu poor presentation. it looks too plain.
Forum: Your WordPress
In reply to: What do you think about this site http://tappinews.com/nice site. clean,well organized decent. looks professional.
Forum: Your WordPress
In reply to: Welcome review and feedback to improve my use of WordPress.its a nice site though found name of your page Artists in the kitchen little misleading first but then realized you mean kitchen garden. very good blog. don’t find that viewers will have any issues while leaving the comments.
Forum: Localhost Installs
In reply to: SQLite And MySQLsqllite and mysql are two different rdbms packages and mysql is the default database used for wordpress. WordPress supports only MySQL database. for further information on this check codex(WordPress documentation) and in particular this link codex.ww.wp.xz.cn/FAQ_Developer_Documentation
Forum: Localhost Installs
In reply to: Installing wordpress locally, can't log in after install.how about inserting user info using phpmyadmin in wp_users table manually and then checking up whether WordPress is allowing you to login using the provided user info. this is only for the first user latter you can try adding up users through the dashboard.
Forum: Localhost Installs
In reply to: localhost blueshave you created a database in MySQL and provide these details in your wp-config.php file.
Forum: Localhost Installs
In reply to: not getting images when export from locahost to online serveri agree thats not twenty twelve
Forum: Themes and Templates
In reply to: Limiting posts on homepagewhat you need is pagination. there is an option ‘posts_per_page’ in query_posts() function which limits the the number of posts. for next and previous at the bottom of the page use previous_posts_link() and next_posts_link() functions which can also works when you exclude the numbers in pagination.
Forum: Fixing WordPress
In reply to: How do you add a .php?create a notepad with name header.php( give extension .php). but run to this file you would need web server (like Apache) installed on machine. in fact for using WordPress this the requirement. you also need php. so my suggestion is that you install xampp server which comes with php and MySQL.
Forum: Themes and Templates
In reply to: Single.php failurewhat i have done when porting a theme to WordPress was that i included the loop in single.php and then used the_permalink() in index.php which calls single.php and so i can included what ever information i want about the post in single.php. i get listing of post in my home page and then when i click a particular post that post is rendered with the help of the_permalink(0 and single.php.