bendulum
Forum Replies Created
-
Forum: Plugins
In reply to: Woocommerce Subscriptions Translation issueI have the same problem. Can’t find where to translate that %2$s…
Forum: Plugins
In reply to: [Facebook] Social Publisher not showing image on timelineI had, in Cpanel, the Hotlink protection enabled.
Forum: Plugins
In reply to: [Facebook] Problem whit Facebook pluginApp is added to main admin. Post go to timeline from all users, even if they are not admins. So connect your account to the main admin.
Forum: Plugins
In reply to: [PDF.js Viewer] Remove Print and DownloadsI resolved it. I deleted the download manager.
Forum: Plugins
In reply to: [Facebook] Widget are not showing on websiteOk…so it’s resolved, I don’t know how, but it works now. Thanks anyway!
Forum: Plugins
In reply to: [Facebook] Social Publisher not showing image on timelineResolved :))
It was the Hotlink protection of jpegs. Now it’s working.Forum: Fixing WordPress
In reply to: How to make folder from root only available for logged users?Ok,thank you!
Forum: Fixing WordPress
In reply to: How to make folder from root only available for logged users?You didn’t understand… That folder I can move in wordpress, it’s not a problem.
I have magazine, and I want my subscribers to have acces to it online and not donwload it. That folder contains the full version pdf magazines, and I want the folder to be protected from non-subscribers.
I can put a login before the pdf’s in wordpress (that I did), but
I need to protect the folder too. If I put hotlink protection from cpanel, it solves only direct links, if someone enters https://www.rrapl.ro/spatiu-abonati/ they can see the index of that folder and acces the pdf’s.
I need something that when someone tries to enter https://www.rrapl.ro/spatiu-abonati/ or https://www.rrapl.ro/spatiu-abonati/pdf they can’t access it.Forum: Fixing WordPress
In reply to: How to make folder from root only available for logged users?Is there a plugin that protects certain folders? I didn’t found any…
Forum: Fixing WordPress
In reply to: How to make folder from root only available for logged users?I tried htaccess with something like this, but didn’t works:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} ^.*spatiu-abonati/.* RewriteCond %{HTTP_COOKIE} !^.*wordpress_logged_in.*$ [NC] RewriteRule . /wp-login.php?redirect_to=%{REQUEST_URI} [R,L] RewriteRule . /wp-login.php [R,L] RewriteRule ^wp-login.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /wp-login.php [L] </IfModule> # END WordPress