dorian06
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: wp Time Machine] No Upload to DropboxIt’s working great! Must have been something in dropbox uploader, because I didn’t modify any file in the plugin or WordPress and suddenly started working fine, yay!
Forum: Plugins
In reply to: [Plugin: wp Time Machine] No Upload to DropboxWordPress 3.03 & WP-time-machie 1.9.16. Hosting: Media Temple.
At my WordPress panel, wp-time-machine says that everything was allright. but NO dropbox UPLOAD.
This are my last lines in the log
[2010-12-16 6:07:35 pm] --- wpTimeMachine-data-files.sql (MySQL dump, for tables that begin with: "fd_") [2010-12-16 6:07:35 pm] --- Initiate transfer to dropbox [2010-12-16 6:07:35 pm] --- Instantiate new DropboxUploader()
If I try to generete the files like if it was a cron job, I got this message
Fatal error: Uncaught exception 'Exception' with message 'Cannot execute request: couldn't connect to host' in /nfs/c02/h05/mnt/18812/domains/decero.com/html/wp-content/plugins/wp-time-machine/includes/DropboxUploader.php:126 Stack trace: #0 /nfs/c02/h05/mnt/18812/domains/decero.com/html/wp-content/plugins/wp-time-machine/includes/DropboxUploader.php(85): DropboxUploader->request('https://www.dro...') #1 /nfs/c02/h05/mnt/18812/domains/decero.com/html/wp-content/plugins/wp-time-machine/includes/DropboxUploader.php(74): DropboxUploader->login() #2 /nfs/c02/h05/mnt/18812/domains/decero.com/html/wp-content/plugins/wp-time-machine/includes/wpTimeMachineSwitch.php5(23): DropboxUploader->upload('/nfs/c02/h05/mn...', '/DeCeroEN') #3 /nfs/c02/h05/mnt/18812/domains/decero.com/html/wp-content/plugins/wp-time-machine/includes/wpTimeMachineCron.php(212): require('/nfs/c02/h05/mn...') #4 /nfs/c02/h05/mnt/18812/domains/decero.com/html/wp-content/plugins/wp-time-machine/cron.php(3): include_once('/nfs/c02/h05/mn...') #5 {main} thrown in /nfs/c02/h05/mnt/18812/domains/decero.com/html/wp-content/plugins/wp-time-machine/includes/DropboxUploader.php on line 126
Any HELP?
Forum: Fixing WordPress
In reply to: Values in Meta box erase themself.thanks, esmi, will try.
Forum: Fixing WordPress
In reply to: Cannot remove featured imageForum: Fixing WordPress
In reply to: Cannot remove featured imageMore-fields 1.5.3 (or others) is no compatible with WP 3.0 Soon it will be available more fields 2.0 and this, hopefully will solve this problems.
Forum: Fixing WordPress
In reply to: Cannot remove featured imageI know that the plugin, “more-fields” is the one causing all this mess, :S
Forum: Fixing WordPress
In reply to: query_posts & custom taxonomiesThx for answer,
I read the article, but couldn’t make it to work, how should I call it?$term = get_term_by( ‘testimonials’, get_query_var( ‘5’ ), get_query_var( ‘Testimonials’ ) );
Forum: Fixing WordPress
In reply to: Upload media in custom panelUsing the WordPress Uploader in Your Plugin or Theme
https://www.webmaster-source.com/2010/01/08/using-the-wordpress-uploader-in-your-plugin-or-theme/Forum: Fixing WordPress
In reply to: I only want menu’s on my blog page, not every page?<?php if(!is_home()){ //code } ?>
Forum: Requests and Feedback
In reply to: WordPress 3.0, I like it but . . .2) Custom post types and page attributes – I can see the parent drop down in here, but I can’t see the template drop down, no matter what theme I am using.
I would love that custom post types act more like pages!!
Forum: Plugins
In reply to: Upload Image in Custom Admin PanelPlease help! Just want to be able to upload images in a custom admin panel, any clue?
Forum: Themes and Templates
In reply to: Custom posts types display in page.phpThanks Michael, in Custom Post, should I be able to select the template? Because I don’t see the template attribute in my Custom Post Type (I can see it in normal pages).
Forum: Themes and Templates
In reply to: Custom posts types display in page.phpIts already created and its called ‘product’.
I want to display post_type = product in pages.php
Also, Im trying to get the post ID, and if it’s a ‘page’ works fine, but if post_type = product It doesn’t work.global $wp_query; $thePostID = $wp_query->post->ID; $theParentID = $wp_query->post->post_parent; $thePostTitle = $wp_query->post->post_title; echo "$thePostID"; echo "$theParentID";
Forum: Themes and Templates
In reply to: Custom posts types display in page.phpBecause is a huge site, and I would like to divide the admin panel in different sections in order to make it easy to add content. Also, I want to use Custom Post Types because when I define the post-type, I can easily add custom fields for each kind of post-type. It looks great! I don’t know how could I do this with pages!
Forum: Fixing WordPress
In reply to: wp_lists_pages and Custom Posts TypesOk thanks! ??