Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 7,326 through 7,350 (of 22,684 total)
  • Author
    Search Results
  • #187048
    danbp
    Participant

    Have I to do anything right now? Or have I to read it only for the moment?

    you have nothing to do for the moment on the ticket, except to visit it regulary to see if someone has responded.

    Now, your fresh install.
    What is the /usage/ folder for ?

    Most hoster have a root folder like htdocs or wwww.
    You install WP at the root. Eg. server root/wp-content, server root/wp-admin, etc

    In the htaccess file (WP MS) you should have something like this:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # add a trailing slash to /wp-admin
    RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
    RewriteRule ^(.*\.php)$ $1 [L]
    RewriteRule . index.php [L]
    </IfModule>

    rewrite module must be active, it’s very important.

    Now what i suppose you did wrong.

    In wp-config, put this at the end, just before the line who says: don’t touch here….

    define('MULTISITE', true);
    define('SUBDOMAIN_INSTALL', true);
    define('DOMAIN_CURRENT_SITE', '1a-spielwiese.de');
    define('PATH_CURRENT_SITE', '/');
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOG_ID_CURRENT_SITE', 1);

    You can follow a similar install mistake here, with the solution.

    #187047
    1a-spielwiese
    Participant

    — Again I deleted everything (except the usage-folder) from my ftp-server and uploaded the fresh WordPress-copy again.

    — As well I uploaded again the wp-config.php with the line
    define(‘WP_ALLOW_MULTISITE’, true);

    — Nevertheless I get still the same error message:

    ‘Fehler: Umleitungsfehler

    Die aufgerufene Website leitet die Anfrage so um, dass sie nie beendet werden kann.’

    — It’s the same as well, when I use the wp-config.php without the MultiSite-line.

    #187046
    1a-spielwiese
    Participant

    — I removed all files from my ftp-Servers. – Only a folder ‘usage’ was not removable.

    — I deleted my WordPress database. I created a new WordPress database.

    — I renamed my old 1a-Spielwiese-folder on my on computer.

    — I created a new 1a-Spielwiese-folder and there a Word-Press-subfolder.

    — I downloaded a fresh WordPress copy from https://de.wordpress.org/latest-de_DE.zip to the mentioned subfolder.

    — I extracted the zip file. Then I uploaded the extracted files to my ftp-server.

    — I inserted my database infos to the wp-config.php and renamed it to wp-config.php.

    — I surfed to http://www.1a-spielwiese.de/wp-admin/install.php

    — After finishing the installation, I logged in and activated the Twentytwelve-Theme as well as ‘Jeder kann sich registrieren.’ I checked http://www.1a-spielwiese.de/wp-login.php?action=register – everything okay. The ‘Registrieren’-button is there.

    — I inserted the line
    define(‘WP_ALLOW_MULTISITE’, true);
    into the wp-config.php and logged in again.

    — I try to remove the www prefix from the WordPress-Adresse (URL) and Site Address (URL). During saving the setting change, I was automatically logged out. To log in again is impossible. Trying to go to 1a-spielwiese results in the error message:

    ‘Fehler: Umleitungsfehler

    Die aufgerufene Website leitet die Anfrage so um, dass sie nie beendet werden kann.’

    #187043
    1a-spielwiese
    Participant

    “A last try please. Remove www from the site url in the site settings.”

    Once the MultiSite Version is activated, there are – neither on the Network-level nor on the 1a-Spielwiese-level – the lines “WordPress Address (URL)” and “Site Address (URL)” within the Generel Settings anymore.

    However, my provider removed the www prefix already on Friday for me; cfr.:

    https://buddypress.org/support/topic/no-button-for-finishing-registration/#post-187029

    “I opened a ticket for this.
    Please follow it, as you will probably be invited to give some more details to solve it.”

    Have I to do anything right now? Or have I to read it only for the moment?

    —–

    However, I have decided to re-start really from the beginning; I removed all files from my ftp-server.

    #187042
    danbp
    Participant

    A last try please. Remove www from the site url in the site settings.

    See here how to change it and see if yo get the button.

    I opened a ticket for this.
    Please follow it, as you will probably be invited to give some more details to solve it.
    Thxs.

    Login credentials for the Trac are the same as on this forum.

    #187039
    1a-spielwiese
    Participant

    “remove all xprofile fields to get only the default name field.”

    When I posted the comment:

    https://buddypress.org/support/topic/no-button-for-finishing-registration/#post-187032

    non xprofile field was created.

    “Also download a fresh copy of wordpress and upload the twenty twelve theme folder to your site. Maybe your’s is corrupted somewhere.”

    That’s really unlikely, because both copies worked without problems, before I installed the BuddyPress-Plugin. And I tried never to make any major change of twenty twelve theme or WordPress itself.

    #187038
    1a-spielwiese
    Participant

    “Do you use a wordpress copy provided by your host?”

    No, that version:

    https://de.wordpress.org/latest-de_DE.zip

    “Do you use a child-theme?”

    No, up to now there was no nessicity for that.

    “Do you use any shortcode on the register page?”

    No – as far as I now.

    #187037
    danbp
    Participant

    Do you use a wordpress copy provided by your host ?
    Do you use a child-theme ?
    Do you use any shortcode on the register page ?

    Disallow blog creation for the moment and remove all xprofile fields to get only the default name field.
    Also download a fresh copy of wordpress and upload the twenty twelve theme folder to your site. Maybe your’s is corrupted somewhere.

    #187030
    danbp
    Participant

    FYI:
    The original file is in buddypress/bp-xprofile/bp-xprofile-classes.php (BP 2.0.2)
    The patched code is here.
    The part you mention is for developpers unit test. You have nothing to do with that. 😉

    Here you can download a copy of the patched file I use. You put it here:
    wp-content/plugins/buddypress/bp-xprofile/
    And here the code to add into bp-custom.php

    function bpfr_hide_profile_field_group( $retval ) {
    	// hide profile group to members when on profile edit
    	if( is_user_logged_in() && bp_is_profile_edit() ) {
               // exlude groups, separated by comma
    		$retval['exclude_groups'] = '6';          		
    	} 
    	return $retval;	
    }
    add_filter( 'bp_after_has_profile_parse_args', 'bpfr_hide_profile_field_group' );
    #187029
    1a-spielwiese
    Participant

    I installed WordPress. Then I activated the MultiSite-Functionality.

    Within that process the htaccess was mentioned. Because it didn’t exist, I created such file – with the rules, which are mentioned for activating the MultiSite Version.

    Finally I uploaded the htaccess and the modfied wp-config.php; and I contacted my provider regarding the Wildcard (and regarding deleting the www. prefix).

    All this I did on Thursday, and my provider answered on Friday.

    “Don’t forget that you’re on a MS. This means that you have 2 (zwei) dashboards.”

    Yes, I have two.

    “And that BuddyPress should be installed on the network.”

    I did so.

    “IMHO the easiest solution is – if the wildcard exist now – to remove the wp-config file from your site via FTP and to restart the installation process.”

    Okay, I will try this.

    #187024
    danbp
    Participant

    We are on the way to determine what’s happening ! Be patient ! 😉
    You said you installed your site before the wildcard was setted.
    So i presume you installed your wordpress before too !

    Normally during the install, a htaccess file is generated. The problem is that a MS htacces and a single htaccess file doesn’t contain the same rules. And same remark for the wp-config file.

    IMHO the easiest solution is – if the wildcard exist now – to remove the wp-config file from your site via FTP and to restart the installation process.
    No need to remove plugins and themes. Simply rename the plugin folder to xxx-plugins and they all will be deactivated.
    Once re-install successfully finished, you rename the plugin folder and you reactivate them one by one from the admin dashboard > plugins.

    Don’t forget that you’re on a MS. This means that you have 2 (zwei) dashboards. One for the main site and one for the Network. And that BuddyPress should be installed on the network.

    wspencer
    Participant

    I’m not using the do_action…that’s built into WordPress core in wp-includes/comment.php. The do_action is called during the wp_update_comment() function, which my custom comment editor uses. I could avoid it all together by doing a direct database insert using WP’s $wpdb class, but I prefer to use their built in functionality whenever possible.

    #187012
    danbp
    Participant
    #187010
    danbp
    Participant

    Both URL’s goes to error pages.
    So i’m affraid that you have to check your whole installation from the begin, first on your host (by reading his documentation) and after that your sites.

    To do that, you first need to ensure that your domain has a wildcard if you want to use subdomains.
    Then follow WP network install instruction and re-read BP install.

    https://codex.wordpress.org/Create_A_Network

    Configure BuddyPress

    #187005
    1a-spielwiese
    Participant

    “Are you on a single or MS install?”

    WordPress MultiSite.

    I have already created:

    http://kampfsportlerinnenneuwied.1a-spielwiese.de
    and
    http://balletttaenzerinnenkrzbg36.1a-spielwiese.de

    But they don’t work currently. I guess, I have to wait for some settings of my web space provider. – The provider is already informed.

    “Are your BP pages correctly set up?”

    What does this mean? Where I have to do this setting up? And what is “correct” and what is “not correct”?

    “Did you activate pretty permalinks?”

    I guess, not – if it is not automatically activated.

    danbp
    Participant

    Hi @thetinus,

    first of, two advice:
    http://www.wpbeginner.com/beginners-guide/why-you-should-never-upload-a-video-to-wordpress/
    http://support.hostgator.com/articles/specialized-help/technical/wordpress/why-videos-should-never-be-uploaded-to-wordpress

    To your question a) & b)
    yes you can code a custom (user) profile page. And yes you can use a player on it.
    But all depends of the number of videos attributed to each user, how many user will use this, the config of your server and of course your personnal knowledge about templating BP and php coding.

    Also, embeding hosted videos on profiles from official WP providers is very very easy – and powerfull. Doing the same from your own server is a bit more delicate to handle.
    https://codex.wordpress.org/Embeds

    Codex is your friend.

    BuddyPress Theme Development

    BuddyPress Plugin Development

    If you have questions, please ask only one by topic and try to be very specific and detailed.
    what you want to do
    what you already did – give example or pastebin your code
    and what you think should work and doesn’t.

    thank you !

    #186990
    danbp
    Participant

    Should i change template to deactivate this plugin?

    Yes, try this first. then activate 2013 theme.
    Deactivate also all plugins except BP and reactivate them one by one to find the culprit. If everything goes well with the plugins, you reactivate your theme.

    If you used bp-custom for some changes, remove the file while testing.
    Also in your theme, if you tweaked functions.php, remove it and replace it with the original functions file.

    Same recommendation if you use a child-theme. Remove it completely during your test.

    But before deinstalling definetly BuddyPress, i would take a moment to see what happens with my install.

    https://codex.wordpress.org/Debugging_in_WordPress

    #186987

    In reply to: Login As User

    john
    Participant

    I’ve been using this plugin for a long, long, time to help with both development and member support:

    https://wordpress.org/plugins/user-switching/

    It’s a very cool little piece of code that might be exactly what you’re looking for.

    Hope that helps.

    #186986

    In reply to: Login As User

    danbp
    Participant

    A logged in user is logged by role. This means that a super admin (independantly of the name) is always a super admin.
    On the same maner, a subscriber role is always a subscriber, independantly of his name.

    Now if you need to “see” what a subscriber (or an author, or an editor) can see, you have to asign to yourself an account of a subscriber (or an author, or an editor).

    So this answer is correct:
    If you want to login as a user, you have to create that account first and than login as that user.

    https://codex.wordpress.org/Roles_and_Capabilities

    #186968
    1a-spielwiese
    Participant

    Thanx.

    Unfortunately it does NOT work this way. I have deactivated and deinstalled custom css plugin.

    But nevertheless no button (and not footer) is displayed on the registration page – though the footer (“Dieses Blog läuft mit WordPress”) IS displayed on the other pages.

    #186965
    danbp
    Participant

    Hallo @1a-spielwiese,

    when checking the source code of http://www.1a-spielwiese.de/register/ you can see that, aside the missing buttons, the footer is also missing and at least mainly of the ending tags such as body and html…

    I would try to deactivate the custom css plugin and use a child-theme to do minor css modification for entry titles.

    Read also this:

    Twenty Twelve Theme

    #186946
    danbp
    Participant

    I tested the snippet and applied the patch to 2.0.2 and it works. So i guess you did something wrong. 🙁

    BP 2.1 is expected in 12 days !

    #186936
    brodskis
    Participant

    Hi thank you for your info
    With the combination of both danbp and Henryrights sugestion rtMedia and buddypress-portfolio I’m getting somewhere but still not sure how I make hese portfolios come up in the members area of their profiles. Can past the shortcode but it’s a link to a page rather than embeded? Is there an easy way of sorting this?

    Any clues much appresciated

    all the best

    #186932
    Henry Wright
    Moderator

    Agree with @shanebp!

    I’m trying to isolate an apparent quirk in BuddyPress having to do with an embedded user avatar image (via shortcode) not linking properly to the user profile…

    To my knowledge, BP doesn’t supply shortcodes? I suspect if you search your theme for something like add_shortcode( 'shortcode-name-here' and look in the hook’s code, therein you’ll find the problem.

    Ref: https://codex.wordpress.org/Function_Reference/add_shortcode

    #186928
    shanebp
    Moderator

    BuddyPress uses the bbPress plugin for forums.
    So you’re better off asking the question on https://bbpress.org/forums/

    What you want may be possible, to start, see:

    Allowing inline images uploads in posts?


    https://wordpress.org/plugins/gd-bbpress-attachments/

Viewing 25 results - 7,326 through 7,350 (of 22,684 total)
Skip to toolbar