livingflame
Forum Replies Created
-
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Language Switcher in Footer or WidGetOkey solved:
– New Menu: Footer
– Widget: Custom Menu
– WPG. options: Lang. Selector Menu: FooterHi @wpsolutions
Well, if you use a plugin like Mail Bank (STMP), when you send an emails, your-hosting-username not show. This is something. But continues appearing: hostname1234.yourhost.com I thing that it’s a problem of the Server.
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] No working with BuddyPress Custom FieldsHi @tivnet
I’m using SweetDate Theme, but the plugin can’t translate for example this area: (PICTURE LINK) and THIS , buddypress custom fields.
qTranslate X could translate, but is already a very outdated plugin. I like WPGlobus but, it lacks. And… wpglobus options does not work in this case.
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Language Switcher in Footer or WidGetI dont know why but, this not works for me.
I need some functions php or right code for move the switcher (footer, widget, whatever).——–
And for buddypress…
I’m using SweetDate Theme, but the plugin can’t translate for example this area: (PICTURE LINK) and THIS , buddypress custom fields.qTranslate X could translate, but is already a very outdated plugin. I like WPGlobus but, it lacks. And… wpglobus options does not work in this case.
- This reply was modified 7 years, 4 months ago by livingflame.
- This reply was modified 7 years, 4 months ago by livingflame.
Part of the Solution.
Create an email account in your Hosting and Obtain the STMP. For example:
[email protected]
mail.example.com
port: 25Add this STMP to WordPress using a plugin: Easy WP STMP…
Okey, but… you send an email from your WordPress… Go to Spam Folder or Junk in Hotmail! Gmail does not have problem with this method. I dont know Yahoo.
And, when you Check origin, okey, your hosting username not appears again, but, your hostname1234.yourhost.com continues appearing.
So, there are theses problems.
WP Mails Go to Spam Folder and some Php / Hosting info is disclosed.
- This reply was modified 7 years, 4 months ago by livingflame.
Hi @mbrsolution
WP 4.8 uses PhpMailer 5.2.22
Disclosure when: you send from your WP to some Email or Notification (buddypress, bbpress) to Hotmail, Gmail, whatever.
Disclosure with ContactForm 7 and MailChimp.Disclosure of your-hosting-username and your CPanel url in:
Received: from hostname1234.yourhost.com
Received: from your-hosting-username by hostname1234.yourhost.com
X-AntiAbuse: Primary Hostname – hostname1234.yourhost.com
X-Source-Args: /opt/php70/bin… /your full path disclosure / admin-ajax.php
X-Source-Auth: your-hosting-username
Return-Path: <[email protected]>
ARC-Authentication-Results: …
Received-SPF: …
Authentication-Results: …How can I remove “Via” php mail or all this info? I dont know. But I know that this method has this Full Path Disclosure Vulnerability.
My full compilation: Security and Speed.
Please check all .htaccess and functions .php
LINK GOOGLE DOCS.@ithemes
@mattdanner
@gerroald
@chrisjean- This reply was modified 7 years, 4 months ago by livingflame.
Forum: Plugins
In reply to: [BAN Users] Is it working with buddypressOther functions for your Plugin:
– WordPress / BuddyPress — Manual Approval or Moderate New User Registrations. (enable / disable from plugin Settings)
– Allow Admins to Moderate Contents (when a user upload a photo, if rtMedia is installed, or avatar or bp_profile_cover…) (e / d)
– BP Report button (allow users to report activity and messages with motives:
. This is spam
. Explicit sexual content
. This member is harassing me
. This post, comment or message is very annoying )- This reply was modified 7 years, 4 months ago by livingflame.
Forum: Plugins
In reply to: [BAN Users] Is it working with buddypress@webxmedia Check your Email now.
Forum: Plugins
In reply to: [BAN Users] Is it working with buddypressOkey I am sending you a email.
And Matt. When I open your site, Google Shows:
La conexión no es privada
Es posible que los piratas informáticos estén intentando robar tu información de webxmedia.uk (por ejemplo, contrase?as, mensajes o tarjetas de crédito). NET::ERR_CERT_AUTHORITY_INVALID
Forum: Plugins
In reply to: [BAN Users] Is it working with buddypressThanks for reading me. Tell me your email for send to you the code: Allow Users To Block Others BP Users.
Forum: Plugins
In reply to: [BAN Users] Is it working with buddypressHi @webxmedia
If you can, includes this functions:
– Comment (Deny user or id comment for 30 min, 30 days, or whatever).
– Activity (BuddyPress) (Deny Posting for ” ” , and this includes posting Media using rtMedia or BP Activity Plus plugin).
– Create a Group or Posting in a Group. And Invite Friends.
– Public Message (Mentions)
– Send Private Message.
– Add Friends (A ban user can’t to add friend for 24 hours, or whatever).Why? Because your plugin -FOR NOW-, only works with Deny LogIn for Banned Users.
But, BuddyPress needs MORE! Like Facebook, a ban user can LogIn and Read posts.– Support for BbPress also.
- This reply was modified 7 years, 4 months ago by livingflame.
- This reply was modified 7 years, 4 months ago by livingflame.
- This reply was modified 7 years, 4 months ago by livingflame.
Forum: Plugins
In reply to: [Contact Form 7] Attaching local file doesn’t work.SOLUTION:
1) Follow this: file-uploading-and-attachment
2) Go to your public_html / wp-content / uploads / wpcf7_uploads folder
Here, create a .htaccess file, and add/save this:# Allow File Attachment From Localhost order deny,allow deny from all allow from 127.0.0.1
After that, try send you a file to your email.
- This reply was modified 7 years, 4 months ago by livingflame.
Forum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] Username ExposedCourtesy of a kind man:
SOLUTION (functions.php):
function set_default_display_name( $user_id ) { $user = get_userdata( $user_id ); $name = sprintf( '%s %s', $user->first_name, $user->last_name ); $nickname = sanitize_user( strtolower( str_replace( ' ', '', $name ) ) ); $args = array( 'ID' => $user_id, 'display_name' => $name, 'nickname' => $nickname, 'user_nicename' => $nickname ); wp_update_user( $args ); } add_action( 'user_register', 'set_default_display_name' );
This code works fine with BuddyPress. So, I want want, try, check, and add this to your plugin. Also Force users to use strong passwd.
Forum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] Username ExposedI see where the problem is.
By default, WordPress generates the nickname based on the User Name.
If one changes the Nickname, then the Username is not exposed.
However, doing this task manually is very tedious on a site with BuddyPress.
Therefore, what we need is a Php Code, which automatically changes the Nickname based on the First Name and Last Name of the User.