myinstinctwaswrong
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: FTP update for WordPress and other pluginsLet me add – I did get FTP access to work – my server is set for sFTP, so once I changed that in wordpress, it worked fine.
I am still interested in changing a setting on the server so that FTP does not have to be used.
Forum: Fixing WordPress
In reply to: FTP update for WordPress and other pluginsI’m having a similar problem. Old server did not use FTP when updating wordpress automatically, new server wants to use it.
I specified the FTP login details in wp-config.php, but that’s not working either.
Is there a setting on the server (CentOS) that can be changed to allow WP to update without FTP access?
Forum: Plugins
In reply to: [Plugin: Audio Player] IE 7 troubleswell, I got this to work – apparently the standalone version doesn’t like being part of a <td> tag – I added a <span> tag and it works fine
FROM (works in FF, not IE7)
<td id="ap1"><script type="text/JavaScript">AudioPlayer.embed("ap1", {soundFile: "https://mysite.com/my.mp3"});</script></td>
TO (works in both)
<td><span id="ap1"><script type="text/JavaScript">AudioPlayer.embed("ap1", {soundFile: "https://mysite.com/my.mp3"});</script></span></td>
Forum: Fixing WordPress
In reply to: Changing post tags from outside of WPok, so I’ve found wp_get_post_tags() and wp_set_post_tags()
wp_get_post_tags() returns the current set of tags, but I can’t get the wp_set_post_tags() to actually change the tags.
Forum: Fixing WordPress
In reply to: how to ? query_posts for specific tag and ignore privateissue #2 appears to be related to a bug/enhancement in WP related to using both a catgeory choice and a tag choice – I have worked around that in this case by removing the
'cat' => 4,
argument.Would still like to know how (if possible) to exclude private posts by adding to the above set of $args.
thanks.
Forum: Fixing WordPress
In reply to: How to let others subscribe to my RSS feedwell, that article pretty much tells you what you need to know.
It really depends on where you want the link to show up – left menu? in the footer area? some other place?
you can use that link I posted above and just add an HTML
<a href=
link – or if you want to do it in PHP, the page about feeds tells you the php code needed to grab the URL from the WP engine.Forum: Fixing WordPress
In reply to: How to let others subscribe to my RSS feedForum: Fixing WordPress
In reply to: How to let others subscribe to my RSS feedForum: Fixing WordPress
In reply to: log in for visitorsjoe – this doesn’t answer your question – does mine – but it might possibly help you ferret out your solution. I post it here for others after us.
https://www.jamescaws.co.uk/2008/10/creating-scripts-that-check-user-registered-in-wordpress-db/
Forum: Fixing WordPress
In reply to: log in for visitorsI’m trying to do the exact opposite – we already require a WP login – now we want a member only area – why re-invent that wheel.
In either case, there doesn’t seem to be much info out there. I’m still digging myself
Forum: Fixing WordPress
In reply to: Specific category posts not working in sidebarI would look into changing
get_permalink($postid)
toget_permalink($post->ID)
Forum: Fixing WordPress
In reply to: Can no longer ad images to postfor testing – try a different browser and see if the problem persists
Forum: Fixing WordPress
In reply to: Comment Approvaldashboard -> Settings -> Discussion -> Before a comment appears -> An administrator must always approve the comment
Forum: Fixing WordPress
In reply to: Specific category posts not working in sidebarchange
$title
to$post->post_title
Forum: Fixing WordPress
In reply to: New Page (With No Post Box)In WP 2.7 – log in and get to the dashboard.
click Pages on the left – click Add New
again – unless I am misunderstainding what you want to accomplish.