General http://forum.techie-buzz.com/categories/general/feed.rss Mon, 20 May 13 04:41:17 -0400 General en-CA How i manage multiple blogs http://forum.techie-buzz.com/discussion/182/how-i-manage-multiple-blogs Thu, 29 Apr 2010 11:23:11 -0400 caramicheal 182@/discussions Error of 2.6.1 update to 2.7.1 http://forum.techie-buzz.com/discussion/111/error-of-2.6.1-update-to-2.7.1 Tue, 31 Mar 2009 01:19:54 -0400 god0911 111@/discussions -----
Task Name: maintmode
Task Description: Puts the site into maintenance mode
Task Status: Failed
Task Start Date: 2009-03-30 11:27:35
Task End Date: 2009-03-30 11:27:35
Task Log:
Putting the site into maintenance mode /export/vol2/home/god0911/www/blog/wp-content/plugins/wordpress-automatic-upgrade
Copying /export/vol2/home/god0911/www/blog/index.php to /export/vol2/home/god0911/www/blog/index.php.wpau.bak
The file was successfully copied
Moving the maintenance file to root
ERROR -> Could not put the site into maintenance mode
-----
The file was copy OK, but I don't know how to fix the maintenance mode.
Could you help me??

I had success for 25X to 261.
Why fail at 261 to 271.
I never change the setting.
Thank]]>
Wordpress blog development for 50 USD http://forum.techie-buzz.com/discussion/109/wordpress-blog-development-for-50-usd Mon, 23 Mar 2009 07:55:36 -0400 glabia 109@/discussions
We are very happy to introduce ourselves as Glabia Interactive, a wordpress solution provider from India. We are launching new packages in wordpress blog creation and promotion at affordable prices. Our wordpress customization packages are starts from 50 USD.

To know our specialties, visit: Wordpressthemesandplugins.com

Regards

Christina
Glabia Interactive]]>
Plugin fails on DB Backup http://forum.techie-buzz.com/discussion/102/plugin-fails-on-db-backup Thu, 27 Nov 2008 12:37:35 -0500 nicole85 102@/discussions
I've been trying to upgrade my Wordpress from Version 2.6.3 to Version 2.6.5 but to no avail. It worked very well for my previous upgrades.

I've reached to the step of Backing up the database, and then the plugin just gave me a blank page.

This is the error message:

[client 202.156.8.11] PHP Fatal error: Cannot instantiate non-existent class: wpaubackup in /home/www/web72/web/wp-content/plugins/wordpress-automatic-upgrade/wpau_db_backup.class.php on line 912

Please advise
Thanks :)]]>
De-activate plugins stage wont work http://forum.techie-buzz.com/discussion/100/de-activate-plugins-stage-wont-work Thu, 06 Nov 2008 11:03:58 -0500 sc8tt 100@/discussions
horized to do this'; return false; } global $wpdb; $current = get_option('active_plugins'); array_splice($current, array_search($plugin, $current), 1 ); // Array-fu! update_option('active_plugins', $current); do_action('deactivate_' . trim( '../' . $plugin )); $wpdb->query("Insert into ".WPAU_PLUGIN_TABLE." (plugin_name, plugin_status, plugin_deactive_response, plugin_reactive_response) values ('".$plugin."', 0, 1, 0)"); $this->logMessage('Deactivated the plugin '.$plugin.'
'); } /* get all info from the stored db and activate all the plugins */ function reActivatePlugins($automated = false) { if(!current_user_can('edit_plugins')) { echo 'Oops sorry you are not authorized to do this'; return false; } global $wpdb; if(isset($_REQUEST['pluginid'])) { $fatalPluginId = $_REQUEST['pluginid']; $plugins = $wpdb->get_results("select plugin_name, plugin_reactive_response from ".WPAU_PLUGIN_TABLE." where id = ".intval($fatalPluginId)); if(count($plugins) > 0) { if(intval($plugins[0]->plugin_reactive_response) != 1) { $this->logMessage('The Plugin '.$plugins[0]->plugin_name.' could not be activated succesfully. You will need to activate it manually.
'); $wpdb->query("UPDATE ".WPAU_PLUGIN_TABLE." set fatal_plugin = 1 where id = ".intval($fatalPluginId) ); } } } horized to do this'; return false; } global $wpdb; $current = get_option('active_plugins'); array_splice($current, array_search($plugin, $current), 1 ); // Array-fu! update_option('active_plugins', $current); do_action('deactivate_' . trim( '../' . $plugin )); $wpdb->query("Insert into ".WPAU_PLUGIN_TABLE." (plugin_name, plugin_status, plugin_deactive_response, plugin_reactive_response) values ('".$plugin."', 0, 1, 0)"); $this->logMessage('Deactivated the plugin '.$plugin.'
'); } /* get all info from the stored db and activate all the plugins */ function reActivatePlugins($automated = false) { if(!current_user_can('edit_plugins')) { echo 'Oops sorry you are not authorized to do this'; return false; } global $wpdb; if(isset($_REQUEST['pluginid'])) { $fatalPluginId = $_REQUEST['pluginid']; $plugins = $wpdb->get_results("select plugin_name, plugin_reactive_response from ".WPAU_PLUGIN_TABLE." where id = ".intval($fatalPluginId)); if(count($plugins) > 0) { if(intval($plugins[0]->plugin_reactive_response) != 1) { $this->logMessage('The Plugin '.$plugins[0]->plugin_name.' could not be activated succesfully. You will need to activate it manually.
'); $wpdb->query("UPDATE ".WPAU_PLUGIN_TABLE." set fatal_plugin = 1 where id = ".intval($fatalPluginId) ); } } } $plugins = $wpdb->get_results("select id, plugin_name from ".WPAU_PLUGIN_TABLE." where plugin_status = 0 and plugin_deactive_response = 1 and fatal_plugin = 0"); if(count($plugins) == 0) $this->logMessage('All the plugins were re-activated'); foreach($plugins as $plugin) { if(strlen(trim($plugin->plugin_name)) > 0) $this->reActivatePlugin($plugin, $automated); } return true; } function reActivatePlugin($plugin, $automated) { if(!current_user_can('edit_plugins')) { echo 'Oops sorry you are not authorized to do this'; return false; } global $wpdb; $current = get_option('active_plugins'); $pluginfile = $plugin->plugin_name; $pluginid = $plugin->id; $path = "../"; if ($automated) { $path = "../../"; } if ( wpau_validate_file($path.$pluginfile) ) { if ( ! file_exists(ABSPATH . PLUGINDIR . '/' . $pluginfile) ) { $this->logMessage('Plugin '.$pluginfile.' file does not exist'); } else { if (!in_array($pluginfile, $current)) { ob_start(); echo ''; if($file_included = @include(ABSPATH . PLUGINDIR . '/' . $pluginfile)) { $current[] = $pluginfile; sort($current); update_option('active_plugins', $current); do_action('activate_' . $pluginfile); $wpdb->query("Update ".WPAU_PLUGIN_TABLE." set plugin_status = 1, plugin_reactive_response = 1 where id = $pluginid"); $this->logMessage('Plugin '.$pluginfile.' was activated succesfully
'); } else { $this->logMessage('Plugin '.$pluginfile.' could not be activated succesfully. You will need to activate it manually.
'); } ob_end_clean(); } else { $this->logMessage('Plugin '.$pluginfile.' is already activated
'); } } } else { $this->logMessage('Could not validate the plugin '.$pluginfile.'
'); //TODO LOG REASONS FOR NOT VALIDATING } } /** * Function to de-activate all plugins **/ function wpau_validate_file($file, $allowed_files = '') { if ( false !== strpos($file, './')) return 1; if (':' == substr($file,1,1)) return 2; if ( !empty($allowed_files) && (! in_array($file, $allowed_files)) ) return 3; return 0; } } ?>
Fatal error: Class 'wpauPluginHandler' not found in /home/fhlinux141/m/meophamtennis.com/user/htdocs/wp-content/plugins/wordpress-automatic-upgrade/wordpress-automatic-upgrade.php on line 1140

Whats happening and how can i fiz this?

Thanks]]>
Next version of WPAU http://forum.techie-buzz.com/discussion/98/next-version-of-wpau Thu, 23 Oct 2008 20:13:08 -0400 jhave 98@/discussions
Thanks for a great plugin.]]>
Says already upto date which is not correct http://forum.techie-buzz.com/discussion/84/says-already-upto-date-which-is-not-correct Sat, 13 Sep 2008 06:56:46 -0400 david23 84@/discussions
I am trying to upgrade 2.3.2 to latest version and i am getting the following error

Wordpress automatic upgrade

Upgrades your wordpress installation automatically. If this plugin helped you, you can contribute towards plugin development by Donating to me.

TASK OUTPUT
TASK STATUS
We conducted some preliminary checks on your server. Below is the outputCongratulations!!! Your WordPress version is already up to date.

Thank you for creating with WordPress | Documentation | Feedback | Version 2.3.2]]>
More trouble i found.. http://forum.techie-buzz.com/discussion/78/more-trouble-i-found.. Fri, 05 Sep 2008 18:20:26 -0400 lodzi 78@/discussions
Warning: wpau_cleanup(wpau_upgrade.class.php): failed to open stream: Permission denied in /var/www/virtual/aliansi-petani-indonesia.org/htdocs/wp-content/plugins/wordpress-automatic-upgrade/wordpress-automatic-upgrade.php on line 1270

Fatal error: wpau_cleanup(): Failed opening required 'wpau_upgrade.class.php' (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/virtual/aliansi-petani-indonesia.org/htdocs/wp-content/plugins/wordpress-automatic-upgrade/wordpress-automatic-upgrade.php on line 1270

Heelp me.. please..]]>
getting problem with this... http://forum.techie-buzz.com/discussion/77/getting-problem-with-this... Fri, 05 Sep 2008 18:13:04 -0400 lodzi 77@/discussions We could not complete the upgrade please try again later, click here to check the logs.

please anybody...help me. i change the attribute of wpau_upgrade.class.php to 777, but it doesnt work]]>
WPAU - not working (blank page) http://forum.techie-buzz.com/discussion/72/wpau-not-working-blank-page Thu, 28 Aug 2008 02:59:28 -0400 bowulf 72@/discussions
I have tried:
* changing the permissions on the WPAU folders to 777
* changing the permissions on the index WPAU file to 777
* Deactivating the plugin and deleting it, and then reuploading it (I tried a fresh download of v1.2.2 as well, repeating the above steps)

All to no success. Is there a bug in this latest version?]]>
Lost access to website and backroom http://forum.techie-buzz.com/discussion/62/lost-access-to-website-and-backroom Tue, 29 Jul 2008 20:39:28 -0400 ana 62@/discussions Home page broken after using WPAU http://forum.techie-buzz.com/discussion/61/home-page-broken-after-using-wpau Sat, 26 Jul 2008 20:06:24 -0400 jodith 61@/discussions
I'm hopeless at CSS. Can anyone give me some clues as to what to look at?]]>
Oops sorry you are not authorized to do this http://forum.techie-buzz.com/discussion/60/oops-sorry-you-are-not-authorized-to-do-this Thu, 24 Jul 2008 13:30:39 -0400 wizcom 60@/discussions
Thanks.]]>
After Deleting older version and Install 1.2.1 http://forum.techie-buzz.com/discussion/58/after-deleting-older-version-and-install-1.2.1 Wed, 23 Jul 2008 20:08:24 -0400 mack 58@/discussions
My admin no longer gives me the upgrade notice.

What next?]]>
Feature wanted - backup only http://forum.techie-buzz.com/discussion/49/feature-wanted-backup-only Wed, 16 Jul 2008 07:55:52 -0400 fizzgigg 49@/discussions WPAU PLugin Caused Server Error http://forum.techie-buzz.com/discussion/43/wpau-plugin-caused-server-error Thu, 12 Jun 2008 17:19:05 -0400 phila 43@/discussions I already went in and deleted the index.php file and renamed the index.php.wpau.bak file.
That doesn't help.
What now. I'm pissed.]]>
I get this error when trying to add a new blog http://forum.techie-buzz.com/discussion/42/i-get-this-error-when-trying-to-add-a-new-blog Tue, 10 Jun 2008 12:58:59 -0400 jakoob 42@/discussions
The Blog url you provided is correct but seems that you are not using the latest version as we could not veryify it. This plugin has been tested only on blogs that run Wordpress 2.0+

(I am using 2.5.1)]]>
Cannot Upgrade all the installation files http://forum.techie-buzz.com/discussion/37/cannot-upgrade-all-the-installation-files Wed, 07 May 2008 02:50:36 -0400 yfrigi 37@/discussions Task Name: upgrade
Task Description: Upgrades all the installation files
Task Status: Complete
Task Start Date: 2008-05-06 21:17:52
Task End Date: 2008-05-06 21:38:55
Task Log:
Copying over files from /hsphere/local/home/mikofish/indigotechnologies.net/wordpress//wpau-backup/wordpress/wp-admin to /hsphere/local/home/mikofish/indigotechnologies.net/wordpress/wp-admin
ERROR -> Could not copy /hsphere/local/home/mikofish/indigotechnologies.net/wordpress//wpau-backup/wordpress/wp-admin/admin-header.phpto /hsphere/local/home/mikofish/indigotechnologies.net/wordpress/wp-admin/
Copying over files from /hsphere/local/home/mikofish/indigotechnologies.net/wordpress//wpau-backup/wordpress/wp-admin/images to /hsphere/local/home/mikofish/indigotechnologies.net/wordpress/wp-admin/images
Overwriting file xit.gif to /hsphere/local/home/mikofish/indigotechnologies.net/wordpress/wp-admin/images
Overwriting file tail.gif to /hsphere/local/home/mikofish/indigotechnologies.net/wordpress/wp-admin/images
Overwriting file toggle-arrow-rtl.gif to /hsphere/local/home/mikofish/indigotechnologies.net/wordpress/wp-admin/images
Overwriting file media-button-music.gif to /hsphere/local/home/mikofish/indigotechnologies.net/wordpress/wp-admin/images
Overwriting file align-left.png to /hsphere/local/home/mikofish/indigotechnologies.net/wordpress/wp-admin/images
Overwriting file date-button.gif to /hsphere/local/home/mikofish/indigotechnologies.net/wordpress/wp-admin/images
ERROR -> Could not copy /hsphere/local/home/mikofish/indigotechnologies.net/wordpress//wpau-backup/wordpress/wp-admin/images/browse-happy.gifto /hsphere/local/home/mikofish/indigotechnologies.net/wordpress/wp-admin/images/

It looks like it's looking for a double // after wordpress. I don't know how that got there. Any ideas?]]>
Problems conecting FTP http://forum.techie-buzz.com/discussion/30/problems-conecting-ftp Mon, 31 Mar 2008 15:10:16 -0400 leillo1975 30@/discussions
Staring FTP client class without PORT mode support UMASK 022 Transfer type: auto ASCII Timeout 30 Passive mode on Host "ftp.webcindario.com(89.17.220.55):21" Local OS : UNIX Creating socket _connect: socket connect failed ( ()) Error : Cannot connect to remote host "ftp.webcindario.com :21"

I put the data in the form correctly]]>
Manage Multiple Blogs Header Error http://forum.techie-buzz.com/discussion/18/manage-multiple-blogs-header-error Tue, 18 Dec 2007 13:20:18 -0500 sweetjane 18@/discussions
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/msj41/public_html/eplanetmag/wp-admin/admin-header.php:16) in /home/msj41/public_html/eplanetmag/wp-content/plugins/manage-multiple-blogs/manage-multiple-blogs.php on line 176

I'm technically challenged so any help with this problem would be very much appreciated.

thank you]]>
Add a New Blog Error http://forum.techie-buzz.com/discussion/24/add-a-new-blog-error Wed, 02 Jan 2008 21:43:11 -0500 craiger 24@/discussions
What the heck does it mean & what's the SOLUTION?

Warning: array_keys() [function.array-keys]: The first argument should be an array in /home/clickthr/public_html/click3media/wp-content/plugins/manage-multiple-blogs/manage-multiple-blogs-admin.php on line 240

Oopsy Dooopsy!!!! Some how we figured out you do not have write permissoins to the blog you are trying to add.
You cannot do anything on the external blog so we do not see any point in adding the external blog to this blog as our limitations (Pssst: WordPress limitations led us to this) permit us from doing so. You can check with the site owner for the permissions to be able to write to their blog before we can add it here]]>
Problems with posting, editing, backup http://forum.techie-buzz.com/discussion/16/problems-with-posting-editing-backup Tue, 20 Nov 2007 13:54:44 -0500 rep 16@/discussions
For example, when I hit the "Save and Continue Editing" button, it does save the draft post, but I am not taken back to the post. Instead, I get this error message:

_____________________

WordPress database error: [Table 'thewriu3_wrdp1.wp_post2cat' doesn't exist]
SELECT cat_ID AS ID, MAX(post_modified) AS last_mod FROM `wp_posts` p LEFT JOIN `wp_post2cat` pc ON p.ID = pc.post_id LEFT JOIN `wp_categories` c ON pc.category_id = c.cat_ID WHERE post_status = 'publish' GROUP BY cat_ID
_______________

I also get this error message when I click on "Save" or "Publish." The requested actions are taken, but the above error message appears. It is very annoying and cumbersome.

It has also broken the backup system that was in place. The backup works successfully, but I get an error message stating the system failed to email the backup to my email address.

This is all causing problems for me, and I will not use WPAU on other sites.]]>
External Blog Setup Error http://forum.techie-buzz.com/discussion/5/external-blog-setup-error Wed, 05 Sep 2007 18:35:21 -0400 stitzelj 5@/discussions Text Editor http://forum.techie-buzz.com/discussion/6/text-editor Fri, 07 Sep 2007 01:44:35 -0400 stitzelj 6@/discussions Header Error http://forum.techie-buzz.com/discussion/4/header-error Wed, 05 Sep 2007 18:32:41 -0400 stitzelj 4@/discussions
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/opendial/public_html/blog/wp-admin/admin-header.php:16) in /home/opendial/public_html/blog/wp-content/plugins/manage-multiple-blogs/manage-multiple-blogs.php on line 176

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/opendial/public_html/blog/wp-admin/admin-header.php:16) in /home/opendial/public_html/blog/wp-content/plugins/manage-multiple-blogs/manage-multiple-blogs.php on line 176]]>
Parse Error http://forum.techie-buzz.com/discussion/3/parse-error Wed, 05 Sep 2007 18:10:40 -0400 blackock 3@/discussions
Parse error: parse error, unexpected T_OBJECT_OPERATOR in wp-content/plugins/manage-multiple-blogs/manage-multiple-blogs-admin.php on line 564

Any ideas?]]>
Testing the support forum http://forum.techie-buzz.com/discussion/2/testing-the-support-forum Mon, 13 Aug 2007 21:01:59 -0400 keithd 2@/discussions Your first topic http://forum.techie-buzz.com/discussion/1/your-first-topic Fri, 10 Aug 2007 16:08:31 -0400 keithd 1@/discussions