quikone
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Blog main pageIt’s interesting, I have been stepping through the sequence of the program and found a failure on line 66 of template-loader.php.
The problem area is marked by b-quote.
Are there any tools to track my problem down?
<?php /** * Loads the correct template based on the visitor's url * @package WordPress */ if ( defined('WP_USE_THEMES') && constant('WP_USE_THEMES') ) { do_action('template_redirect'); if ( is_robots() ) { do_action('do_robots'); return; } else if ( is_feed() ) { do_feed(); return; } else if ( is_trackback() ) { include(ABSPATH . 'wp-trackback.php'); return; } else if ( is_404() && $template = get_404_template() ) { include($template); return; } else if ( is_search() && $template = get_search_template() ) { include($template); return; } else if ( is_home() && $template = get_home_template() ) { include($template); return; } else if ( is_attachment() && $template = get_attachment_template() ) { remove_filter('the_content', 'prepend_attachment'); include($template); return; } else if ( is_single() && $template = get_single_template() ) { include($template); return; } else if ( is_page() && $template = get_page_template() ) { include($template); return; } else if ( is_category() && $template = get_category_template()) { include($template); return; } else if ( is_tag() && $template = get_tag_template()) { include($template); return; } else if ( is_tax() && $template = get_taxonomy_template()) { include($template); return; } else if ( is_author() && $template = get_author_template() ) { include($template); return; } else if ( is_date() && $template = get_date_template() ) { include($template); return; } else if ( is_archive() && $template = get_archive_template() ) { include($template); return; } else if ( is_comments_popup() && $template = get_comments_popup_template() ) { include($template); return; } else if ( is_paged() && $template = get_paged_template() ) { include($template); return; } else if ( file_exists(TEMPLATEPATH . "/index.php") ) { include(TEMPLATEPATH . "/index.php"); return; } } else { // Process feeds and trackbacks even if not using themes. <blockquote> if ( is_robots() ) { do_action('do_robots');</blockquote> return; } else if ( is_feed() ) { do_feed(); return; } else if ( is_trackback() ) { include(ABSPATH . 'wp-trackback.php'); return; } } ?>Forum: Installing WordPress
In reply to: Blog main pageI am hosting. So, I am pretty sure that the problem is on my end. I have noticed that I don’t have a htaccess file. I thought it might have been a problem with v2.7. I have downgraded to 2.5 and still the same problem. I noted that login.php and options-general.php do show up. It is almost like I have missed something in the install. You would think that if it is a apache, mysql or php problem nothing would work???
I have also noticed that all the file dates in wp-admin are now showing the current date.
Forum: Installing WordPress
In reply to: Blog main pageI tried all of the above and get errors in line 1 or 2. index.php and page.php are the only ones available.
Forum: Installing WordPress
In reply to: Blog main pageWhat kind of information do you need? I can’t understand why I can’t get to my page. My real url is thecomingdays.com/wordpress I am assuming that there is something wrong with my index file. I will try to find out if any of the above will get me there.
Thanks for the help.
Forum: Installing WordPress
In reply to: Site doesn’t load – can’t see blogDoes anyone know where the main page is acually stored? I did notice that I do not have any .htaccess file, is that a problem?
Forum: Installing WordPress
In reply to: Site doesn’t load – can’t see blogI am having the same problem, what do you mean by your statement? I am attempting to host on my web server. How do I enable index.php for folders? Right now, it will browse to settings etc. but not to the actual main page.
Forum: Installing WordPress
In reply to: Main page issueI have now successfully tested php on my browser as well. How the heck to I get to my blog home page instead of going to index.php? For instance if I type test.com/wordpress I still get the index instead of the main page.
Forum: Installing WordPress
In reply to: Main page issueThis is hosted on my server. I have successfully tested php5 through terminal. I have not successfully tested through firefox browser. Do you know of any fairly simple ways to test php? I have built the test file and again works in terminal but not through browser???
Forum: Installing WordPress
In reply to: Install warningThat was it. Thank you for your help!!
Forum: Installing WordPress
In reply to: Install warningAltoyes,
Thanks, that seems to be it. I know this is a stupid question; what do you mean by re-upload the wp-config.php?
Forum: Installing WordPress
In reply to: Install warningFirst, I would imagine it is a problem and two, how do I fix it. If there is info I should be looking at instead, I would be happy to.
Forum: Installing WordPress
In reply to: Installation issuesWordPress has nver been installed. That seems to be the problem. The tar file was untarred to /var/www/wordpress. That is the only place I find it. I don’t understand why you say it is installed twice?? I seems that my system will not launch the .php. Am I not seeing what you are?
Forum: Installing WordPress
In reply to: Installation issuesI followed your recommendations, this is what I get from;
http://63.230.65.164/wp-admin/install.php
Not FoundThe requested URL /wp-admin/install.php was not found on this server.
Apache/2.2.8 (Ubuntu) Server at 63.230.65.164 Port 80This is what I get from this URL;
http://63.230.65.164/wordpress
Not FoundThe requested URL /wordpress was not found on this server.
Apache/2.2.8 (Ubuntu) Server at 63.230.65.164 Port 80Is it my PHP that is’nt running or do I have permission problems? How do I troubleshoot this?
Forum: Installing WordPress
In reply to: Installation issuesWhat is the best way to remove wordpress and start over?
Forum: Installing WordPress
In reply to: Installation issuesThis is what I get when I use thecomingdays.com/wp-admin/install.php
Not Found
The requested URL /wp-admin/install.php was not found on this server.
Apache/2.2.8 (Ubuntu) Server at thecomingdays.com Port 80This is what I get if I use thecomingdays.com/wordpress/wp-admin/install.php;
Warning: require_once(/etc/wordpress/wp-settings.php) [function.require-once]: failed to open stream: No such file or directory in /etc/wordpress/wp-config.php on line 43
Fatal error: require_once() [function.require]: Failed opening required ‘/etc/wordpress/wp-settings.php’ (include_path=’.:/usr/share/php:/usr/share/pear’) in /etc/wordpress/wp-config.php on line 43