Modules Show 404 Error

I'm working on a brand new install on a VPS.  I have just installed a few modules.  Each one said it had successfully installed when I installed them from the Admin panel.  The problem is that EVERY one of them produces a 404 error when I try to use it!

Photo's
Video's
Files
Sound's
Wall
Group's

Any help sure would be appreciated.

What little hair I have left is falling out at an ALARMING RATE!!  :) 

Quote · 10 Sep 2012

Add this in your .htaccess after RewriteEngine on

RewriteBase /

so much to do....
Quote · 10 Sep 2012

Thanks a lot for the tip but I'm afraid RewriteBase / is a no-go :(

Quote · 10 Sep 2012

When you go to "host tools" in admin does it show that mod_rewrite is enabled?

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
Quote · 10 Sep 2012

I'm afraid I can find no mention of "mod_rewrite".......

Admin Tools

 

Admin Tools

Quote · 10 Sep 2012

Many VPS's are not configured properly to run sites that require url rewriteing.

So if you find mod_rewrite is enabled you may find you will have to edit apaches config file. httpd.conf and look for all occurrences of AllowOverride None and change them to AllowOverride All

If your VPS is a managed VPS. In other words, your host was suppose to configure it for you when you purchased it,  then i would have them do it and check to make sure the rest of the server is properly setup for dolphin. http://www.boonex.com/trac/dolphin/wiki/DolTech

https://www.deanbassett.com
Quote · 10 Sep 2012

Yea, from your screenshot post. Mod_rewrite is there, so check the apache config file.

You also need to adjust settings in php.ini for post_max_size and upload_max_size which are currently to low.

https://www.deanbassett.com
Quote · 10 Sep 2012

 

Yea, from your screenshot post. Mod_rewrite is there, so check the apache config file.

You also need to adjust settings in php.ini for post_max_size and upload_max_size which are currently to low.

 I found 2 places in the config file which I edited to "All".  Didn't seem to change anything.

Quote · 10 Sep 2012

If there is ANYONE out there that would like to do a new install on the server for me and make sure it all works......

I WOULD GLADLY PAY YOU!!!

Quote · 10 Sep 2012

Did you restart Apache after you made the changes?

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
Quote · 10 Sep 2012

 

Did you restart Apache after you made the changes?

 I'm afraid you have mistaken me for someone that know's what they are doing Cry

I feel VERY lucky to have been able to modify the httpd.conf file without help but it was pure LUCK!

Quote · 10 Sep 2012

It's ok, you're starting out at the same place I (and most of the people here) did... you'll be a pro in no time. Do you have WHM/Cpanel on your server? If so log into WHM and scroll down on that left side menu to the bottom. There should be a section of services in one of the last blocks. If you click Apache it will give you the option to restart.

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
Quote · 10 Sep 2012

Thanks, I found the server restart and did it but no luck.

Quote · 11 Sep 2012

Checked with my host and they confirmed that mod_rewrite is turned on

Checked httpd.conf file.  All "AllowOverride" references are set to "All"

When I disable Friendly Permalinks in admin, everthing works fine except file uploads

I included "RewriteBase /" in .htaccess just after "RewriteEngine on"

Checked on the .htaccess file.  It is alive and well in my root dir and It reads the following....

Options -MultiViews -Indexes

 

<IfModule mod_php4.c> 

    php_flag register_globals Off

</IfModule>

<IfModule mod_php5.c> 

    php_flag allow_url_include Off

    php_flag register_globals Off

</IfModule>

 

<IfModule mod_rewrite.c>

RewriteEngine on

 

RewriteRule ^blogs/{0,1}$   modules/boonex/blogs/blogs.php [QSA,L]

RewriteRule ^blogs/all/{0,1}$  modules/boonex/blogs/blogs.php?action=all  [QSA,L]

RewriteRule ^blogs/all/([0-9]+)/([0-9]+)/{0,1}$  modules/boonex/blogs/blogs.php?page=$2&per_page=$1  [QSA,L]

RewriteRule ^blogs/top/{0,1}$   modules/boonex/blogs/blogs.php?action=top_blogs [QSA,L]

RewriteRule ^blogs/top/([0-9]+)/([0-9]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=top_blogs&page=$2&per_page=$1 [QSA,L]

RewriteRule ^blogs/top_posts/{0,1}$   modules/boonex/blogs/blogs.php?action=top_posts [QSA,L]

RewriteRule ^blogs/top_posts/([0-9]+)/([0-9]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=top_posts&page=$2&per_page=$1 [QSA,L]

RewriteRule ^blogs/tag/([^/.]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=search_by_tag&tagKey=$1 [QSA,L]

RewriteRule ^blogs/tag/{0,1}$   modules/boonex/blogs/blogs.php?action=search_by_tag&tagKey= [QSA,L]

RewriteRule ^blogs/posts/([^/.]+)/tag/([^/.]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=search_by_tag&tagKey=$2&ownerName=$1 [QSA,L]

RewriteRule ^blogs/posts/([^/.]+)/category/([^/.]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=show_member_blog&ownerName=$1&categoryUri=$2 [QSA,L]

RewriteRule ^blogs/entry/([^/.]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=show_member_post&postUri=$1 [QSA,L]

RewriteRule ^blogs/entry/{0,1}$    modules/boonex/blogs/blogs.php?action=show_member_post&postUri= [QSA,L]

RewriteRule ^blogs/posts/([^/.]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=show_member_blog&ownerName=$1 [QSA,L]

RewriteRule ^blogs/posts/{0,1}$   modules/boonex/blogs/blogs.php?action=show_member_blog&ownerName= [QSA,L]

RewriteRule ^blogs/posts/([^/.]+)/([0-9]+)/([0-9]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=show_member_blog&ownerName=$1&page=$3&per_page=$2 [QSA,L]

RewriteRule ^blogs/posts/([^/.]+)/category/([^/.]+)/([0-9]+)/([0-9]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=show_member_blog&ownerName=$1&categoryUri=$2&page=$4&per_page=$3 [QSA,L]

RewriteRule ^blogs/home/{0,1}$   modules/boonex/blogs/blogs.php?action=home [QSA,L]

RewriteRule ^blogs/all_posts/{0,1}$   modules/boonex/blogs/blogs.php?action=all_posts [QSA,L]

RewriteRule ^blogs/popular_posts/{0,1}$   modules/boonex/blogs/blogs.php?action=popular_posts [QSA,L]

RewriteRule ^blogs/featured_posts/{0,1}$   modules/boonex/blogs/blogs.php?action=featured_posts [QSA,L]

RewriteRule ^blogs/tags/{0,1}$   modules/boonex/blogs/blogs.php?action=tags [QSA,L]

RewriteRule ^blogs/show_calendar/{0,1}$   modules/boonex/blogs/blogs.php?action=show_calendar [QSA,L]

RewriteRule ^blogs/my_page/{0,1}$   modules/boonex/blogs/blogs.php?action=my_page&mode=main [QSA,L]

RewriteRule ^blogs/my_page/add/{0,1}$   modules/boonex/blogs/blogs.php?action=my_page&mode=add [QSA,L]

RewriteRule ^blogs/my_page/manage/{0,1}$   modules/boonex/blogs/blogs.php?action=my_page&mode=manage [QSA,L]

RewriteRule ^blogs/my_page/pending/{0,1}$   modules/boonex/blogs/blogs.php?action=my_page&mode=pending [QSA,L]

RewriteRule ^blogs/my_page/edit/([0-9]+)/{0,1}$  modules/boonex/blogs/blogs.php?action=edit_post&EditPostID=$1 [QSA,L]

RewriteRule ^blogs/member_posts/([0-9]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=show_member_blog&ownerID=$1 [QSA,L]

RewriteRule ^blogs/category/([^/.]+)/{0,1}$   modules/boonex/blogs/blogs.php?action=category&uri=$1 [QSA,L]

 

RewriteRule ^ads/{0,1}$  modules/boonex/ads/classifieds.php?Browse=1 [QSA,L]

RewriteRule ^ads/my_page/{0,1}$  modules/boonex/ads/classifieds.php?action=my_page [QSA,L]

RewriteRule ^ads/my_page/add/{0,1}$  modules/boonex/ads/classifieds.php?action=my_page&mode=add [QSA,L]

RewriteRule ^ads/my_page/edit/([0-9]+)/{0,1}$  modules/boonex/ads/classifieds.php?action=my_page&mode=add&EditPostID=$1 [QSA,L]

RewriteRule ^ads/my_page/edit/([0-9]+)/dimg/([0-9]+)/{0,1}$  modules/boonex/ads/classifieds.php?action=my_page&mode=add&EditPostID=$1&dimg=$2 [QSA,L]

RewriteRule ^ads/my_page/manage/{0,1}$  modules/boonex/ads/classifieds.php?action=my_page&mode=manage [QSA,L]

RewriteRule ^ads/my_page/pending/{0,1}$  modules/boonex/ads/classifieds.php?action=my_page&mode=pending [QSA,L]

RewriteRule ^ads/my_page/disapproved/{0,1}$  modules/boonex/ads/classifieds.php?action=my_page&mode=disapproved [QSA,L]

RewriteRule ^ads/cat/([^/.]+)/{0,1}$  modules/boonex/ads/classifieds.php?catUri=$1 [QSA,L]

RewriteRule ^ads/all/cat/([0-9]+)/([0-9]+)/([^/.]+)/{0,1}$  modules/boonex/ads/classifieds.php?catUri=$3&page=$2&per_page=$1 [QSA,L]

RewriteRule ^ads/subcat/([^/.]+)/{0,1}$  modules/boonex/ads/classifieds.php?scatUri=$1 [QSA,L]

RewriteRule ^ads/all/subcat/([0-9]+)/([0-9]+)/([^/.]+)/{0,1}$  modules/boonex/ads/classifieds.php?scatUri=$3&page=$2&per_page=$1 [QSA,L]

RewriteRule ^ads/entry/([^/.]+)/{0,1}$  modules/boonex/ads/classifieds.php?entryUri=$1 [QSA,L]

RewriteRule ^ads/tag/([^/.]+)/{0,1}$  modules/boonex/ads/classifieds_tags.php?tag=$1 [QSA,L]

RewriteRule ^ads/calendar/{0,1}$  modules/boonex/ads/classifieds.php?action=show_calendar [QSA,L]

RewriteRule ^ads/categories/{0,1}$  modules/boonex/ads/classifieds.php?action=show_categories [QSA,L]

RewriteRule ^ads/tags/{0,1}$  modules/boonex/ads/classifieds.php?action=tags [QSA,L]

RewriteRule ^ads/all_ads/{0,1}$  modules/boonex/ads/classifieds.php?action=show_all_ads [QSA,L]

RewriteRule ^ads/top_ads/{0,1}$  modules/boonex/ads/classifieds.php?action=show_top_rated [QSA,L]

RewriteRule ^ads/popular_ads/{0,1}$  modules/boonex/ads/classifieds.php?action=show_popular [QSA,L]

RewriteRule ^ads/featured_ads/{0,1}$  modules/boonex/ads/classifieds.php?action=show_featured [QSA,L]

 

RewriteRule ^search/tag/([^/.]+)/{0,1}$  search.php?Tags=$1 [QSA,L]

 

RewriteRule ^browse/([^/.]+)/([^/.]+)/([^/.]+)$ browse.php?sex=$1&age=$2&country=$3 [QSA,L]

 

RewriteRule ^m/(.*)$  modules/index.php?r=$1 [QSA,L]

 

RewriteRule ^forum/groups/(.*)$  modules/boonex/forum/$1?orca_integration=groups [QSA,L]

RewriteRule ^forum/events/(.*)$  modules/boonex/forum/$1?orca_integration=events [QSA,L]

RewriteRule ^forum/store/(.*)$  modules/boonex/forum/$1?orca_integration=store [QSA,L]

RewriteRule ^forum/$  modules/boonex/forum/index.php [QSA,L]

RewriteRule ^forum/(.*)$  modules/boonex/forum/$1 [QSA,L]

 

RewriteRule ^page/(.*)$  viewPage.php?ID=$1 [QSA,L]

 

RewriteCond %{REQUEST_FILENAME} -f [OR]

RewriteCond %{REQUEST_FILENAME} -d

RewriteRule .+ - [L]

RewriteRule ^([^/]+)$ profile.php?ID=$1 [QSA,L]

 

</IfModule>

 

AddType application/vnd.adobe.air-application-installer-package+zip .air

AddType application/x-shockwave-flash .swf

 
Can anyone see anything I've missed?
Quote · 11 Sep 2012

I notice that the "RewriteBase /" isn't in the htaccess you listed. Did you take it back out?

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
Quote · 11 Sep 2012

 

I notice that the "RewriteBase /" isn't in the htaccess you listed. Did you take it back out?

 No..RHIMPR was so kind as to go in and take a look around.  I assume he removed it because I know I didn't.  Never the less he got things working great!!  

Thanks so much for the concern and the willingness to help!!

Quote · 11 Sep 2012

No problem.. don't leave us hanging, what was causing it?

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
Quote · 11 Sep 2012

Well.....

I'm guessing it's because I don't have a domain name assigned to the site yet.  Here's what he said....

"Had to add   RewriteBase /~admin/    to the .htaccess file"

It made me physically sick!! :)

I can't thank RHIMPR enough!!!

Quote · 11 Sep 2012

Ohhh, that makes sense. Some things act weird when accessing the site through the account name instead of a domain name.

 

Glad he got it fixed for you though.

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
Quote · 11 Sep 2012
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.