lejeczek
Forum Replies Created
-
Forum: Installing WordPress
In reply to: files permissions for only plugins & themes upload ?That fixes it.
Forum: Installing WordPress
In reply to: files permissions for only plugins & themes upload ?That is it – I wish it was not hidden from novice users like myself & was in the docs, perhaps in that very manual doc you pointed to – then many would not have to bother the rest.
Specially docs would do that – very common I’d imagine – case with web-server’s user filesystem permission for webui manages: whole-lot VS only-themes+plugins.
many! thanks. L.
Forum: Installing WordPress
In reply to: files permissions for only plugins & themes upload ?Hi.
Nope, it does not – I’ve seen that ‘permission’ docs and either I’ve gone blind or it does not clearly describe: only theme-plugins web-managed.
I’ve given web-server’s user/account full access to wp-content & to .htaccess and to top folder, the rest is web-server’s group readable and still WordPress tells me that FTP must be used to add/install themes & plugins.
It appears that WordPress need more – I thought, expected that there would be a clear separation, also in terms of file permission, between themes+plugin & the-whole-lot(eg. WordPress own updates via webui) – and I am hoping that it’s a few more files that web-server’s user need full access to as opposed to the-whole-lot, for themes+plugins only.
Forum: Fixing WordPress
In reply to: wp package install wp-cli/restful – failsSeems the problem is with slightly outdated Fedora’s version – 2.4.0 vs upstream 2.7.1
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] theme & styles in commentshi Stef
I’m not an expert not on html nor on css but I did take a close look but could not, cannot for the the life of me figure out how to fix it.
Website is not mine thus I might not be able to answer all you questions, but it’s here – https://jatymy.net/
My question would be – should not jetpack derive css from them for that button? If it does not then which css controls it?many thanks.
thanks Stefania
it will not work for me, what I’d like from jetpack is here – https://github.com/Automattic/jetpack/issues/313
I was hoping that guys/gals have incorporated such a feature by now.Forum: Fixing WordPress
In reply to: login/authenticate to nothing but comment?thanks Steve
I’m just a beginner, before I add yet another plugin.. hugh.. Jetpack in order to work(any/all features) must be connect to wordpress.com, will not work otherwise?Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] incremental / decremental numberthanks Scott,
but talk to a nub noob please, this would go into the theme somewhere?Forum: Plugins
In reply to: [Simple LDAP Login] special chars in password – in my case:even wordpress itself here in the subject of my post ate up the “\” (backslash)
there is a backslash in my passwordForum: Plugins
In reply to: [amr ical events lists] is this plugin a calDav client ?well, I imagine you’ve looked daviCal up
I’ve tested two plugins today, all-in-one-event-calendar & calpress-event-calendar, and they both work fine.to double check, I create a new page and put in there
[iCal https://host.domain.example/mycal/public.php/mycal/calendar.ics%5Dviewing the page I get:
“
!
Unable to load or cache ical calendar https://host.domain.example/mycal/public.php/mycal/calendar.ics
No events found within criteria
← ?? ? 10 50 100 + ++ →
“at apache’s end:
File does not exist: /usr/share/wordpress-3.6.1-public/wp-content/plugins/amr-ical-events-list/css/https:, referer: … my wordpress hereI’ll see if can get you an access to the url, maybe be “politically” incorrect, not that in my mind, institution
my “worry” is you never tested against something else than google-sroogle?
regardsForum: Plugins
In reply to: [amr ical events lists] is this plugin a calDav client ?well, daviCal offers this standard feature, it’s called “public collections”
I’ve been trying your plugin with daviCal, having a publicly/anonymously available calendar – with daviCal it’s via https://host.domain.example/public.php/mycal/ccnr/calendar.ics – tested in a few web browsers went fine, in wordpress with [smallcalendar myUrl] I get this:
“!
Unable to load or cache ical calendar https://host.domain.example/mycal/public.php/ccnr/calendar.ics
“what you think might be the problem?
what could I check to get full debug mode, if there is such thing?
regardsForum: Fixing WordPress
In reply to: post_class outside the loop??@esmi,
yes, get_post_class would work though.
cheersForum: Fixing WordPress
In reply to: post_class outside the loop??well, it does not do that in the loop, right? it does display/echos classes of a specific/one post.
and codex here says, it can be used outside the loop:
https://codex.www.ads-software.com/Migrating_Plugins_and_Themes_to_2.7
like this:
<?php post_class(”,$post_id); ?>and yet, it would not work in my bare minimal 2.8.2, why??
and if you take a closer look at the output I pasted, you can see the post_class in my example does actually outputs/echos classes for all posts the foreach loop finds, but! it does echos it in a way as if it was not in the foreach loop, output does not even end up withing <dt> tags, where I’d expect it to be.
and the get_post_class returns an array which does not make things any easier.
cheersForum: Fixing WordPress
In reply to: wpdb to add/remove filters or how to get post contentor with get_the_content
$mdv_most_commented .= $before . $post_title . ‘(‘. $comment_count.’)’ . $after . ‘<dd>’ . get_the_content. ‘</dd>’ ;
nicely formated list with <dd> as post content/exerpts, in orderly fashion, but again! of the same one, most commented post???
Forum: Fixing WordPress
In reply to: wpdb to add/remove filters or how to get post contentcode snippet:
$posts = $wpdb->get_results($request); if ( $echo ) { if ( !empty($posts) ) { foreach ($posts as $post) { $post_title = apply_filters('the_title', $post->post_title); $comment_count = $post->comment_count; $permalink = get_permalink($post->ID); $content = apply_filters('the_content', $post->post_content); // $pcontent = apply_filters('the_content("..more")', $content); $mdv_most_commented .= $before . $post_title . '('. $comment_count.')' . $after . '<dd>' . $content . '</dd>' ; /*$mdv_most_commented .= '<dl>' . $before . '<a href="' . $permalink . '" title="' . $post_title.'">' . $post_title . '</a> (' . $comment_count.')' . $after . '</dl>';*/ } } else...
it is all from the ‘most commented posts’ plugin,
problem – as it is, the whole post content gets displayed, not only up to <!–read more–> thing
if change:
$mdv_most_commented .= $before . $post_title . '('. $comment_count.')' . $after . '<dd>' . the_content. '</dd>' ;
then weirdly, seven, (as seven is chosen) excerpts(just as I want) up to <!–read… is displayed first on the top of the list, but! of the same one!, most commented post,
then the same list of posts(varied, as it should be) follows but with no! content/excerpts, just empty, only titles.
basically, this plugin works just great as is written, but only if tamper with it I cannot get posts’ content with up to <!–read more.. thing.anybody?
cheers