dremation
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Password HashAnyone have any idea on this?
Forum: Fixing WordPress
In reply to: WordPress Password HashThis is the hash I get now.
$P$BFunc6z.neGNhHhluLFa/FJHgei9NT.
It should be/used to be
e4c9365b2f17848c7cd25c7f1e10fc68
Forum: Fixing WordPress
In reply to: Extreme SlownessI was using a remote MySQL database. I created a new database on the local machine and bam! 100% working.
Forum: Fixing WordPress
In reply to: Extreme SlownessIt’s strange. Wiped out the whole directory and reinstalled again. Nothing, ISE and “Nothing found here” but if I visit the read me at /readme.html it loads fine :-/ So frustrating.
Forum: Fixing WordPress
In reply to: Extreme SlownessThey tell me that theres a script that is causing heavy loads. I’m using the latest WordPress along with eVid from ElegantThemes. I have the same identical setup on other domains hosted on the same server. The only difference is that this site has over 7,000 posts.
I have SSH access and they advised me to check the logs, but I know nothing about that.
Forum: Fixing WordPress
In reply to: Extreme SlownessI can’t even get it to load now. It’s either “Nothing found here” or ISE.
Forum: Everything else WordPress
In reply to: cant access wordpress adminare you using localhost , ip or web address? If the mysql is on the same machine it’s recommended to use localhost. If not try the web address given.
Forum: Everything else WordPress
In reply to: cant access wordpress adminMake sure you have single quotes ‘ ‘ around your database name, user and password. If you accidentally removed one while changing the info, it will throw this error.
Forum: Themes and Templates
In reply to: Download Theme?Download and install Filezilla. Once installed and your FTP information and log in.
Once logged in just browse to the wp-content/ directory and drag your theme folder to the wp-themes/ directory.
Forum: Themes and Templates
In reply to: I need help with WordPress theme codeindex.php
sidebar.phpFix: sidebar.php
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
You didn’t follow through with an else statement so you don’t need the extra : at the end there. It should be
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) ?>
Fix: index.php
`<div class=”itemsummary”><?php the_content(‘Read the rest of this entry »’) ?></div>
</div></div>
<?php else : ?>`
You never used endwhile. It should look like this.
` <div class=”itemsummary”><?php the_content(‘Read the rest of this entry »’) ?></div>
<?php endwhile; ?>
</div></div>
<?php else : ?>`
Forum: Themes and Templates
In reply to: theme questionCheck out whoothemes or elegantthemes. They both are professional and very easy to configure and both offer a very wide range of themes.
Forum: Themes and Templates
In reply to: Awful Question Including a header imageare you using echo with double qoutes? thats the only reason you’d see the DIV code like that.
Forum: Themes and Templates
In reply to: Testing a new theme w/o going LIVETIP: when you go to install WP on your local machine.. browse to
https://127.0.0.1/
DB Name: test
USER: root
PASS: leave emptyif you want to change this then go to https://127.0.0.1/home/mysql/
there you can create a db.Forum: Themes and Templates
In reply to: Adding Custom Header to Vigilance ThemeI’ll get to it. Downloading the theme now. You want to email the picture you want to use? [email protected]
Forum: Themes and Templates
In reply to: Adding Custom Header to Vigilance ThemeLeave the current header there and just remove the ‘guts’. Leave the DIV tags intact. Then add your Image right in the middle of all the commotion. <img src=”yourURL”/> If you need, I can download the theme and do the work for you. No big deal, I’m bored.