Iperdesign_IT
Forum Replies Created
-
Ok after reading this thread, i’ve just added “SecFilterEngine Off” to the .htaccess and now there is no problem.
It seems that some hosting does not recognize as legitimate a POST request.
Hi Cais,
my Gallery and subfolders have the 0755 permissions already:
Gallery: https://gyazo.com/1bd7121ca2122025914ef2da438286bb
Subfolder: https://gyazo.com/5a25e01467b5a0d2d9eb1c9155ef445bAlso ( i forgot to say ) i have not any caching method, like w3tc, activated.
Forum: Plugins
In reply to: [Plugin: WordPress SEO by Yoast] Error loading stylesheet on sitemapThanks for your replies, but if i deactivate W3TC and also delete che browser cache ( or open the sitemap in a new browser ), this problem still persist ?? Also Frederick where can i contact Yoast for this problem?
Forum: Networking WordPress
In reply to: Broken permalink structure with wp_nav_menuEach site has its own menu.
This menu has categories as links ( for now )wp_list_categoris isn’t usefull, because on these menus, in the future, there could be posts, pages or other links.
Thanks for the “https” thing, btw O_O
Forum: Networking WordPress
In reply to: Broken permalink structure with wp_nav_menuSorry mate, it seems you looked at the wrong time ( now menus are rights ) ^^”
BTW, i actually use switch to blog ( just see the code above ).
I need to take all menus because my customer asked me to do this. Every site has an own menu, and i have to take all these menus and show them all in every single page, once you hover element of the big menù.
Do you know better ways to do this task? ??
Forum: Networking WordPress
In reply to: Broken permalink structure with wp_nav_menu1) Yes, im pulling all menus into $menuNetwork, then i echo the variable;
2) Css is loaded ( and js too );You can see these menus by hovering the big menù ( News – Gossip – Donna – etc ). They will show to you under that big menù, just try it ??
Forum: Networking WordPress
In reply to: Broken permalink structure with wp_nav_menuThe point is that i don’t have to create additional menus on the main site. I’d like to know why permalinks are broken, since my network menù actually works ( did you see the site? ?? )
Forum: Networking WordPress
In reply to: Broken permalink structure with wp_nav_menuHave you read https://wpmututorials.com/plugins/networkwide-menu/ ?
Thanks, but that is not the solution i’m looking for ??
Forum: Plugins
In reply to: [Plugin: Tubepress ] Videos are not loaded on thumb clickHi k2eric,
my server log returned these lines:
[Fri Dec 23 09:57:59 2011] [error] [client 2.32.114.146] Premature end of script headers: playerHtml.php, referer: https://www.claudiopagliara.it/i-miei-reportage/ [Fri Dec 23 09:57:59 2011] [error] [client 2.32.114.146] suexec policy violation: see suexec log for more details, referer: https://www.claudiopagliara.it/i-miei-reportage/
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] How to get images by Gallery IDI use this query to retrive the first image into the DB
$sql = "SELECT g.path, p.filename\n" . "FROM wp_ngg_gallery g\n" . "INNER JOIN wp_ngg_pictures p\n" . "WHERE ( g.gid = ".trim(get_post_meta($post->ID, 'Galleria', true))." AND p.galleryid = ".trim(get_post_meta($post->ID, 'Galleria', true))." ) LIMIT 0, 1 ";
For the moment i solved this problem, but if someone know better ways, i’ll be very happy ^^
Nothing happen ??
Well never mind, i’ll use a workaround:
$args=array( 'post_type' => $type, 'paged' => $paged, 'posts_per_page' => 5, 'orderby' => 'meta_value', 'meta_key' => 'Stato', 'order' => 'ASC' );
So all ‘sold’ and ‘booked’ are in the last positions ( and my customer has no problem with this solution )
By the way i’ll try on holidays to solve this problem ??
Thanks for all keesiemeijer ??
Of course they are!
But the problem is not there. $firstposts is not empty and $lastposts too. Even $mergedposts and $unique_id are not empty. But when i do
$args=array( 'post__in' => $unique_id, 'paged' => $paged, 'posts_per_page' => 5, 'orderby' => 'post__in', 'order' => 'ASC' ); query_posts( $args );
i have no results ??
I will test it with the meta “value” added.
Thanks ??
EDIT:
I activated that plugin also.
So i did all, but it seems that nothing is working.
So i paste here my code https://pastebin.com/aBhHsT8T
and the site https://www.m2square.eu/immobili-pagina
Thanks keesiemeijer, i’ll try it out ??