Support Forums

5.1 install problems

This is a discussion on 5.1 install problems within the Installation Problems forums, part of the Technical Support Forums category; Hi I am having a problem with the 5.1 install. This is on a godaddy server. Everything appears to install ...


Go Back   68 Classifieds Forums > Technical Support Forums > Installation Problems

Reply
 
Thread Tools Display Modes
Old 02-03-2011, 02:38 AM   #1
Customer
 
redmtnex's Avatar
 
Join Date: Jan 2007
Posts: 68
Rep Power: 18
redmtnex is on a distinguished road
Default 5.1 install problems

Hi
I am having a problem with the 5.1 install. This is on a godaddy server. Everything appears to install correctly, I get no errors during the install. All the server checks have a green check mark. In the config.php I did have to change
Code:
$config['index_page'] = "index.php";
to
Code:
$config['index_page'] = "index.php?";
in order to get any pages to load. After the install I select the link to go to the control panel and it asks for my password but it never gets to the control panel. I just get a page with a header, a left navigation and a 404 error for the body. If I select any of the navigation the url reflects that I am on that page but only see the 404 error. I have it installed here, 404 - Page not Found | Toyota

Thanks
Greg
__________________
Toyota Motorhome Classifieds 4.1 Designer - Toyota Motorhome Forums Invision Power Board
redmtnex is offline   Reply With Quote
Old 02-03-2011, 03:17 AM   #2
All Hands On Deck
 
 
Join Date: Mar 2008
Posts: 3,003
Rep Power: 74
seymourjames is a jewel in the rough
Default

Do you have anything in your .htaccess file?
__________________
"The fool doth think he is wise, but the wise man knows himself to be a fool.".

TemplateCodes.com for 68 Classifieds Version 5 Themes and Version 4 Templates
seymourjames is online now   Reply With Quote
Old 02-03-2011, 11:13 AM   #3
Customer
 
redmtnex's Avatar
 
Join Date: Jan 2007
Posts: 68
Rep Power: 18
redmtnex is on a distinguished road
Default

I have a .htaccess file in the directory which holds the 4.2.1 installation but I believe it is to make Search Engine optimaization run correctly. There is no .htaccess file in the 5.01 directory. Root toyotamotorhome.com, 4.2.1 in classifieds dir, 5.01 in classified dir. A copy of the htaccess in the 4.2.1 dir is below.

Code:
# Author $Author: suzkaw $ (68 Classifieds)
# Version $Revision: 23 $
# Updated: $Date: 2009-11-30 14:59:55 -0500 (Mon, 30 Nov 2009) $
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
#index
RewriteRule ^index\.html$ index.php [NC,QSA]
#search
RewriteRule ^search\.html$ search.php [NC,QSA]
#categories
RewriteRule ^categories\.html$ category.php [NC,QSA]
RewriteRule ^categories/([0-9a-zA-Z_-]+)\.html$ category.php?cat=$1 [NC,QSA]
RewriteRule ^categories/([0-9a-zA-Z_-]+)/page/([0-9]+)\.html$ category.php?cat=$1&page=$2 [NC,QSA]
#cat sorting
RewriteRule ^categories/([0-9a-zA-Z_-]+)/sort/([0-9a-zA-Z_-]+)/order/(desc|asc)\.html$ category.php?cat=$1&sortfield=$2&sortorder=$3 [NC,QSA]
RewriteRule ^categories/([0-9a-zA-Z_-]+)/sort/([0-9a-zA-Z_-]+)/order/(desc|asc)/page/([0-9]+)\.html$ category.php?cat=$1&sortfield=$2&sortorder=$3&page=$4 [NC,QSA]
#contactus
RewriteRule ^contactus\.html$ contactus.php [NC,QSA]
#view listing
RewriteRule ^listing/([0-9]+)/([0-9a-zA-Z_-]+)\.html$ viewlisting.php?view=$1 [NC,QSA]
#view member
RewriteRule ^member/([0-9]+)\.html$ viewmember.php?member=$1 [NC,QSA]
#pages
RewriteRule ^page/([0-9]+)\.html$ pages.php?page=$1 [NC,QSA]
RewriteRule ^page/([0-9a-zA-Z_-]+)\.html$ pages.php?pg=$1 [NC,QSA]
#top lisitngs
RewriteRule ^listings/(featured|new|top)\.html$ toplistings.php?pg=$1 [NC,QSA]
RewriteRule ^listings/(featured|new|top)/([0-9]+)\.html$ toplistings.php?pg=$1&page=$2 [NC,QSA]
#user
RewriteRule ^userindex\.html$ userindex.php [NC,QSA]
RewriteRule ^userjoin\.html$ userjoin.php [NC,QSA]
RewriteRule ^usercheckout\.html$ usercheckout.php [NC,QSA]
RewriteRule ^userbrowselistings\.html$ userbrowselistings.php [NC,QSA]
RewriteRule ^useraccountmodify\.html$ useraccountmodify.php [NC,QSA]
RewriteRule ^logout\.html$ logout.php [NC,QSA]
</IfModule>
__________________
Toyota Motorhome Classifieds 4.1 Designer - Toyota Motorhome Forums Invision Power Board
redmtnex is offline   Reply With Quote
Old 02-03-2011, 11:24 AM   #4
Customer
 
redmtnex's Avatar
 
Join Date: Jan 2007
Posts: 68
Rep Power: 18
redmtnex is on a distinguished road
Default

Might note something else here also. The included readme file directs you to here for installation instructions
Code:
http://v5.68classifieds.com/user_guide/installation/instructions
The instructions tell you to use this url structure to access the installation script
Code:
www.yoursite.com/index.php/setup
That would not work for me, I had to use
Code:
www.yoursite.com/setup/index.php
in order to run the installation. Is that a error in the instructions or an error on the site?
__________________
Toyota Motorhome Classifieds 4.1 Designer - Toyota Motorhome Forums Invision Power Board
redmtnex is offline   Reply With Quote
Old 02-03-2011, 11:40 AM   #5
All Hands On Deck
 
 
Join Date: Mar 2008
Posts: 3,003
Rep Power: 74
seymourjames is a jewel in the rough
Default

Normally it is this
HTML Code:
http://www.yoursite.com/index.php/setup
but you are in a a subdirectory called classifieds. So I thnk it is this
HTML Code:
http://www.yoursite.com/classifieds/index.php/setup
However, this does not work. I notice that you have to use the ? in your urls which is silly. I just got to the set up screen like this

HTML Code:
http://www.yoursite.com/classifieds/index.php?/setup
What does your hosting provider say. Why are you put the ? into your config file to make

HTML Code:
config['index_page'] = "index.php?";
__________________
"The fool doth think he is wise, but the wise man knows himself to be a fool.".

TemplateCodes.com for 68 Classifieds Version 5 Themes and Version 4 Templates

Last edited by seymourjames; 02-03-2011 at 11:43 AM.
seymourjames is online now   Reply With Quote
Old 02-03-2011, 01:33 PM   #6
Staff
 
Join Date: Mar 2006
Posts: 530
Rep Power: 30
Blair will become famous soon enough
Default

Did you upload your v5 files to a subfolder that you created or did you upload to the same folder as your v4 installation?
__________________
Blair
68C Staff

68C Downloads | Report a Bug | Knowledge Base
If you have a current support subscription, you can Submit a Support Ticket
Blair is offline   Reply With Quote
Old 02-03-2011, 07:58 PM   #7
Customer
 
redmtnex's Avatar
 
Join Date: Jan 2007
Posts: 68
Rep Power: 18
redmtnex is on a distinguished road
Default

Quote:
Originally Posted by seymourjames
Normally it is this
HTML Code:
http://www.yoursite.com/index.php/setup
but you are in a a subdirectory called classifieds. So I thnk it is this
HTML Code:
http://www.yoursite.com/classifieds/index.php/setup
However, this does not work. I notice that you have to use the ? in your urls which is silly. I just got to the set up screen like this

HTML Code:
http://www.yoursite.com/classifieds/index.php?/setup
What does your hosting provider say. Why are you put the ? into your config file to make

HTML Code:
config['index_page'] = "index.php?";
Adding the ? after .php here Installation Troubleshooting | 68 Classifieds Documentation
If I do not add the ? I can not even load a page.

4.2.1 is in the subdirectory classifieds
5.01 is is the subdirectory classified

So yes my path is www.yoursite.com/classified/ for the 5.02 install
__________________
Toyota Motorhome Classifieds 4.1 Designer - Toyota Motorhome Forums Invision Power Board
redmtnex is offline   Reply With Quote
Old 02-03-2011, 09:12 PM   #8
68 Evangelist & Developer
 
 
Join Date: Jan 2007
Location: Pennsylvania, USA
Posts: 2,119
Rep Power: 63
Mike-N-Tosh is just really nice Mike-N-Tosh is just really nice
Default

So it seems that your server as documented in the user guide, is not set up for the path_info variable and adding the ? to your index.php seems to work.

It doesn't seem that you actually changed that in the config file however, because all of the links show as index.php/ which we've established does not work on your server configuration.
__________________
Mike-N-Tosh
IndianaPC.org - A community website (v3.1.10 Developer - heavily modified & used as the CMS)
Sandbox [localhost(v3.1.10, v4.0.9, 4.1.10,4.2,5.0)] for development and customization
Visit My blog: reviews, tips, tricks, tutorials and my store with Templates, Mods & Docs
Web Hosting | Web Design & Development | 68 Classifieds Customizations
I am not a 68C employee, just a user and try to help out
Mike-N-Tosh is offline   Reply With Quote
Old 02-04-2011, 02:08 AM   #9
Customer
 
redmtnex's Avatar
 
Join Date: Jan 2007
Posts: 68
Rep Power: 18
redmtnex is on a distinguished road
Default

Quote:
Originally Posted by Mike-N-Tosh
So it seems that your server as documented in the user guide, is not set up for the path_info variable and adding the ? to your index.php seems to work.

It doesn't seem that you actually changed that in the config file however, because all of the links show as index.php/ which we've established does not work on your server configuration.
That was it. I thought I had changed and uploaded it but I guess in all the re-install etc I did it did not get changed. Just changed it and now there is a site to see! Thank you
__________________
Toyota Motorhome Classifieds 4.1 Designer - Toyota Motorhome Forums Invision Power Board
redmtnex is offline   Reply With Quote
Old 02-04-2011, 02:16 AM   #10
Customer
 
redmtnex's Avatar
 
Join Date: Jan 2007
Posts: 68
Rep Power: 18
redmtnex is on a distinguished road
Default

I may have spoke to soon. Looks like everything except the home page works. Still get a 404. I deleted my IE files and history, closed and resterted IE but still a 404
__________________
Toyota Motorhome Classifieds 4.1 Designer - Toyota Motorhome Forums Invision Power Board
redmtnex is offline   Reply With Quote
Reply

Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
New Install Problems kidder Installation Problems 3 10-06-2009 07:44 PM
Install redstar Technical Support 2 05-04-2009 07:26 AM
install Mr. G. Pre Sales Questions 1 11-26-2007 09:20 PM
install? Help Pre Sales Questions 1 03-06-2007 09:35 PM
Install restrictions and 68classifieds server problems. pd58m Pre Sales Questions 3 05-05-2006 12:54 PM


All times are GMT -4. The time now is 11:43 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2011, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0