Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#73 2008-02-06 16:58:44

brainphat
New Member
From: Columbia, MO
Registered: 2007-09-07
Posts: 5
Website

Re: [plugin] [ORPHAN] rss_admin_quikpik

I just upgraded to Txp 4.06, and now I don’t see the quickpick menu at all. Disabling the plugin restores Textpattern’s default menus. Oh, how I miss the quickpik.


brainPhat

Offline

#74 2008-02-07 17:31:01

merz1
Member
From: Hamburg
Registered: 2006-05-04
Posts: 994
Website

Re: [plugin] [ORPHAN] rss_admin_quikpik

Problems with 4.0.6 are reproducible.

Quote from the 4.0.6 announcement discussion:

rss_admin_quikpik by Rob Sable (version 0.6) for a changed admin menu interface is not running.

Worse: Being active rss_admin_quikpik hides the standard admin menu.

A dumb try to change the code to:

	if (@txpinterface == 'admin') {
		add_privs('rss_quikpik_buffer', '1');
		ob_start("rss_quikpik_buffer");
	}

did not help.

I had to disable the plug-in to get the standard admin back to work.


Get all online mentions of Textpattern via OPML subscription: TXP Info Sources: Textpattern RSS feeds as dynamic OPML

Offline

#75 2008-02-12 04:59:24

mwillse
Member
From: brooklyn, ny
Registered: 2006-06-26
Posts: 83
Website

Re: [plugin] [ORPHAN] rss_admin_quikpik

Has anyone found a solution to the rss_admin_quikpik problem with Textpattern 4.0.6 ? After upgrading, the menu no longer appears.

I’m not getting any javascript errors. The plugin hides the standard menu (as it’s supposed to do), but doesn’t show it’s alternative.

It seems that 4.0.6 includes an id on the body tag. Perhaps the plugin can’t find where to place the menu?

Offline

#76 2008-02-12 05:35:08

mwillse
Member
From: brooklyn, ny
Registered: 2006-06-26
Posts: 83
Website

Re: [plugin] [ORPHAN] rss_admin_quikpik

Digging deeper, the plugin does in fact replace <body> which it can’t find with an id applied to it. Here’s a fix that seems to work.

Edit the plugin’s code. Find the following line:

$ret = str_replace("<body>", "<body>".rss_doQp(), $ret);

And replace it with:

$ret = str_replace("<table id=\"pagetop", rss_doQp()."<table id=\"pagetop", $ret);

Instead of adding the menu after the body tag, we’ll add it before the table tag that follows.

Last edited by mwillse (2008-02-12 19:43:15)

Offline

#77 2008-06-19 18:57:13

brainphat
New Member
From: Columbia, MO
Registered: 2007-09-07
Posts: 5
Website

Re: [plugin] [ORPHAN] rss_admin_quikpik

mwillse wrote:

Digging deeper, the plugin does in fact replace <body> which it can’t find with an id applied to it. Here’s a fix that seems to work.

Thanks! That works like a charm, and leads me to some other ideas I’ve had for the ol’ quikpik.


brainPhat

Offline

Board footer

Powered by FluxBB