laws
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-dTree] [Plugin: WP-dTree] Multi User Mode WP 3,0I got it working.
In wp-dtree_gen-functions.php replace (line 180)
if(substr_count($string, $path)){ //we know that this line holds the node id of our request.
with
if($path && substr_count($string, $path)){ //we know that this line holds the node id of our request.
I don’t really know why, but it works for me.Forum: Plugins
In reply to: [WP-dTree] [Plugin: WP-dTree] Multi User Mode WP 3,0I’ve got the same problem. The cat-tree works everywhere except on Home.
Forum: Plugins
In reply to: [Plugin: NextGen Gallery] reverse order of Manage GalleryIn
wp-content/plugins/nextgen-gallery/admin/manage-galleries.php
change
$gallerylist = $nggdb->find_all_galleries(‘gid’, ‘ASC’, TRUE, 25, $start);
to
$gallerylist = $nggdb->find_all_galleries(‘gid’, ‘DESC’, TRUE, 25, $start);That should do it.
Forum: Plugins
In reply to: [Plugin: Yet Another Related Posts Plugin] Database Failure & Cache emtyI have the same problem as MoiMM.
The tables are missing in the db. Other plugins have created tables so the db user should have sufficient access.
The HTML source of the options pages does not include any YARPP errors but there are 4 MySQL errors:<!–MySQL-Fehler beim Hinzufügen von “yarpp_title”: –><!–MySQL-Fehler beim Hinzufügen von “yarpp_content”: –><!–MySQL error on creating yarpp_keyword_cache table: –><!–MySQL error on creating yarpp_related_cache table: –>
Firebug also throws this:
Access to restricted URI denied” code: “1012
[Break on this error] eval(function(p,a,c,k,e,r){e=function(c)…I don’t even know if this is related ??
I’d really appreciate a fix for this problem.Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] pagination not workingThere is no nextgen 1.22. The latest is 1.01, but with worpress 2.6.3 you should use nextgen 0.99.
I had the same problem.
I uninstalled the plugin completely and reinstalled it. Sadly that changed something in the database and my galleries were gone.
So I used PHPMyAdmin and a backup of the old db to restore the wp_ngg_* tables from the older plugin. That worked surprisingly well.
But i guess it is a bad idea to use the old dbstructure with new plugin, right? So what do I do about it?