lxg
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Validating A Site1. Your Blog title seems to contain strange characters. Possibly you have specified a wrong charset in the WP options or you use invalid characters.
2. The JS should look like this:
<script type="text/javascript">
//<![CDATA[
alert('This is my JS!');
//]]>
</script>
i.e. marked as CDATA properly.
Forum: Installing WordPress
In reply to: API Keyhttp://faq.wordpress.com/2005/10/19/api-key/
Note wordpress.com, not .org
Forum: Fixing WordPress
In reply to: Login and Registration Form?is there some sort of
<?php wp_register(); ?>snippet in the sidebar.php?Forum: Fixing WordPress
In reply to: What wp header code do I use in non-wp pages?Have you possibly manually modified your .htaccess file? If so, could you please post it?
Check out these: http://www.webspaceworks.com/resources/cat/wp-plugins/30/ and http://www.webspaceworks.com/resources/cat/wp-plugins/31/ and see them doing a fine job at my site. 😉
(Note that I modified both of them in order not to create links to the currently displayed page.)
Forum: Fixing WordPress
In reply to: What wp header code do I use in non-wp pages?Never heard of a 404 producing client-side differences. elyonline, note the difference between your two links: one is with trailing slash, the other without. This can be a major problem.
However check out this:
http://www.schroepl.net/cgi-bin/http_trace.pl?url=http%3A%2F%2Fwww.elyonline.co.uk%2Fevents%2F&method=GET&version=HTTP%2F1.0Your server sends a 404 and yet delivers content. :-/
Forum: Fixing WordPress
In reply to: Title Image Transparency (Quick fix…help?)Dgold: The image is actually a .gif, you’ll see when you rightclick it and open in a new page.
edit: just opened it in Gimp; it seems to be a gif, but for some reason it is neither greyscale nor indexed.
Marque: Possibly you actually have not a native .gif; you might want to open the image with an image manipulation program and save it as a proper gif or an indexed .png (which IE is able to display properly).
Forum: Fixing WordPress
In reply to: Permissions for Running Outside of WP DirectoryEven if you “download” the wp-config.php via HTTP, you will get an empty file, as inside this file, there is nothing but some definitions. When parsed by PHP, only echoed/printed output from inside
<?php ?>sections arrives at the user.It’s more critical if others have FTP access to your web space, or if PHP safe mode and/or open_basedir aren’t properly configured and others can
include()your files.Forum: Requests and Feedback
In reply to: safari/ doesn’t work after1st day???You should find it in
/wp-content/themes/<YOURTHEME>/, where <YOURTHEME> is the directory of the theme you’re currently using.Forum: Requests and Feedback
In reply to: safari/ doesn’t work after1st day???I have the same when watching your site. This is not browser-specific, but for some reason, the css file doesn’t load. It definitely is there, one can download it with the link given in the page’s head.
But e.g. the W3C CSS validator won’t find it either.
Please try to replace your css link in the header.php file with
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />Forum: Everything else WordPress
In reply to: How can I get my local blog to show up in Google?riverwriter: have you checked your webserver’s log files? maybe you find any hints there.
Forum: Fixing WordPress
In reply to: Lesson: How to make a static page your “home” pageYou’re welcome. 🙂
However, I can hardly imagine how the HPC plugin could affect the page layout. And on my browser (Konqi) the page seems to be alright at first glance.
Forum: Installing WordPress
In reply to: Database, do i have to create it?You can do it via command line:
1. open a shell
2. log in to mysql as root:mysql -u root -p(enter your pw then)
3. create a database withcreate database cazedb01;
4. create a user + pw and grant rights on the db:grant all on cazedb01.* to caze01@localhost identified by 'yourpassword';
5. quit MySQL withquit;
6. Enter the values into your wp-config.phpDone! You can now start the install.php script and let it do its magic.
Forum: Fixing WordPress
In reply to: WordPress Overriding htaccess?Your section says that all *.html shall be redirected to according php file. But the WP section says that a file or directory not found should be redirected to /index.php:
.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-dNow the mod_rewrite mechanism always works as a chain. So it might be that your *.html file is being remapped to /index.php because it just doesn’t exist.
In order to break the chain after having processed “your” directive, you should try to put a
[L]behind it; this tells Apache to stop processing rewrite rules for this request.See also: http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html.en
Forum: Requests and Feedback
In reply to: Is word press right for me?Both are easy. First: Only people who are authorized may post; so, yes, this can be achieved. Second, you can disallow any comments by simply setting this in the Options section in the Admin panel.
If you don’t want the blog-specific message-footers, you need to edit your theme, or make it disappear via a plugin.