Frumph.NETWork

I'm in your site, touching your stuff.
  • Home
  • Archive
    • Incoming Links
  • Contact
  • Documentation
    • FAQ
    • ComicPress ChangeLog
  • Downloads
    • ComicPress Child Theme’s
    • Easel
    • Easel Child Themes
    • Plugins
Twitter Facebook RSS
Home » Page 12

Donate to Development

Latest Beta’s

ComicPress
  • 06/08/2011 - released
  • Download: ComicPress ver 2.9.3.1
Easel
  • 06/05/2011
  • Download: Easel ver 2.0.8

Latest Music

  • How You Make Me Feel
  • Song for Sophie
  • On A Blue Moon
  • The Only Exception
  • A Father’s Love (Ethan Song)

Categories

  • Blog (36)
    • Articles (5)
    • BookOfPhilip (5)
    • Dream Journal (1)
    • News (9)
    • Random Thoughts (3)
  • ComicPress Child Themes (3)
  • ComicPress Manager (1)
  • Design (1)
  • Guide (2)
  • Information (1)
  • Twitter (1)
  • Uncategorized (3)
  • WebComic (6)
    • Rascal (6)
  • WebComic Planet (4)
  • Wordpress (58)
    • Comic Easel (2)
    • ComicPress (15)
    • Easel (5)
    • FAQ (7)
May10

Closed ComicPress Beta Testing

by Phil (Frumph) on May 10th, 2010 at 3:32 pm
Posted In: ComicPress

ComicPress Premium is beginning its Closed Beta Phase of development. Many new features are fully functional, and now bug testing is needed. If you have experience with ComicPress Legacy, WordPress 2.9 and 3.0-beta, you may be one of the people we are looking for.

↓ Read the rest of this entry…

 Comment 
May10

WordPress – Plugin & Theme Check for Multisite/WPMU

by Phil (Frumph) on May 10th, 2010 at 9:16 am
Posted In: Wordpress

This is some information you might need when checking whether or not the current WordPress installation is Mulsite or WPMU.

If this is a MU or Multisite WordPress this will be an option available, if it is not, it won’t be there. fileupload_url contains http://domain.tld/files which is used to rewrite the location of the wp-content/blogs.dir/#/files where the # is the blog ID number of the current blog being processed.

get_option('fileupload_url');

The MU / Multisite change to the option upload_path changes the information from wp-content/uploads to wp-content/blogs.dir/#/files where the # is the blog ID number of the current blog being processed.

get_option('upload_path');

When coding your plugin or theme that will access the uploads directory those two options are important to know the distinction between the MultiSite(MU) and single installations of WordPress.

The following bit of code is something to add to your plugin or theme if you need to determine whether or not the theme is Multisite or not. With ComicPress we use it to find the proper directory to load comics into.

function yourtheme_this_is_multsite() {
	global $wpmu_version;
	if (function_exists('is_multisite'))
		if (is_multisite()) return true;
	if (!empty($wpmu_version)) return true;
	return false;
}

The $wpmu_version was a way in WPMU <= 2.9.2 to determine if it was a WordPress MU install and the is_multisite() || VHOST is a way to determine if it’s a WordPress > 3.0 installation.

For example, with ComicPress we use it to make sure we’re pointing to the right spot to find the comics.

if (comicpress_this_is_multisite()) { $path_to_use = get_option('fileupload_url'); }

Of course we could also do:

$mu_path = get_option('fileupload_url');
if (!empty($mu_path)) $path_to_use = $mu_path;

But it’s not as reliable.

└ Tags: Multisite, WPMU
 Comment 
May07

BuddyPress Revisited Part 1.

by Phil (Frumph) on May 7th, 2010 at 12:25 pm
Posted In: Wordpress

WordPress evolves so do the plugins and theme’s that work with it. Remembering that I like to go back and revisit things that I have said I didn’t like in the past. When BuddyPress first came out it was horrible, function rewrites for core code, remapping that shouldn’t have been done and everything was really a mess of non-integrated crap.

↓ Read the rest of this entry…

└ Tags: BuddyPress
1 Comment
May06

WordPress Involvement & Showing Support On Twitter

by Phil (Frumph) on May 6th, 2010 at 3:44 pm
Posted In: Wordpress

Most people don’t realize this but the WordPress development team is built up of volunteers spending their free-time to create the WordPress core.    This concept trickles down to everyone creating themes and plugins as well.  The work the core developers do is the base for everyone who uses WordPress for their website.   Often times even I forget that they are just volunteers and when something doesn’t work like I think it should it’s them who I blame, although I shouldn’t ;)

So we’re passing around a ‘meme’ sort of attitude on twitter to give a sort of thumbs up for everyone who is involved with helping WordPress’s 3.0 release.

So what you do is go to the http://wordpress.org/about/logos/ and find a nice official WordPress logo to put in your avatar on Twitter, some of us have even done this for our Gravatar at gravatar.com as well.

I’m using my WordPress Alchemy version

└ Tags: MeMe, Thanks
1 Comment
May03

Onomatopoeia Day 2010

by Phil (Frumph) on May 3rd, 2010 at 12:00 am
Posted In: Rascal

Today is Onomatopoeia Day!

http://webcomicplanet.com/daily-planet/news/today-is-onomatopoeia-day/

2 Comments
  • Page 12 of 23
  • « First
  • «
  • 10
  • 11
  • 12
  • 13
  • 14
  • »
  • Last »

Random Pinup

2009-10-10-garanos

Most Recent Logins

adrinojasklao00richardheadstrong33cuzimjoekittylyndacharlesbeers4articlejohn24zigerdavidalexrayersprinkelbkevinvarsa54bloomcreptpaul638dernoaaiggy33

Control Panel

  • Register
  • Recover password

Pages

  • Archive
    • Incoming Links
  • Blog
  • Documentation
    • Custom Avatars
    • Custom Menubar
    • Getting Started
    • Installation Instructions
    • Navigation Buttons
    • Recommended Plugins
  • Downloads
    • ComicPress Child Theme’s
    • Easel Child Themes
    • Plugins
  • Easel
  • FAQ
    • ComicPress ChangeLog
  • Frumph’s Plugin Certification
  • Hire Me
    • Portfolio
  • Incoming Links
  • Members

©2008-2011 Philip M. Hofer (Frumph) | Powered by WordPress with Easel | Hosted on Frumph.NETwork | Subscribe: RSS | Back to Top ↑

82 queries. 18 mb Memory usage. 1.275 seconds.