vangrog
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Events Calendar] Do not update! 12-12-09The 6.6 is a beta version they have released sorta by accident. So it has a bunch of bugs. Many of them (including the one u mentioned) have already been fixed and can be downloaded from their forum. Check it out to get more details (I think it’s necessary to register to the forum to be able to download their patches; anyways, you can also find answers for most bugs on their forums — not necessary to be registered to read it).
Forum: Everything else WordPress
In reply to: Please help Wikipedia think that WordPress is secureBeing serious and brief, Wikipedia isn’t at all a content and information source which I feel can respect.
Forum: Fixing WordPress
In reply to: Missing template attribute in WordPress 2.9Try repairing and then optimizing your tables on phpMyAdmin, if you have access to it (otherwise, try some plugin which can do the job for you — without needing to log into your SQL server).
————
Define “default template” to be used on your blog, and check if everything works ok with it. If so, your other template might need some changes to work with WP 2.9
Forum: Fixing WordPress
In reply to: How can I filter nav by parent page ID?see if this can help:
http://codex.wordpress.org/Template_Tags/wp_list_categories#Examples
Forum: Fixing WordPress
In reply to: HELP! Website completely inaccessibleyour login to the adm page opens normally…
http://www.neutronicfusion.com/wp-admin/
what happens when u try to log in?
Forum: Fixing WordPress
In reply to: Posting problems w/ 2.9I use PHP 5 and MySQL 5.1
Cheers
Forum: Fixing WordPress
In reply to: Posting problems w/ 2.9I’ve got a real huge database too and I got no problems with WP 2.9. Writing new posts, editing older posts and everything else works smootlhy to me (I checked also the resources I’m consuming on my server and it’s just normal). So it seems this is not an issue affecting everyone (just in case this info can help you somehow).
Cheers
Forum: Fixing WordPress
In reply to: Oh no! My site has gone :sDownload WP 2.9, extract the files and upload them to your site server. That could make it run again (although, it won’t fix the issues you got after upgrading; at least you’ll have your content back).
Forum: Fixing WordPress
In reply to: Oh no! My site has gone :sYou should have backed your SQL data up, that’s the most important part… Don’t you have at least an older SQL backup? Or you can try to contact you host. Most servers do daily backups. Maybe they can help you getting a backup of your old data base, if their SQL server runs schedulled backups. If it’s a paid host, it’s more likely they can help you (if it’s a free host, I wouldn’t expect real help).
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Thickbox problemnp..
glad it worked… it has less conflict problems than most similar ones, specially thickbox (and, as said before, many more possibilities)…
cheers
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Thickbox problemQuicly looking around your page html code, i saw an “</iframe>” tag on it. But I couldnt find “<iframe>”. I wonder where that /iframe tag comes from. An iframe could be a possible problem (iframes can affect a bunch of things).
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Thickbox problemI recommend you to try shadowbox instead of thickbox. It’s worth.
http://wordpress.org/extend/plugins/shadowbox-js/
It has the option to be used on all image links, so you dont need to set up anything on nextgen. Or u can set up nextgen to use lightbox effect (shadowbox will understand the “rel=lightbox” tags)
It also has other cool options, such as handle oversize images (resize or drag)… It also works with different kinds of content, more than just images: video, sfw, iframe, html and others… It’s better and more complete, imo… And works just charmly…
Cheers
Forum: Plugins
In reply to: [Plugin: Section Widget] Want to place 1 category on frontpageI don’t know that plugin. But as a rule it is very easy to set categories to be showed/excluded on WP, so it shouldn’t be hard for you to make it happen.
Probably somewhere on your plugin php files (it can also be found on your template files on sidebar.php, or wherever categories are displayed) you’ll find this code: wp_list_categories (generally like this: “<?php wp_list_categories(‘title_li=’); ?>”)
You can set it up to display only certain category, by pointing its ID number, like:
<?php wp_list_categories(‘title_li=&include=1,4,6’); ?>
(add just the ID numbers you want to show up; on the example above, only categories #1, #4 and #6 will be shown)
Or, otherwise, you can exclude some categories from being displayed:
<?php wp_list_categories(‘title_li=&exclude=9’); ?>
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Problems to make the email tag the right sizeIt should work if you set the sizes like this:
[text* your-name 60/]
[email* your-email 60/]
[text* your-subject 60/]
[textarea* your-message 61×12]
Paste here your contact form, it’ll make it easier to figure out if it is the form itself or something else.
Cheers
Forum: Plugins
In reply to: Icon Next to URL, PleaseI’m not sure I get what you mean. Is it the icon that appears on the left side of the URL address bar on your browser when you open a website? (some sites do have, others don’t)..
If so, that’s called “favicon”…
You need to create an icon (got to be *.ico), name it as “favicon”, upload it to your site/blog root and add a tag like the one below between <head> and </head> on your header.php file.
<LINK REL=”SHORTCUT ICON” HREF=”<?php bloginfo(‘url’); ?>/favicon.ico”>