nickknowledge
Forum Replies Created
-
Forum: Plugins
In reply to: edit-pages.php – display in blocks of 20?Thanks for pointing me to this great plugin. Am tantalised by the fact that this great functionality will extend to Pages at some point in the future. Still, has given me a few ideas for a kludge which (while well short of a plugin) may give me the functionality I need.
Thanks.
Forum: Fixing WordPress
In reply to: Admin Menu highlightingFurther down the menu.php file, find this line:
if ( substr($self, -10) == substr($item[2], -10) )
and change it to:
if ( substr($self, -20) == substr($item[2], -20) )
depending on the length of your file names.
E.g. if you’re creating files with names like “navigation-admin.php” and “navigation-options.php”, 10 characters won’t be enough to distinguish the two.
Hope this helps.Forum: Fixing WordPress
In reply to: Folder-based navigationI have an existing site (non-WP, but I’m migrating), with URI’s in the form
https://www.mysite.org/geography/mountains/
As a default with WP, even if I create sub-categories with just one post, the links will become:
https://www.mysite.org/category/geography/mountains/
However, adding this to the .htaccess file immediately after the RewriteBase line redirects them nicely:
RewriteRule ^geography/?(.*) /wordpress/index.php?category_name=geography&$1 [QSA]Forum: Installing WordPress
In reply to: WP 1.0 config for offline / localhostHi TigerDE2 – having got the same error, I went back, and re-ran install-config.php, which this time worked with no errors.
The next three config screens complained of having no wp_options table, but eventually corrected itself (and created 12 tables), and now works.
Does that help at all?
NickForum: Installing WordPress
In reply to: WP 1.0 config for offline / localhostUpdate!
Using the beta 1.0.1-RC1, and ignoring the errors (principally about lack of wp_options table), have successfully connected and ready for my first blog.
Thanks!Forum: Installing WordPress
In reply to: WP 1.0 config for offline / localhostThanks Cena.
The beta 1.0.1 install-config.php returned these errors:
Warning: Invalid argument supplied for foreach() in C:\Apache2\Apache2\htdocs\wordpress\wp-admin\install-config.php on line 121
Notice: Undefined variable: handle in C:\Apache2\Apache2\htdocs\wordpress\wp-admin\install-config.php on line 142
Warning: fclose(): supplied argument is not a valid stream resource in C:\Apache2\Apache2\htdocs\wordpress\wp-admin\install-config.php on line 142
Warning: chmod(): No such file or directory in C:\Apache2\Apache2\htdocs\wordpress\wp-admin\install-config.php on line 143
Should I wait for the next release?
Regards,
Nick