Musiphilos
Forum Replies Created
-
Hi Abid,
Indeed it’s on an Elementor Popup. Thank you for the reply and notice.Dear Rogier,
Thank you fo much fo your so Quik reply.
Indeed there was a misconfiguration on the part of the certificate, that I was able to pinpoint as the culprit. That would be very likely because this is such a well-built plugin.Certainly considering the Pro now.
Also, I followed some documentation recommendations and tried to force SSL with
define('FORCE_SSL_ADMIN', true);
and gotERR_TOO_MANY_REDIRECTS
error on my website.
Also visited
https://staging-welcome.isr.tecnico.ulisboa.pt/wp-content/plugins/really-simple-ssl/ssl-test-page.php
and got#SSL TEST PAGE#
This page is used purely to test for SSL availability.
#NO KNOWN SSL CONFIGURATION DETECTED#- This reply was modified 4 years, 10 months ago by Musiphilos.
Hi Rogier,
Thank you for the tip. Unfortunately it hasn’t solved the problem(s) yet.
I’ve added that code in wp-config.
The option “activate plugin” in the&tab=configuration
of Simple SSL is still not showing up becauseReally Simple SSL failed to detect a valid SSL certificate
as seen on the PrintScreen bellow
https://www.dropbox.com/s/e002oxfapldh5ea/2020-05-24%2009_50_04-Window.jpg?dl=0Also, I’ve activated debug mode and got this
General
Plugin version: 3.3.3
Invalid SSL certificate
SSL is not yet enabledOptions
* Mixed content fixerServer information
Server: apache
SSL Type: NADetecting configuration
Check SSL by retrieving SSL certificate info
siteurl or home url defines found in wpconfig
.htaccess does not contain default Really Simple SSL redirectConstants
No constants definedI’ve tried to manually add the following code to .htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</IfModule>which did exactly what I expected: forced 301 redirect (so no HTTP available via browsing) but certificate is still not found and mixed content problem persists.
Anything I’m missing?
Thank you for a great product and service
- This reply was modified 4 years, 10 months ago by Musiphilos.
Thank you Rogier,
I confirm that under that link there is no “activate SSL” element in the DOM.
Also, after changing to https the home and site_url under “settings/general” my website is now showing a ERR_TOO_MANY_REDIRECTS (welcome.isr.tecnico.ulisboa.pt redirected you too many times.)Hi Rogier,
Thank you so much for a quick reply.
When I follow “reload over https”, it does visit the wp-admin page under https, but the layout is still broken as my browser console indicates that stylesheets and other “mixed content” are still being loaded via HTTP.Also, in that wp-admin page over https there is still the warning
“Really Simple SSL failed to detect a valid SSL certificate… Reload over https”
Maybe a printscreen might clarify my words better: https://www.dropbox.com/s/jm4kfs0om4rtkj7/2020-05-23%2021_19_15-SSL%20settings%20%E2%80%B9%20Institute%20For%20Systems%20and%20Robotics%20%E2%80%94%20WordPress.jpg?dl=0
Cheers
- This reply was modified 4 years, 10 months ago by Musiphilos.
Forum: Plugins
In reply to: [WooCommerce] After updating cat_operator=”AND”‘ is not working .Hi,
In my WP 4.9.4 and with Woocommerce 3.3.4 the cat_operator=”AND” is malfunctioning.
With the code
[products category="ruark_audio"]
one gets the expected results.
If the one enters[products category="ruark_audio" cat_operator="AND"]
only the products with subcategories (children of ruark_audio), besides “ruark_audio” show up.Interestingly, there are some products with “ruark_audio” category, but also with the category “acessorios”. But the code [products category=”ruark_audio, acessorios” cat_operator=”AND”] does not provide any result.
Example in: https://audioteam.pt/wp/marcas/ruark-audio/
I’ve tried deactivating all plugins expect woocoomerce of course, and using Twentytwelve. Same results.
Would really appreciate the help.
- This reply was modified 6 years, 11 months ago by Musiphilos.
Forum: Plugins
In reply to: [Co-Authors Plus] Unable to re-order author namesI have been able to develop a “nasty hack” that corrects the bug in the code.
In “co-authors-plus.php” file, insert the substitute the following fucntion:
public function get_coauthor_terms_for_post( $post_id ) { if ( ! $post_id ) { return array(); } $cache_key = 'coauthors_post_' . $post_id; $coauthor_terms = wp_cache_get( $cache_key, 'co-authors-plus' ); if ( false === $coauthor_terms ) { $coauthor_terms = wp_get_object_terms( $post_id, $this->coauthor_taxonomy, array( 'orderby' => 'term_order', 'order' => 'ASC', ) ); /* ----------- DAFONSO START -------------*/ global $wpdb; $i = 0; $coauthor_terms_sorted=[]; foreach ($coauthor_terms as $coauthor_term) { //echo '<h3>var_dump</h3>'; //var_dump($coauthor_term); //var_dump($coauthor_term->term_order); $querystr = 'SELECT * FROM <code>wp_cdrs_term_relationships</code> where <code>object_id</code>='.$post_id.' and <code>term_taxonomy_id</code>='.$coauthor_term->term_id; $custom_query = $wpdb->get_results($querystr, OBJECT); $aux = $custom_query[0]->term_order; $coauthor_terms[$i]->term_order = $aux; //Replace the inexistente Term_order $coauthor_terms_sorted[$aux] = $coauthor_terms[$i]; $i=$i+1; } $aux2=[]; for ($x = 0; $x <= $i; $x++) { $aux2[$x] = $coauthor_terms_sorted[$x]; } $coauthor_terms = $aux2; //echo '<h3>var_dump coauthor_terms</h3>'; var_dump($coauthor_terms); /*--------- DAFONSO END-----------------*/ // This usually happens if the taxonomy doesn't exist, which should never happen, but you never know. if ( is_wp_error( $coauthor_terms ) ) { return array(); } wp_cache_set( $cache_key, $coauthor_terms, 'co-authors-plus' ); } return $coauthor_terms; }
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Bug in total calculusI confirm that that tip made it work. Thank you
Forum: Plugins
In reply to: [Co-Authors Plus] Unable to re-order author namesHi Hannah,
This problem is probably related with my own thread in https://www.ads-software.com/support/topic/authors-out-of-order-in-wp-4-9-3/
I’m guessing there is a mismatch between this plugin and the new wordpress core code.
Any one has an efficient method to contact the authors about this?
I’m willing to pay for someone to “hack” the code around this. Please contact me: [email protected]
Forum: Plugins
In reply to: [Co-Authors Plus] Authors out of order in WP 4.9.3I have more details about this bug:
As you can see in this image, I’m listing publication
object_id=22923
which has 6 authors. If we look for example at Author R. Seruca (withterm_taxonomy_id=2227
), she’s listed in “wp_cdrs_term_relationships” has the last author (term_order=6
), but it’s appearing in the dashboard (window on the right) as the third author.Notice that the DB order is correct. But not its retrieval with PhP
Interesting right? For research publications author ordering is hugely relevant.
- This reply was modified 7 years, 1 month ago by Musiphilos.
- This reply was modified 7 years, 1 month ago by Musiphilos.
- This reply was modified 7 years, 1 month ago by Musiphilos.
- This reply was modified 7 years, 1 month ago by Musiphilos.
- This reply was modified 7 years, 1 month ago by Musiphilos.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Get donorsI think I have found this to be the answer: https://developers.givewp.com/2017/10/11/give-1-8-14-introducing-new-give_donors_query-class/
OK. Thank you for your help
Sorry. Done. It’s active. Thanks
Forum: Plugins
In reply to: [WooCommerce] Cannot add any products to cart after WordPress 4.5 updateI also experienced problems between WP 4.5 and woocommerce. Particularly, the images of the products pages did not show up. I had to revert back to WP 4.4.2 to make my site work again.