cedar
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Problems with WordPress login in for admin.It certainly wouldn’t hurt to remove the WP related cookies from your browser(s), but if that fails and you have access to a command line or PHPMyAdmin there are instructions in the codex for resetting your password.
Forum: Fixing WordPress
In reply to: Last updated, linksDavid, your certainly not insulting my intelligence — it never occurred to me that I would have to set options manually in the database.
However, upon taking a look I see that all of the database fields you referenced are already what you suggest. It still doesn’t work.
Forum: Everything else WordPress
In reply to: The Google thing – not discussed here?! [CLOSED]I said: “I am quite capable of stating that this is something that reflects on more than just one person.”
Podz: “No you are most certainly not.”
—————-
I understand that this is a support forum and you don’t want it to deteriorate into a bunch of mudslinging chat — but, with all due respect, please do not tell me what I am and am not capable of saying.
I have linked every site of mine that uses WordPress, every site of a client that uses WordPress and every site of everyone I have encouraged to use WordPress to a link farm. I did not know this at the time. I did not know that the act of giving credit where it was due (and it most definately is due, WP remains a wonderful tool) would result in perpetuating the gaming of Google.
I’m not even sure that I would have changed anything even if I had known — but that is something I never had a chance to decide. I think that all anyone is asking is for some sort of official word. If Mr. Mullenweg can take the time to tell us about the weather in Florence I don’t think that a paragraph or two on something of this importance is an unreasonable request.
Forum: Everything else WordPress
In reply to: The Google thing – not discussed here?! [CLOSED]Ryan, I’m not sure you can chalk our questions up to ignorance.
A couple of facts are indisputable. Firstly, there are better than 150k pages on this server produced by Hot Nacho. Secondly, on the front page of www.remarpro.com is a bit of CSS that hides several links in direct conflict with Google’s policy.
Those are facts. What is missing is comment from the lead developer and owner of the site. I’m certainly not qualified to comment on Mr. Mullenwegs motives but I am quite capable of stating that this is something that reflects on more than just one person.
Forum: Everything else WordPress
In reply to: The Google thing – not discussed here?! [CLOSED]idbehold: here.
Forum: Everything else WordPress
In reply to: The Google thing – not discussed here?! [CLOSED]Thank-you.
When I saw this on waxy, metafilter and now slashdot I kept checking back here for official comment. With all the slagging of Matt and WP going on I figured it was only reasonable to hold off on adding to the noise until both sides were heard.
Well, it’s been twenty-four hours or so and last I checked they had the internets (at least one of them) in Europe. This is a big deal and it’s not going away, no matter how many forum threads get disappeared.
Forum: Fixing WordPress
In reply to: Logged in as . Logout ??I too am having this problem. It doesn’t matter what template I use or what the comment settings are — everyone’s an admin when it comes to comments.
Forum: Everything else WordPress
In reply to: What’s the best webhost for wordpressWhy, TextDrive of course.
I’m pretty sure they support WP, since they host the thing and all ??
Forum: Fixing WordPress
In reply to: Nightly buildsThanks TG. I’ve used 1.2, and the previous ones and am familiar with WP. As far as running a nightly goes, if it wasn’t a bad idea it wouldn’t be any fun at all ??
I understand the potential issues with Alpha software — I’m primarily concerned about regressive bugs in the latest nightly and if there is a ‘better’ build.Forum: Themes and Templates
In reply to: Customization is WAY too difficult!Internetpilot: For starters, forget all this Perl vs. PHP nonesense.
They both have their pros and cons but you no more need to know PHP to template a WP site than you need to know Perl to modify a Movable Type template. I modify them both heavily and believe me, scripting languages are not one of my strong suits.
What worked for me was reading the docs and looking at the WP template tags as an extension to [X]HTML. Make your layout and do your CSS like you would for any other site, just replace the static markup with the WP tags as required. This really isn’t complicated providing you don’t ‘misplace’ the WP required code in your template (this is easy to spot just looking at the default template).
Granted this requires knowing [X]HTML and CSS, but certainly doesn’t require any more than a cursory knowledge of PHP — if your used to hacking Perl this shouldn’t take more than a couple of hours.Forum: Everything else WordPress
In reply to: Good Web HostI’ve been playing with 1and1 a bit (heck, it was free) and it seems okay. I installed MT and a PHP photo gallery without any notable difficulty. One thing though — I don’t think I’ve ever seen a less intuitive or slower control panel — but if your comfortable with the shell it seems to work well. Support, I don’t know about, I haven’t broken anything yet ??
For what it’s worth, the domains that matter to me are with VerveHosting.Forum: Everything else WordPress
In reply to: promotion of weblogContent. If you update regularly and provide interesting content they will return. WillM’s part will get them to look, only the content can get them to bookmark or link to it.
Oh yeah, when you come up with some of that fancy-schmancy ‘content’ stuff, could you send some my way?Forum: Plugins
In reply to: PHPWeatherYep, that would pretty much be it. Keep in mind that the database is only used for caching and while it will speed up the response time it isn’t strictly necessary — also, you need not create a new database, your only inserting one table (metars) so it is unlikely to conflict with anything else on a shared database.
The docs for 1.x are a little more comprehensive than the ones for version 2.Forum: Plugins
In reply to: PHPWeatherI see your point ??
I just downloaded the current version and it seems there were a few more changes than I thought. If your using 2.21 I’m afraid I’m not going to be much help, it took me forever to get the old version the way I wanted it and I’m not about to mess with it now ??
However, 1.6x is still available for download, meets my needs well and contains the two files your looking for.Forum: Plugins
In reply to: PHPWeatherI imagine all you have to do is make sure the file path to “phpweather.inc” and “locale_en.inc” is correct. In the case of the snippet above they would have to be in the same directory as the page calling for them. You may want to try an absolute path.
Mine looks like:
<?php
include(‘/home/****/public_html/fultonchain/locale_en.inc’);
include(‘/home/****/public_html/fultonchain/phpweather.inc’);
$metar = get_metar(‘KSLK’);
$data = process_metar($metar);
pretty_print_metar_wap($metar, ‘Saranac Lake, NY’);
?>
You’ll note that I’m displaying “pretty_print_metar” which is configured by modifying the function in “phpweather.inc”. In my version (not necessarily current) it starts on line 396.