robanna
Forum Replies Created
-
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Per post sending not working in wp 3.0.1Can you elaborate on the password issue you were having?
My per post mails stopped some time ago, around the time I upgraded to WP3 and MP5.Where did you activate the password? Was it on the server? What directory?
I’m on a windows IIS server but all of the directories should be equal to chomd 777.
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Weekly mails stopped workingJohn,
Is this the same problem as I’m having?:
http://groups.google.com/group/mailpress/browse_thread/thread/5547cfd25237114f/79f573f913489536Forum: Fixing WordPress
In reply to: missing the button "Insert / edit embedded media"No more button. Ok.
http://codex.wordpress.org/EmbedsForum: Fixing WordPress
In reply to: missing the button "Insert / edit embedded media"When:
define( ‘MULTISITE’, true );
It’s not there.
When:define( ‘MULTISITE’, false );
the button is there.
Forum: Fixing WordPress
In reply to: missing the button "Insert / edit embedded media"I disabled all of the plugins but it’s still not there….
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Bulk deactivate bounce error emails?Settings>mailpress>batches
there you can set the ‘Max bounces per user’
After that number of bounces is reached it will automatically deactivate them.Works now.
Thanks!Same here…
Going to to 2.1.6 worksForum: Plugins
In reply to: [Smart 404] [Plugin: Smart 404] Trailing part of url goes to pageAnother odd thing is that when it’s redirecting to the page, the server 404 error pops up for a few seconds. Is there a way to make that stop?
Forum: Fixing WordPress
In reply to: TinyMCE past images… wrong path?OMG! It’s a Firefox issue. It pastes absolute links in Explorer on Window but not in Firefox on windows or Mac.
Should this be reported as a bug though since Firefox is one of the most popular browsers?
Forum: Fixing WordPress
In reply to: TinyMCE past images… wrong path?Same issue here. It’s very annoying. I copy an absolute link and paste it via visual editor and it pastes the relative path. WordPress doesn’t handle relative paths well so why would the default be to paste them?
Please help us.
Forum: Fixing WordPress
In reply to: WordPress Visual editor breaking internal hyperlinksSorry to reopen such an old topic but does anyone have an answer to this issue?
When I copy/paste text with a link, the url always ends up relative (../link) even if the original is absolute (htt://site.com/link). Many times that causes the link to be incorrect. I end up with something like http://site.com/news/category/news/link instead of http://site.com/news/link.
Can anyone tell me how to fix this?
Thanks-
RobForum: Plugins
In reply to: Database errors when activating MailPress on WP 3.0 in MS modeI’ve been talking with the developers on the group. I’ll let you know if I find anything out.
Forum: Plugins
In reply to: Database errors when activating MailPress on WP 3.0 in MS modeI got the same errors and my posts load REALLY slow.
Ever find an answer?
Forum: Plugins
In reply to: [Plugin: Post Expirator] Change Category instead of Change Statusdelete_post_meta($a->post_id, ‘expiration-date’);
$my_post = array();
$my_post[‘ID’] = ($a->post_id);
$my_post[‘post_category’] = array(96);
wp_update_post( $my_post );// Set status to ‘Draft’
// wp_update_post(array(‘ID’ => $a->post_id, ‘post_status’ => ‘draft’));
// delete_post_meta($a->post_id, ‘expiration-date’);
// update_post_meta($a->post_id, ‘expiration-date’, $a->meta_value, true);This seems to be working. i don;t think it liked deleting the meta after updating the post cat.