finalcut
Forum Replies Created
-
Forum: Plugins
In reply to: Connections, WPMU, and Imagesalso need to update a little further down where the custom template paths are defined as follows:
if(is_multisite()){ define('CN_CUSTOM_TEMPLATE_PATH', WP_CONTENT_DIR . '/blogs.dir/' . $blog_id . '/connections_templates'); define('CN_CUSTOM_TEMPLATE_URL', network_site_url('/wp-content/blogs.dir/' . $blog_id . '/connections_templates/')); } else { define('CN_CUSTOM_TEMPLATE_PATH', WP_CONTENT_DIR . '/connections_templates'); define('CN_CUSTOM_TEMPLATE_URL', WP_CONTENT_URL . '/connections_templates'); }
Forum: Plugins
In reply to: Connections, WPMU, and ImagesOk I’ve fixed the problems with images on a multisite install.
in connections.php you need to change the loadConstants function lines 190-193 to be:
if(is_multisite()){ define('CN_IMAGE_PATH', WP_CONTENT_DIR . '/blogs.dir/' . $blog_id . '/connection_images/'); define('CN_IMAGE_BASE_URL', network_site_url('/wp-content/blogs.dir/' . $blog_id . '/connection_images/')); } else { define('CN_IMAGE_PATH', WP_CONTENT_DIR . '/connection_images/'); define('CN_IMAGE_BASE_URL', WP_CONTENT_URL . '/connection_images/'); }
This will make sure if multi-site is on that the site is looking in the right place of images.
Forum: Plugins
In reply to: [FeedList] PHP 5 breaks FeedListI’ve fixed this in the latest verison. I’m sorry I was so slow I didn’t realize this had been posted here.
Forum: Plugins
In reply to: Changing the Language in FeedList OutputI’ve created an issue at: https://code.google.com/p/wp-feedlist/issues/detail?id=45
You can follow the progress there if you wish.
Forum: Plugins
In reply to: Changing the Language in FeedList OutputSadly, there isn’t a way to do what you want at the moment. Currently the plugin is always either in English or always in French mode.
In the plugin, on line 181, there is a line to set the language which is set to ‘en_US’; I had never thought of the case where a blog might want to work in multiple languages at the same time.
I’ll file an issue at https://code.google.com/p/wp-feedlist and I’ll add support for this as soon as I have a chance to work on it.
Forum: Fixing WordPress
In reply to: Feedlist Installationkaisha,
I’m not really sure I understand the problem you are having. When you say “directory” do you mean the listing of plugins in your wordpress admin or do you mean the actual directory on the harddrive?
You would activate it via the wordpress admin panel.
Please provide me with some more information so I can help you
Forum: Plugins
In reply to: [Plugin: FeedList] Doesn’t work with PHP 5thanks everyone for identifying the problem and finding a solution to it.
I will include a patched version of rss.php in the feedList release so that folks who experience this problem can apply the fix if necessary.
Cheers,
BillForum: Plugins
In reply to: [WP-OpenID] – Fails to re-add an Identity URL that has been removedso what word press table would the non-existant open id nounce be stored in? If I can just clear it out and then re-add it via the user interface perhaps I would be able to proceed.
Forum: Plugins
In reply to: Open ID plugin not working with WP 2.5I just upgraded to the latest version but I still get sent back to the login screen with no errors displayed. I’m running 2.1.8
Forum: Plugins
In reply to: RSS problemswell technically the problem is with curl.
the magpie stuff which uses snoopy which uses curl fails at reddit.com and mag.nolia – but at both for different reasons. You get a 500 error at reddit and a 301 at mag.nolia.
lastRSS works for both – however it uses fopen. The problem with fopen is that some webhosts don’t allow it.
Forum: Requests and Feedback
In reply to: Multiple blogs are a reality surely?business isn’t the only and non profits are the only people who benefit from multiple the MT multiple blog feature.
With MT I was able to easilly manage/configure my blog, my brothers, my fathers, my mothers, etc.. all from one install. If an update was released I only had to update one install – and all four blogs were updated.
With WP I have to maintain four separate installs.
using categories to differentiate between the four family blogs wouldn’t work. My dad has his own tastes and wants his site to look one way, my mom has far different tastes, etc, etc. We each want our blog to reflect our presonal style. MT allows that all from within one install.
Don’t confuse multiple blog capabilites with user levels, categories, or anything else. It is exactly what it sounds like and is a very useful and powerful feature.
That being said. I’m cheap and so I switched to WP and the headache of updating all four separately to avoid paying for MT.
Forum: Fixing WordPress
In reply to: 1.5.1 Comments Still Dont Send Notification EmailIm not sure if i have access to the mail server logs or not – i’ll have to take a look. If I can I’ll post back here what I find out.
Forum: Fixing WordPress
In reply to: WP1.5 Comments working but moderation isn’tboy some of the spam measures are whey i upgraded. To have them not work at all is a real disappointment.
Not only are all comments auto approved on my blog – but I get no email about them. I have tried the remove “$more” trick in the functions file and that didn’t work either.
I know software gets released with bugs – but to have major features just flat out not work seems kinda crazy to me.
Forum: Fixing WordPress
In reply to: Upgraded. Now Comments Do Not Emaili’m having the same problem. hopefully some can post a solution!