justinratwebtek
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Requested URL not found on this serverThis thread actually covers what to look for in the DB.
Forum: Fixing WordPress
In reply to: Align Title RightThis is generally a theme issue and you’d want to edit the CSS files inside your theme (or hardcode the html).
For further help, we’d need to see an address of your blog so we can see what theme you’re using, etc.
Forum: Fixing WordPress
In reply to: Requested URL not found on this serverSounds like the Installed Location and/or URL was mistyped when you installed WordPress. Can you get into your admin panel at all? This would be yoururl/prayerblog/wp-admin
After logging in, it may attempt to shoot you to your 404, but after that, try entering yoururl/prayerblog/wp-admin/options-general.php to update the addresses.
If that doesn’t work, you’re going to need to manually edit the entries in your Database.
Forum: Fixing WordPress
In reply to: wp_loginout calling wrong urlDoh! Completely forgot about that… Thanks for the reminder Dossy.
Forum: Fixing WordPress
In reply to: Guest access to page content?Well, by default, WP allows anonymous access to content that is Published. Could you list your blog address so we can see the issue at hand?
Forum: Fixing WordPress
In reply to: admin pages won’t loadCould be a bad install, but it’s more likely this.
Forum: Fixing WordPress
In reply to: wp_loginout calling wrong urlIt’s actually in the same table. You can browse the table manually (the “Host” option is usually on the second page in phpMyAdmin) or try the following:
UPDATE wp_options SET option_value = ‘https://www.sshrmanj.org/blog/’ WHERE option_value = ‘https://server302.tchmachines.com/~xicjilzj/blog/’ AND option_name = ‘home’
Note: the bad address in that query – make sure it’s set to the non-matching address from the previous query.
Forum: Fixing WordPress
In reply to: wp_loginout calling wrong urlI ran into something like this last night while testing DB issues. In addition to the query dossy suggested, run the following:
select option_value from wp_options where option_name = ‘home’;
or both:
SELECT option_value FROM wp_options WHERE option_name = ‘home’ OR option_name = ‘siteurl’
They should match. If not, you’ll need to edit.
Forum: Fixing WordPress
In reply to: Sidebar helpQuick and dirty:
<?php if(is_home()) { echo "<li> <span class='head'>LATEST NEWS</span> </li>"; echo "<ul>"; $lastposts = get_posts('numberposts=5'); foreach($lastposts as $post) : setup_postdata($post); ?> <li><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a> <?php echo " <small>posted on: "; echo the_time('F j, Y') . "</small></li><br />"; endforeach; echo "</ul>"; } elseif (is_category(3) ||.....
This’ll help in the future if you continue to custom code.
Forum: Fixing WordPress
In reply to: MySQL and PHP…I stand corrected. Someone has created a plugin to do what you want.
Forum: Fixing WordPress
In reply to: Upgrade caused loss of CategoriesMichael,
What you’re describing is what happened to me when I forced a permissions downgrade on the DB user. Hmm.
Forum: Fixing WordPress
In reply to: MySQL and PHPWell, if you’re using widets, the only real way would be to write a custom widget plugin to do what you want.
What are you trying to do? There may already be a solution.
Forum: Fixing WordPress
In reply to: My Adsense is NOT aligned with my headerThe quickest way:
Put the
<center>
tag in front of the Adsense block and</center>
after it.Forum: Fixing WordPress
In reply to: Change the “What I’m Doing…” text in the sidebar widgetAfter downloading twitter-tools, line 570 in the file is the “What I’m doing..” line. You can also edit this inside the Widget panel by clicking on the Twiter-Tools Menu on the right hand side of that Widget.
If you both are still having problems with it, you may need to contact the plugin author.
Forum: Fixing WordPress
In reply to: MySQL and PHPWidgets don’t allow code to be posted within the text blocks from the Widget Menu. Simple HTML, JavaScript, and CSS are Ok, but no PHP.