Recent Topics

1 Sep 11, 2013 18:35    

Hey all,
I'm using b2evo 5.0.5 on a Godaddy Server. I was able to get it installed, but whenever I click a post I get "No Input file specified."
I've searched some of the forums here, but I'm not really getting anywhere with it.
I'm also not sure how much information you guys need, so if you need any more information let me know and I'll get it to you asap!

Thanks!
Jason

3 Sep 20, 2013 15:46

Hi @mgsolipa,
I activated debug mode, but I'm not getting any error file to show you, but I did get 2 print screens for you if that helps.

4 Sep 20, 2013 17:06

Check your .htacess file to enable extra path info processing,

OR change the blog URL configuration to NOT use extra path info.

5 Sep 20, 2013 17:31

# Apache configuration for b2evolution's base folder

# Lines starting with # are comments.

# Updated 2013-07-16



# PHP / SECURITY:

<IfModule mod_php5.c>

	# On some overly "secured" systems, the following may need to be added in each folder:

	# AddHandler application/x-httpd-php5 .php

	

	# The following will try to configure PHP in the way b2evolution would like it to be:

	php_flag register_globals Off

	php_flag display_errors On

	php_value error_reporting E_ALL

	

	# You may also need some of the following:

	# Increase memory limit

	# php_value memory_limit 256M

</IfModule>



# DISABLE LISTING FILES ON SERVER:

# Don't show directory contents (not desirable, especially for media folders)

Options -Indexes

# Note: if you have access to the command line of your server, it would probably

# be even better to type this:  a2dismod autoindex

# (This disables the directory listing module completely)



# DEFAULT DOCUMENT TO DISPLAY:

# In case no specific file is requested, we want to fall back to index.php

# In case some subdirectories are accessed, we want to display index.html

<IfModule mod_dir.c>

	DirectoryIndex index.php index.html

</IfModule>



# CLEAN URLS:

# The following will ensure you can pass extra params after the filename on the URL

AcceptPathInfo	On



# CATCH EVERYTHING INTO B2EVO: (even if no php file appears in the URL)

# The following will allow you to have a blog running right off the site root,

# using index.php as a stub but not showing it in the URLs.

# This will add support for URLs like:  http://example.com/2006/08/29/post-title

<IfModule mod_rewrite.c>

	RewriteEngine On



	# This line may be needed or not.

	# enabling this would prevent running in a subdir like /blog/index.php

	# RewriteBase /



	# Redirect anything that's not an existing directory or existing file to index.php:

	RewriteCond %{REQUEST_FILENAME} !-d

	RewriteCond %{REQUEST_FILENAME} !-f

	RewriteRule . index.php [L]

</IfModule>

Also, I changed it to not use Extra Paths, and now I get this error.
Fatal error: Call to a member function get() on a non-object in /home/content/53/8904453/html/blog/inc/skins/_skin.funcs.php on line 905

6 Sep 20, 2013 17:32

By golly I think I got it to work though!
I took the Extra Path off of everything and now it works.
Yayy!!!
Thanks guys!

7 Sep 20, 2013 17:41

Nope wait, I got 1 step further, but still isn't working once I get to the actual post.... For ex:
I can click where it was posted in, but I can't click on the actual post or check the feedback it is given.

If you want to troubleshoot and check it out the site URL is http://vpiindustries.com/blog/

8 Sep 20, 2013 18:09

Do you have access to the apache's error log? You got an error 500 but there is no more information.

9 Sep 20, 2013 18:30

To my knowledge, I am not using apache. I'm using GoDaddy as a host. If it's using apache, I'm not sure how I would go take a look at that one.


Form is loading...