masterbassie
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Dooodl] Apostrophe problemi don’t have an .htaccess file in that directory… not sure if this is the cause but the way this site is setup is: there is a wordpress install on the root and a wpmu in the directory /lytt. both of which have htaccess files but they are required for functionality.
any suggestions?
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Cannot set true ‘do not cache’ files/pagesany solution to this problem with tdomf? i’m experiencing the same problem with caching. thanks in advance
Forum: Plugins
In reply to: [Plugin: List category posts] problem with widgetsi figured it out (i think) i removed “register_widget_control(‘List category posts’, ‘lcp_widget_options’, 300, 200 );” from list-category-posts/list_cat_posts_widget.php . and the widget page works fine in 2.8.6
Forum: Plugins
In reply to: [Plugin: Dooodl] Apostrophe problemyou can see the doodl widget here https://lilayogainstitute.com/lytt/
It only adds the slashes on the widget – clicking through to view the pics look normal (in tiltviewer).
ctrl Z (multiple times) would be a good addition versus just a white/black brush.
Another feature i would like to request is for the admin to 1) be able to delete the pics, 2) decide which one should be seen in the widget. OR 3) even cooler to have them rotate (either a new one on each page load or as a slideshow).
just some ideas… thanks for the response.
ian
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] JS File Management:https://www.ilivesalsa.com/phpinfo.php
this isn’t the staging site directory but the info should be the same…. i think
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] JS File Management:it says [Mon, 09 Nov 2009 08:09:48 -0700] [/staging/wp-content/w3tc/default.include-footer-nb.js] Unable to download URL:….both files.
i managed to figure out what was restricting the plugin from downloading the js – this plugin is on my staging site which is in a password protected directory. i took of the password and it loaded.
problem now is the js seems to not be working. with the combine only function enabled what should ‘default.include-footer-nb.js’ look like? I would imagine just both js in one file.
Instead it looks like this’????????;ks????_1?n?’. i cleared the cache but it didn’t change it. I’m using apc on bluehost if that matters.
ideas?
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] JS File Management:i tried the combine only but the same thing happened. the file itself wp-content/w3tc/default.include-footer-nb.js is not created (if i search for it in the above directory).
permissions issue?
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] JS File Management:uh ok.. what i got out of that is the file could not be loaded, right? So then that limits the functionality of the combine in header or footer… or are you saying my settings are wrong?
if so do you have any suggestions for what they should be or which js files should be included in this combine function and which should not?
thanks in advance
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] JS File Management:@ocean90 that seems to work well, thx.
however i replicated this technique for the header and the js would not load. which made me doubt that the js in the footer was actually loading loading. i found that both the footer and header get “HTTP/1.0 400 Bad Request” which fail to load anything.
any ideas why this is so?
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] JS File Management:i’m having the same problem. i un-installed, deleted and re-installed but the problem persists. I am using 2.8.5. I noticed that it only does this when the ’embed’ selector is the same. I.E. if one of the js files is ‘footer’ and the second is ‘footer (non-blocking)’ they will remain but more than one in any category get stripped.
Also minify for css seems to (IDK) fail to convert properly. Viewing the default.include.css reveals an assortment of random characters which in turn leads to the css not working on the page.
any ideas? thx
ian
Forum: Plugins
In reply to: [Plugin: Shorten2Ping] Great plugin!what would be even better is if we could use our own shortened urls. like what the plugin ‘Twitter Friendly Links’ does…
Forum: Fixing WordPress
In reply to: [Plugin: Google XML Sitemaps] deleted posts still show upyea i have wp-cache activated… the bad links have since gone away. i need more patience ??
Forum: Requests and Feedback
In reply to: [Plugin: d13slideshow] parent category for post selectionIn my own impatience i devised a remedy (sort of). Only problem is I couldn’t figure out how to print out all the array values parsed by a comma into the d13 php call. So i kinda improvised. Its a very down and dirty ‘fix’ for anyone who needs it.
<?php
$args = array(
‘numberposts’ => 10,
‘category’ => 8,
‘orderby’ => rand
);$lastposts = get_posts($args);
foreach($lastposts as $post) :
setup_postdata($post);
?><?php
$ID_Array[]=$post->ID;
?>
<?php endforeach; ?><?php d13slideshow(array($ID_Array[0], $ID_Array[1], $ID_Array[2], $ID_Array[3], $ID_Array[4], $ID_Array[5], $ID_Array[6], $ID_Array[7], $ID_Array[8], $ID_Array[9])); ?>
Forum: Themes and Templates
In reply to: [Plugin: UMapper] clear both problemfixed it. in case anyone is interested in this fix the code can be found here umapper/content/tpl/viewer.tpl.php just change clear:both; to clear:none; and that does the job.
Forum: Plugins
In reply to: Yet Another Related Posts Plugin 3.0 beta 1Is there a way to exclude certain pages/posts from receiving the related posts function? What i mean is that i have a specific template for a category and i don’t need the related posts on those pages.
Thanks in advance.
**** nevermind i just shut off auto allow and manually inserted the php.
although checkbox functionality for pages or posts might be helpful.