Search Results for 'translation'
-
AuthorSearch Results
-
May 31, 2018 at 9:17 am #273790
In reply to: Activation Emails are not being sent
Paul Wong-Gibbs
KeymasterWe have this fixed for our next release, v3.1. This will be released next week (Wednesday) at the latest. The bug was addressed at https://buddypress.trac.wordpress.org/ticket/7869
@alpokoskiniva “Repair email” deletes the emails from the “Emails” menu, then re-adds them. You don’t need to do this unless you’ve added a translation to your site after installing BuddyPress, and want the translated emails, or if you’ve made a code change to the email language in the BuddyPress files, which is what @filipponeri20 has done. We strongly recommend that no-one ever changes a core file of BuddyPress, because it will be overwritten when you update.May 25, 2018 at 10:11 am #273511In reply to: HELP! – Changing text in member search area
Venutius
ModeratorYou should be able to change the wording using the translation file and poedit.
I also recommend using WPT Custom MO File to manage your translations.
May 12, 2018 at 5:09 am #272945In reply to: How to change “Submissions” component’s name
Venutius
ModeratorTo change the name of tabs etc you need to look into setting up a custom translation file. All the visible labels are able to be translated, so you can change them how you like.
You can use poedit to create your translation file and WPT Custom Mo File to install the translation onto your site.
May 11, 2018 at 11:28 am #272914gheebuttersnaps
ParticipantHey there,
I am currently setting up a members directory for our alumni association using buddypress (currently Version 3 RC1 from trac). I really love it and so far the feedback from our testers is really positive. I might consider contributing a showcase/case study if there is anything like that for buddypress. I have already contributed several translations and will add more during the weekend!
I have one issue remaining which is related to the search function. We allow our members to hide certain information from other members. For example one member can set their current location to “adminsonly”. Let’s assume this example. We have user Thomas in city Berlin and user Peter in city Munich. Thomas decides to hide his location from other members and sets the field visibility to adminsonly. Now Peter views Thomas’ profile and is not able to see his location. So far everything works as expected. Now Peter uses the search function and uses the keyword “Berlin”. The result set contains Thomas (without displaying any information about the city) although Peter should not be able to know the city.
I would tend to consider this as a breach of privacy for users. That’s why I currently have removed the search boxes from all pages. Technically, if someone knows the URL search strings he/she could still do the search. Is it possible to configure the search so that it only searches fields which are available to the user conducting the search?
Thanks and regards!
May 6, 2018 at 11:16 am #272777In reply to: sitewide notice
sugar7
ParticipantThe first file;
<?php
/**
* @package Boss Child Theme
* The parent theme functions are located at /boss/buddyboss-inc/theme-functions.php
* Add your own functions in this file.
*//**
* Sets up theme defaults
*
* @since Boss Child Theme 1.0.0
*/
function boss_child_theme_setup()
{
/**
* Makes child theme available for translation.
* Translations can be added into the /languages/ directory.
* Read more at: http://www.buddyboss.com/tutorials/language-translations/
*/// Translate text from the PARENT theme.
load_theme_textdomain( ‘boss’, get_stylesheet_directory() . ‘/languages’ );// Translate text from the CHILD theme only.
// Change ‘boss’ instances in all child theme files to ‘boss_child_theme’.
// load_theme_textdomain( ‘boss_child_theme’, get_stylesheet_directory() . ‘/languages’ );}
add_action( ‘after_setup_theme’, ‘boss_child_theme_setup’ );/**
* Enqueues scripts and styles for child theme front-end.
*
* @since Boss Child Theme 1.0.0
*/
function boss_child_theme_scripts_styles()
{
/**
* Scripts and Styles loaded by the parent theme can be unloaded if needed
* using wp_deregister_script or wp_deregister_style.
*
* See the WordPress Codex for more information about those functions:
* https://codex.wordpress.org/Function_Reference/wp_deregister_script
* https://codex.wordpress.org/Function_Reference/wp_deregister_style
**//*
* Styles
*/
wp_enqueue_style( ‘boss-child-custom’, get_stylesheet_directory_uri().’/css/custom.css’ );
}
add_action( ‘wp_enqueue_scripts’, ‘boss_child_theme_scripts_styles’, 9999 );/****************************** CUSTOM FUNCTIONS ******************************/
// Add your own custom functions here
?>
The second contains:
<?php
if ( !defined( ‘BP_AVATAR_THUMB_WIDTH’ ) )
define( ‘BP_AVATAR_THUMB_WIDTH’, 35 ); //change this with your desired thumb widthif ( !defined( ‘BP_AVATAR_THUMB_HEIGHT’ ) )
define( ‘BP_AVATAR_THUMB_HEIGHT’, 35 ); //change this with your desired thumb height?>
May 5, 2018 at 3:08 am #272736In reply to: rtMedia count
Varun Dubey
Participant@nikbond no need to edit the codes, you can simply translate Media to Photos using Translation strings. To translate within dashboard you can use Loco Translate plugin.
April 22, 2018 at 8:46 pm #272343In reply to: Attempted language changes changes not working
Venutius
ModeratorIt’s got to be a conflict of some sort somewhere, translations are usually very reliable from my experience.
April 22, 2018 at 8:04 am #272318Venutius
ModeratorI think the first thing to do is to check there’s nothing interfering with the loading of the translation – unload all of your plugins except BP and Custom MO. Also try it running the 2017 theme.
April 14, 2018 at 4:07 pm #272053In reply to: BP Notifications: Mark as Read
Varun Dubey
Participant@niclovelace BuddyPress is translation ready and you can simply use Loco Translate plugin to translate any terms with the desired one from the plugin options.
No need to modify any codes.April 14, 2018 at 4:05 pm #272052In reply to: Change Name of Group & Friends
Varun Dubey
Participant@avaiya BuddyPress is translation ready and you can simply use Loco Translate plugin to translate any terms with the desired one from the plugin options.
April 7, 2018 at 12:24 pm #271893alexalexalex09
ParticipantWhoops, I forgot instructions on how to change the account details fields. Here, I updated it:
To change the text on the regular (Account Details) fields, make a copy of wpcontent/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/register.php and place it in themes/your-child-theme/buddypress/members (a folder which you will have to create).
Then, open that file and replace every instance of
<?php _e( '(required)', 'buddypress' ); ?>with your asterisk (*).Then, to change the text on profile fields (Profile Details), just add the following code to bp-custom.php (which, if it doesn’t exist, you’ll need to create in wpcontent/plugins).
function bp_change_required_label($translated_string, $field_id) { return '*'; } add_filter('bp_get_the_profile_field_required_label', 'bp_change_required_label', 10, 2);This function hooks into the function bp_get_the_profile_field_required_label() in buddypress/bp-xprofile/bp-xprofile-template using the supplied filter. It takes the translated “(required)” string and replaces it with “*”. which will also remove any translation – but that should be acceptable for a symbol in most cases.
April 7, 2018 at 12:17 pm #271892alexalexalex09
ParticipantI know this is an old thread, but for those who are (like me) interested and googling this, here’s a quick solution that requires no language file editing.
Just add the following code to bp-custom.php (which, if it doesn’t exist, you’ll need to create in wpcontent/plugins).
function bp_change_required_label($translated_string, $field_id) { return '*'; } add_filter('bp_get_the_profile_field_required_label', 'bp_change_required_label', 10, 2);This function hooks into the function bp_get_the_profile_field_required_label() in buddypress/bp-xprofile/bp-xprofile-template using the supplied filter. It takes the translated “(required)” string and replaces it with “*”. which will also remove any translation – but that should be acceptable for a symbol in most cases.
April 4, 2018 at 8:49 am #271765In reply to: Change (required) Label on register page
Venutius
ModeratorI’m pretty sure you can do this by creating your own translation of the BuddyPress pot file for the field (Required) which is on line 1455 of the pot file. for details of how to do this you could look at buddyuser dot com/changing-the-text-used-in-buddypress-and-other-plugins
March 13, 2018 at 2:39 pm #271301In reply to: Change details bp_last_activity
David Cavins
KeymasterThat’s an interesting idea. It seems like it should be possible, because BuddyPress is using a JavaScript library called
livestampto generate those strings. It relies onmoment.jsfor localization (localization usually means translation, but could also mean “custom messages”). I think you could change the “relative time thresholds” as described here:
http://momentjs.com/docs/#/customization/relative-time-threshold/mironegrini
ParticipantOkay, I’ll check all of the terms “member” and “members” in English with the Portuguese translation (member and members, respectively)
January 30, 2018 at 5:44 pm #270460Venutius
ModeratorThe users get this message when they have yet to activate their account, it’s a basic feature of BuddyPress – each new user gets sent an activation email.
If you got to your wp-content/plugins/buddypress directory you will find the US translation of BuddyPress – buddypress-en_US,po, make a local copy of this and load it into PoEdit, you can then create your own translation, changing the words how you link, just search for the phrase you want to change.
December 18, 2017 at 8:06 am #269627In reply to: how to change Change Group ICON svg
chowd001
ParticipantThanks a lot for prompt response.
1. Yes I want to use different icons. could you please elaborate which CSS I need to modify. where to find the css where the CSS is written for icons. I have just started using wordpress/buddypress
2. Where do I find translation file
December 18, 2017 at 6:41 am #269626In reply to: how to change Change Group ICON svg
ripulkr
Participant1. (Please correct if I have misunderstood this)SVG are not allowed to be uploaded due to security reasons. Different icons is possible via CSS customisation.
2. Use translation files for relabelling (english to english)November 22, 2017 at 8:13 am #269115In reply to: Change default name post
vincent46
ParticipantHi @boonebgorges this is the procedure that I used to change the default name that in Italian is articles. The site is in italian, and I was looking for some procedure to insert in bp-custom instead of changing the translation file obviously if you can do it.
Change default name ArticlesNovember 19, 2017 at 10:38 pm #269068In reply to: http://www.zzelzal.com/ site in arabic
Henry Wright
ModeratorCheck out the Languages and Translations article:
November 15, 2017 at 8:46 am #268971In reply to: Where’s the bbpress-Forum?
Nikelaos
ParticipantThank you for the link!
And – I’ve run a test and this brings up, that the mechanism described in https://codex.buddypress.org/translations/ seem to work not correctly. The .mo-file in the language/buddypress/-folder is only used if there’s no .mo-file in the language/plugin/-folder.
Greets!
October 25, 2017 at 7:11 am #268658In reply to: Buddypress .po file location
rcgcomni
ParticipantOk. I manage to work out some translations. The version I had was not working for plural translations. So some are solved, but no ALL.
Trying to translate the menu that has the links to Home, Members, Manage and Cover Photos rigth after the group header (Under the Administrators and Moderators lists)
Any Ideas?
September 2, 2017 at 8:10 pm #267841r-a-y
KeymasterYou need to translate BuddyPress into French as well.
View this codex page for more info on how to manually download and apply the French translation:
July 15, 2017 at 9:20 pm #267041In reply to: Plugin: BuddyPress Strong Username And Password
livingflame
ParticipantIf you have problem with Translation, Use the plugin Loco Translate to fix.
June 28, 2017 at 9:21 am #266646wci
ParticipantHi Buddypress support,
I am still waiting to get my problem to solve.
While using bbpress search forum then the search result is not displayed, but instead get forward to homepage.
Please find this screen video helpful to solve my issue
> https://www.screencast.com/t/eMZEAnn9X2Please also find this info helpful as you stated you need those info too:
Please try to supply answers to the following questions.
1. Which version of WordPress are you running?
WP ver. 4.82. Did you install WordPress as a directory or subdomain install?
directory but as multisite3. If a directory install, is it in root or in a subdirectory?
subdirectory /public_html/wci4. Did you upgrade from a previous version of WordPress? If so, from which version?
no – Version 2.8.2 is in use5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
not sure but I guess it was working6. Which version of BP are you running?
Version 2.8.2 is in use7. Did you upgraded from a previous version of BP? If so, from which version?
no8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
(but the problem occur even, if I deactiavete all plugins just using buddypress and bbpress together)
Name Version Plugin URL
WP Easy Updates 1.1.1 http://ayecode.io/
AffiliateWP – Lifetime Commissions 1.2.4 http://affiliatewp.com/addons/lifetime-commissions/
AffiliateWP – PayPal Payouts 1.1.7 http://affiliatewp.com/addons/paypal-payouts/
AffiliateWP – Recurring Referrals 1.6.2 http://affiliatewp.com/addons/recurring-referrals/
AffiliateWP 2.0.10 https://affiliatewp.com
AffiliateWP – Affiliate Area Tabs 1.1.5 https://affiliatewp.com/
AffiliateWP – Affiliate Dashboard Sharing 1.1.3 http://affiliatewp.com/addons/affiliate-dashboard-sharing/
AffiliateWP BuddyPress Pro 1.0.1 http://propluginmarketplace.com/plugins/affiliatewp-buddypress-pro
AffiliateWP – Direct Link Tracking 1.1.1 https://affiliatewp.com/add-ons/pro/direct-link-tracking/
AffiliateWP MLM 1.1.2 http://theperfectplugin.com/downloads/affiliatewp-mlm
AffiliateWP – Order Details For Affiliates 1.1.3 https://affiliatewp.com/addons/order-details-affiliates/
AffiliateWP Performance Bonuses 1.0.3.1 http://propluginmarketplace.com/plugins/affiliatewp-performance-bonuses
AffiliateWP Ranks 1.0.2 http://propluginmarketplace.com/plugins/affiliatewp-ranks
AffiliateWP Variable Rates 1.3 http://propluginmarketplace.com/plugins/affiliatewp-variable-rates
Akismet Anti-Spam 3.3.2 https://akismet.com/
All In One WP Security 4.2.8 https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin
Autoptimize 2.2.0 http://autoptimize.com/
bbPress 2.5.12 https://bbpress.org
BuddyPress Instant Chat 1.6 http://iamrichardphelps.com/
BuddyPress 2.8.2 https://buddypress.org/
Contact Form 7 Datepicker 2.6.0 https://github.com/relu/contact-form-7-datepicker/
Contact Form 7 Honeypot 1.10 http://www.nocean.ca/plugins/honeypot-module-for-contact-form-7-wordpress-plugin/
Contact Form 7 4.8 https://contactform7.com/
Cookie Notice 1.2.38 http://www.dfactory.eu/plugins/cookie-notice/
Delightful Downloads 1.6.6 https://delightfuldownloads.com
Google Tag Manager for WordPress 1.6.1 https://duracelltomi.com/google-tag-manager-for-wordpress/
Email Log 1.9.1 http://sudarmuthu.com/wordpress/email-log
EWWW Image Optimizer 3.4.1 https://wordpress.org/plugins/ewww-image-optimizer/
Featured Image Generator 1.1.5 https://designilcode.com
FooTable 0.3.1 http://fooplugins.com/plugins/footable-lite/
GD Business Hours 1.3.8.2 http://www.solarflarecomputing.com
GeoDirectory Advance Search Filters 1.4.9 http://wpgeodirectory.com/
GeoDirectory AffiliateWP Integration 1.0.8 http://wpgeodirectory.com
GeoDirectory Ajax Duplicate Alert 1.1.8 http://wpgeodirectory.com
GeoDirectory BuddyPress Integration 1.1.9 http://wpgeodirectory.com/
GeoDirectory Claim Manager 1.3.21 http://wpgeodirectory.com
GeoDirectory Custom Post Types 1.3.5 http://wpgeodirectory.com
GeoDirectory Dashboard 0.0.1 https://wpgeodirectory.com
GeoDirectory Events 1.4.6 https://wpgeodirectory.com
GeoDirectory Franchise Manager 1.0.6 http://wpgeodirectory.com/
GeoDirectory Invoice 1.0 http://www.worldcheckin.com
GeoDirectory Location Manager 1.5.50 http://wpgeodirectory.com
GeoDirectory Marker Cluster 1.3.0 http://wpgeodirectory.com
GeoDirectory Payment Manager 1.4.4 http://wpgeodirectory.com
GeoDirectory Re-Captcha 1.1.5 http://wpgeodirectory.com/
GeoDirectory Review Rating Manager 1.3.8 http://wpgeodirectory.com
GeoDirectory Social Importer 1.3.1 http://wpgeodirectory.com
GeoDirectory 1.6.21 http://wpgeodirectory.com/
GT-Vouchers – GeoDirectory Version 1.5.7.8 http://www.gt-vouchers.com/
Icegram – Popups, Optins, CTAs & lot more… 1.10.5 http://www.icegram.com/
Idea Factory 1.2 http://wpideafactory.com
If Modified Since Header 1.2.5 https://www.isaumya.com/portfolio-item/if-modified-since-header-for-wordpress/
Inbound Extension – MailPoet Integration 1.0.9 http://www.inboundnow.com/
Insert HTML Snippet 1.2.2 http://xyzscripts.com/wordpress-plugins/insert-html-snippet/
Collapse-O-Matic 1.7.5 https://plugins.twinpictures.de/plugins/collapse-o-matic/
Leads 3.1.1 http://www.inboundnow.com/leads/
MailPoet – Contact Form 7 Integration 1.0.7.5 https://github.com/jessepearson/mailpoet-contact-form-7
Master Slider Pro 3.1.3 http://codecanyon.net/item/masterslider-pro/7467925?ref=averta
Multilingual Tools 1.2 https://wpml.org/download/multilingual-tools/
ProfitBuilder 2.2.7 http://www.imsuccesscenter.com/
AffiliateWP – Pushover Notifications 1.0.2 http://affiliatewp.com/addons/pushover-notifications
SendGrid 1.11.3 https://wordpress.org/plugins/sendgrid-email-delivery-simplified/
WPML Multilingual CMS 3.7.1 https://wpml.org/
Social Content Locker 1.1 http://web-settler.com/wordpress-social-locker/
Standout CSS3 Buttons 0.3.0 http://www.jimmyscode.com/wordpress/standout-css3-buttons/
TablePress Extension: Responsive Tables 1.4 https://tablepress.org/extensions/responsive-tables/
TablePress 1.8 https://tablepress.org/
TinyMCE Advanced 4.6.3 http://www.laptoptips.ca/projects/tinymce-advanced/
UberMenu 3 – The Ultimate WordPress Mega Menu 3.2.5 http://wpmegamenu.com
UpdraftPlus – Backup/Restore 2.13.4.21 https://updraftplus.com
Use Google Libraries 1.6.2.3 http://jasonpenney.net/wordpress-plugins/use-google-libraries/
Widget Logic 5.8.2 https://wordpress.org/extend/plugins/widget-logic/
Yoast SEO 4.9 https://yoast.com/wordpress/plugins/seo/#utm_source=wpadmin&utm_medium=plugin&utm_campaign=wpseoplugin
Clean Up Optimizer 4.0.10 http://beta.tech-banker.com
Wordpress Social Invitations – Lite 2.1.1 http://wp.timersys.com/wordpress-social-invitations/
WP Super Cache – Clear all cache 1.4 http://ocaoimh.ie/wp-super-cache/
WP Super Cache 1.4.9 https://wordpress.org/plugins/wp-super-cache/
WP Support Plus 8.0.7 https://wordpress.org/plugins/wp-support-plus-responsive-ticket-system-ticket-system/
WPML CMS Nav 1.4.20 https://wpml.org/
WPML Media 2.2.0 https://wpml.org/
WPML Page Builders 1.1.3 https://wpml.org/
WPML Sticky Links 1.4.1 https://wpml.org/
WPML String Translation 2.5.4 https://wpml.org/
WPML Translation Management 2.3.1 https://wpml.org/
WPML Widgets 1.0.6 http://jeroensormani.com
MailPoet Newsletters 2.7.10 http://www.mailpoet.com/9. Are you using the standard WordPress theme or customized theme?
customized theme10. Which theme do you use ?
GDF_child is from geodirectory (but the problem occur even, if I switch the theme to twenty fourteen)11. Have you modified the core files in any way?
No12. Do you have any custom functions in bp-custom.php?
Not as I know, but maybe the geodirectory addon “GeoDirectory BuddyPress Integration 1.1.9″13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
no build in. version in use is bbPress 2.5.1214. Please provide a list of any errors in your server’s log files.
[23-Jun-2017 03:41:33 UTC] WordPress database error Table ‘worldche_wcimsgd.wp_term_relationships’ doesn’t exist for query SELECT tt.term_id, MAX(p.post_modified_gmt) AS date_gmt, l.country_slug AS country, l.region_slug AS region, l.city_slug AS city FROM ms_1_geodir_post_locations l LEFT JOIN ms_1_geodir_gd_video_detail pd ON pd.post_location_id = l.location_id LEFT JOIN ms_1_posts p ON p.ID = pd.post_id LEFT JOIN wp_term_relationships AS tr ON tr.object_id = p.ID LEFT JOIN wp_term_taxonomy AS tt ON ( tt.term_taxonomy_id = tr.term_taxonomy_id AND tt.taxonomy = ‘gd_videocategory’ ) WHERE pd.post_locations LIKE CONCAT( ‘[‘, l.city_slug, ‘],[‘, l.region_slug , ‘],[‘, l.country_slug , ‘]’ ) AND p.post_type = ‘gd_video’ AND p.post_status = ‘publish’ AND l.location_id IS NOT NULL AND tt.term_id IS NOT NULL GROUP BY CONCAT(tt.term_id, ‘-‘, l.country_slug, ‘-‘, l.region_slug, ‘-‘, l.city_slug) ORDER BY date_gmt DESC made by require(‘wp-blog-header.php’), wp, WP->main, WP->query_posts, WP_Query->query, WP_Query->get_posts, do_action_ref_array, WP_Hook->do_action, WP_Hook->apply_filters, call_user_func_array, WPSEO_Sitemaps->redirect, WPSEO_Sitemaps->build_sitemap, WPSEO_Sitemaps->build_root_map, WPSEO_Sitemaps_Renderer->get_index, apply_filters(‘wpseo_sitemap_index’), WP_Hook->apply_filters, call_user_func_array, geodir_sitemap_index, geodir_sitemap_taxonomies_sitemap_index, geodir_sitemap_get_locations_taxonomies
[23-Jun-2017 03:41:33 UTC] WordPress database error Table ‘worldche_wcimsgd.wp_term_relationships’ doesn’t exist for query SELECT tt.term_id, MAX(p.post_modified_gmt) AS date_gmt, l.country_slug AS country, l.region_slug AS region, l.city_slug AS city FROM ms_1_geodir_post_locations l LEFT JOIN ms_1_geodir_gd_video_detail pd ON pd.post_location_id = l.location_id LEFT JOIN ms_1_posts p ON p.ID = pd.post_id LEFT JOIN wp_term_relationships AS tr ON tr.object_id = p.ID LEFT JOIN wp_term_taxonomy AS tt ON ( tt.term_taxonomy_id = tr.term_taxonomy_id AND tt.taxonomy = ‘gd_video_tags’ ) WHERE pd.post_locations LIKE CONCAT( ‘[‘, l.city_slug, ‘],[‘, l.region_slug , ‘],[‘, l.country_slug , ‘]’ ) AND p.post_type = ‘gd_video’ AND p.post_status = ‘publish’ AND l.location_id IS NOT NULL AND tt.term_id IS NOT NULL GROUP BY CONCAT(tt.term_id, ‘-‘, l.country_slug, ‘-‘, l.region_slug, ‘-‘, l.city_slug) ORDER BY date_gmt DESC made by require(‘wp-blog-header.php’), wp, WP->main, WP->query_posts, WP_Query->query, WP_Query->get_posts, do_action_ref_array, WP_Hook->do_action, WP_Hook->apply_filters, call_user_func_array, WPSEO_Sitemaps->redirect, WPSEO_Sitemaps->build_sitemap, WPSEO_Sitemaps->build_root_map, WPSEO_Sitemaps_Renderer->get_index, apply_filters(‘wpseo_sitemap_index’), WP_Hook->apply_filters, call_user_func_array, geodir_sitemap_index, geodir_sitemap_taxonomies_sitemap_index, geodir_sitemap_get_locations_taxonomies
[23-Jun-2017 04:40:47 UTC] WordPress-Datenbank-Fehler You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ” at line 1 für Abfrage SELECT * FROMms_1_geodir_invoiceWHEREpost_id= von require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(‘/themes/GDF_child/geodirectory/listing-success.php’), my_project_updated_email
[23-Jun-2017 04:40:47 UTC] WordPress-Datenbank-Fehler You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘WHERE post_author = 0’ at line 1 für Abfrage UPDATE ms_1_posts SET vat_id = WHERE post_author = 0 von require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(‘/themes/GDF_child/geodirectory/listing-success.php’), my_project_updated_email
[23-Jun-2017 06:43:08 UTC] PHP Fatal error: Call to undefined function is_bbpress() in /home/worldcheckin/public_html/wci/wp-content/plugins/widget-logic/widget_logic.php(463) : eval()’d code on line 215. Which company provides your hosting?
hetzner – I am using a own dedicated server16. Is your server running Windows, or if Linux; Apache, nginx or something else?
Linux -
AuthorSearch Results