Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 22,526 through 22,550 (of 22,723 total)
  • Author
    Search Results
  • #36087

    In reply to: Google Map Integration

    Bergsten
    Participant

    Apart from the BP-profile integration, each user can easily add a Google Map on their blogs using the tags in http://www.ezbizniz.com/wordpress-plugins/google-maps

    I’ve also added the possibility to get markers from an XML-feed. If you, in the WP Google Maps settings, click on the “See example…”-link you see the URL to an XML-feed that will return markers for 20 of the users withint the viewport of the current map. You can use this to display a map on your front page displaying where the different members on your site lives.

    In the “Marker XML Feed Fields” input field you can specify the names of the different fields of the markers returned by the XML-feed.

    In the “Marker XML Feed HTML Pattern” you can set how the information will be presented when someone clicks on a marker.

    I will write a more detailed description on how things work on http://www.ezbizniz.com/wordpress-plugins/google-maps when I get the time to do so.

    #36080
    gpo1
    Participant

    Any idea on this, Because it’s very handy with all does wp widgets?

    #36075

    In reply to: Google Map Integration

    Bergsten
    Participant

    I have an early beta version of a Google Maps plugin that works with WordPress, WPMU & BuddyPress.

    Go to http://www.ezbizniz.com/wordpress-plugins/google-maps and click on the “WP Google Maps – 2.0b1” link to download.

    Put the wp-google-maps folder in mu-plugins, copy the bp-google-maps.php file to mu-plugins, go to wp-admin/admin.php?page=wp-google-maps/wp-google-maps.php and enter your Google Maps API key for your site.

    #36068

    In reply to: What are these tables?

    tabish
    Member

    In addition to my previous page:

    I found an article where Barry is claiming to have 300 Servers for wordpress.com with 10 million page view (in year 2007). In same post one user has madea comment:

    “300 hosts to serve only 10 million pageviews? This is a little bloated, isn’t?

    I know a case that only 2 hosts serves more than 350 millions of pageviews!!”

    Regards

    #36067

    In reply to: What are these tables?

    tabish
    Member

    @apeatling

    How many servers wordpress.com is running on?

    My experience with wordpress is NOT good at all. I made a website with wordpress, only 3 or 4 plugins installed (all plugins checked and optimized), 600 categories made, and so far 700 posts are there.

    A single post page showing more than 35 SQL queries and on an average it takes from 3 seconds to 6 seconds to generate a Single post page. I optimized database, setup PHP eAccelerator and it is hosted on VPS.

    With this much server resource, if 600 categories and 700 posts are taking making it that slow, then I can not imagine to have millions of posts on wordpress. I can not afford to have 1000 servers for one million post.

    If you google a bit, you will see how many people complain about wordpress for being SLOW. Looks like there is no limit for SQL queries in wordpress and if just to receive a category hierarchy one needs to run 35 queries, then there is some serious issue with the optimization.

    I am not a GURU or Genius, I respect wordpress developers from the bottom of my heart BUT I think there should be some thought about making it fast. Every time with the latest release (of wordpress) we see Lots and lots of AJAX and CSS improvements and it is making it much more slower than ever. The write post pages, you just try it on dial up or some other slow connection and you will know what i mean.

    For the beginning it feels like Haven to get a site with lots of controls and free updates but as soon as you start growing, you realize that there is something seriously Wrong with your system. All the money you earn from advertising will go to the hosting companies.

    This is just my experience and I am not arguing with anyone.

    #36066
    Maxaud
    Participant

    Also, noticed that the “Group Forums” section isn’t present in WPMU 2.7 but it is in 2.6.5

    It says the following and has the following options:

    “To enable forums for each group in a BuddyPress installation, you must first download, install, and setup bbPress and integrate it with WordPress MU.

    Once you have bbPress set up correctly, enter the options below so that BuddyPress can connect.”

    – bbPress URL

    – bbPress username

    – bbPress password

    – Cache requests

    – Caching enabled

    – Cache timeout

    #36051
    Burt Adsit
    Participant

    If the db needs upgrading it will auto do so when you visit the admin backend of wpmu. I don’t know how other keep up to date but I have a local copy of the SVN image of bp, mu and bbpress. I also have a test server running locally and I update that manually from my SVN working copy of all three. I used to just work off the SVN image as my dev server but that got confusing for SVN and me.

    When I’m ready I update the live server. I’m in the process of creating a dev server on the same box as the live server. I did run across this little thing and thought I might try it out: http://dentedreality.com.au/2008/12/managing-wordpress-with-subversion/

    #36047

    In reply to: Google Map Integration

    Burt Adsit
    Participant
    #36039

    In reply to: What are these tables?

    Andy Peatling
    Keymaster

    All good points.

    Remember, WordPress.com runs WordPress MU and has over 5 million blogs.

    Per Søderlind
    Participant

    What’s nice with WP/WPMU is that you don’t need to include the most popular javascript libraries with your plugin, they are already installed (scroll down a bit and you see the list: https://codex.wordpress.org/Function_Reference/wp_enqueue_script ), and using wp_enqueue_script you avoid conflicts.

    E.g.: BPDEV-FLICKR should/could do (not tested):

    function init_scripts() {
    global $bp;
    wp_enqueue_script('prototype');
    wp_enqueue_script('scriptaculous-builder');
    wp_enqueue_script('scriptaculous-effects');
    wp_enqueue_script('bpdev-lightbox', bloginfo('wpurl').$bp['flickr']['lightbox'] . 'js/lightbox.js' , array( 'prototype','scriptaculous-builder','scriptaculous-effects' ) );
    }
    add_action('init','init_scripts');

    #36009

    In reply to: Log Out Redirect Error

    elishahong
    Member

    Everything works perfectly but the Logout option. I can create blogs and all that.

    I installed WordPressMU on a subdirectory.

    Now I’m getting more errors for some reason maybe you might know what’s this:

    Warning: ksort() expects parameter 1 to be array, null given in /blog/wp-content/mu-plugins/bp-core.php on line 1072

    Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /blog/wp-content/mu-plugins/bp-core.php on line 1075

    # My Account

    Warning: Invalid argument supplied for foreach() in /blog/wp-content/mu-plugins/bp-core/bp-core-adminbar.php on line 58

    * Log Out

    Per Søderlind
    Participant

    I mention it before, and Nicola will (I hope) use it in the next version, scripts and styles should be added using https://codex.wordpress.org/Function_Reference/wp_enqueue_script and https://codex.wordpress.org/Function_Reference/wp_enqueue_style

    #35992

    In reply to: Log Out Redirect Error

    elishahong
    Member

    Home theme, where the root of my blog is located, in fact the admin bar(drop down list [log out]) is also affected.

    I got this result for both the log out links for the home theme and the admin bar:

    You don’t have permission to access /blog/wp-login.php on this server.

    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

    I attempted to replace the code for the admin bar and got the same result as how mdsports had. It didn’t redirect to my home blog page.

    I downloaded the latest WordPressMU and BuddyPress(I used the beta link that was given)

    Here’s the admin bar code which I identified:

    // **** “Log In” and “Sign Up” links (Visible when not logged in) ********

    function bp_adminbar_login_menu() {

    if ( !is_user_logged_in() ) {

    echo ‘<li class=”bp-login no-arrow”>‘ . __( ‘Log In’, ‘buddypress’ ) . ‘‘;

    // Show “Sign Up” link if registrations are allowed

    if ( get_site_option( ‘registration’ ) != ‘none’ ) {

    echo ‘<li class=”bp-signup no-arrow”>‘ . __( ‘Sign Up’, ‘buddypress’ ) . ‘‘;

    The Home theme header logout link(the one to the right) is also similar but I have no idea how PHP really works and I spent a few hours figuring out what the problem was but I’m interested to learn how these stuff works and I hope you guys can enlighten me.

    jmax123
    Member

    Here is the problem, when I look a the HTMl source rendered to the browser I see the path

    <link rel=”stylesheet” href=”/wp-content/mu-plugins/bpdev-flickr/css/style.css” type=”text/css” media=”screen” />

    <link rel=”stylesheet” href=”/wp-content/mu-plugins/bpdev-youtube/css/style.css” type=”text/css” media=”screen” />

    whereas the rest of the buddypress and wordpress links have the whole domain associated with them not just the /wp-content… they have http://domain.com/wp-content

    So, the function <script type=”text/javascript” src=”<?php echo $bp; ?>js/lightbox.js”></script>

    needs to really get the WP domain prepended?

    #35966

    In reply to: What are these tables?

    Trent Adams
    Participant

    These are great issues to bring up on the buddypress mailing list and I encourage you to do it. I do not develop WPMU or Buddypress and these are just my opinions. This is just background information as well. WPMU is known to be extremely server intensive as is.

    Right now, most scaling solutions have been implemented for WPMU and the database structure that is already developed and in place. Mainly, blog sites like wordpress.com and edublogs.org. They have implemented multi-database solutions where the request gets analyzed for the blog hash and directed to the proper database and the connection only occurs to the database that houses that data. Databases can reside on any server in any location.

    Images are also housed in directories created through the blog hash as well. This also allows you to have multiple image directories in multiple locations if you wanted. Some even offload some of their images to 3rd party services like S3.

    At present time, AFAIK, there is no solution for spreading around the buddypress data. It hasn’t been addressed yet.

    I am not going to argue and say this is the most ideal circumstance or setup. There are plenty of discussions on scaling both in the WPMU forums as well as in the WPMU Advanced Forums as well as on the WPMUDEV Premium Forums. Not to mention the WP Hackers list is also a great resource from the real developers and hackers of WP in general.

    Buddypress, like WPMU, are open-source communities and all input is not only welcomed, it is encouraged! Feel free to add anything that you feel would be better. I am sure Andy is welcome to hearing all feedback if you know a better way to do something.

    My previous comment on this topic was purely my opinion on how the current setup could be scaled based on my experience with already ongoing projects. Right or wrong, it is just my opinion.

    #35936

    In reply to: forum keys

    Burt Adsit
    Participant

    I’m kinda guessing you are talking about getting bbpress and mu configured to share user tables and sessions.

    https://mu.wordpress.org/forums/

    https://bbpress.org/forums/

    EDIT: the above was also posted in what seemed to be a topic at random on the bbpress forums.

    #35929

    In reply to: MAMP & email

    Per Søderlind
    Participant

    Use SMTP instead, more information here: http://subscribe2.wordpress.com/2008/05/15/smtp-mailer/

    #35927

    In reply to: No admin bar in blogs

    Pk
    Member

    Thanks. I think the previous template didn’t have that. I think im using 2.6.5 as i still have the message “WordPress 2.7 is available! A new version of WordPress MU will be available soon.”

    If a user logs in via the mail link “http://paulka.runningfree.co.za/wp-login.php&#8221; there is no bbpress admin bar, is this correct?

    How does one get to paulka.runningfree.co.za/wp-admin/ with out using the email link? As i understand the options pages from the bbpress bar only change the profile seen http://runningfree.co.za/members/name-of-member/&#8230;.

    #35922

    In reply to: OpenID Support?

    Will Norris
    Participant

    I’m going to be focussed primarily on getting OAuth into WordPress for the next bit, so won’t have a lot of time to look into this myself. If you all find any problems in the plugin that need to be patched in order to work with BP, do let me know. Best bet would be to ping me directly (willnorris.com).

    #35884
    gpo1
    Participant

    burtadsit, but this feature needs to be looked at because we can use most of the wordpress plugins and its very handy for users!

    I hope Andy could shed some light on this…

    #35865

    In reply to: strange admin address

    nickmu
    Member

    Guys,

    I’ve got a solution!

    go to:

    http://www.callum-macdonald.com/code/wp-mail-smtp/

    and download this plugin:

    Download: Current Testing Version: 0.8.2, Released 14/Dec/2008

    activate the plugin and call up the “Email” page on your dashboard

    check: Send all WordPress emails via SMTP.

    bluehost users enter:

    “localhost”

    465

    check: Use SSL encryption.

    check: Yes: Use SMTP authentication.

    username: noreply@yourdomain.com [this is the important part…make sure to enter “noreply” and that you have an email setup up for this on your server]

    password: the password you set up for noreply@yourdomain.com


    you may be able to change other settings using those lines of the bp_core.php files but at least these emails will come from your domain now! YAY!

    #35863
    Trent Adams
    Participant

    This topic might get more attention if you post it in the WPMU forums as it isn’t a buddypress related issue.

    https://mu.wordpress.org/forum/

    #35862

    In reply to: BP Themes Site

    Trent Adams
    Participant

    I love that idea! Thanks @danielfelice! I tweeted it and hope others might start using it as well since there is no repository yet. You can also encourage people to submit their themes to http://themes.wordpress.net as well for great access :)

    Trent

    #35853
    Burt Adsit
    Participant

    @gpo1 That’s what doesn’t work. The bp member theme isn’t a normal theme. That seems to be the problem. A normal theme does a bunch of *something* that the bp member theme doesn’t. The mu widget stuff is confused. Doesn’t know what blog id it’s on. Doesn’t like registering a sidebar in it. Dunno what it is, but it’s something.

    #35840

    In reply to: strange admin address

    chriscarter
    Participant

    I did what Burt suggested, commenting out those lines, and it helped slightly. The email now comes from the address I designated in the WPMU settings. However, the email says it is From: WordPress and not from my site.

Viewing 25 results - 22,526 through 22,550 (of 22,723 total)
Skip to toolbar