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; I take that back. It is not silly if it works using the ? Its the first time I ever ...


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

Reply
 
Thread Tools Display Modes
Old 02-04-2011, 05:48 AM   #11
All Hands On Deck
 
 
Join Date: Mar 2008
Posts: 3,003
Rep Power: 74
seymourjames is a jewel in the rough
Default

I take that back. It is not silly if it works using the ? Its the first time I ever came across the need to do that.
__________________
"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 offline   Reply With Quote
Old 02-04-2011, 09:24 AM   #12
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

Quote:
Originally Posted by redmtnex
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
It seems that with having to have that setting set in that fashion, it is not finding your home page without specifying it. It does work when you do, like this:

index.php?/home

Which is how all other pages on the site are defined within the url.
__________________
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, 12:29 PM   #13
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
It seems that with having to have that setting set in that fashion, it is not finding your home page without specifying it. It does work when you do, like this:

index.php?/home

Which is how all other pages on the site are defined within the url.
OK I can get to the home page that way.
Thank you GoDaddy for making things difficult. Should I contact GoDaddy and explain the dilemma to them? Maybe they have a generic fix for this.
__________________
Toyota Motorhome Classifieds 4.1 Designer - Toyota Motorhome Forums Invision Power Board
redmtnex is offline   Reply With Quote
Old 02-04-2011, 03:04 PM   #14
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

Quote:
Originally Posted by redmtnex
OK I can get to the home page that way.
Thank you GoDaddy for making things difficult. Should I contact GoDaddy and explain the dilemma to them? Maybe they have a generic fix for this.
I had a feeling you were on GoDaddy and I will spare everyone from my rant about them.

It certainly wouldn't hurt to contact their support, as they do many, many things in a non-standard, non-traditional way. Perhaps, they have a way for you to either have them turn on the feature or a method as Hostgator has to include your own php.ini file to do it yourself.
__________________
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-05-2011, 12:42 PM   #15
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
I had a feeling you were on GoDaddy and I will spare everyone from my rant about them.

It certainly wouldn't hurt to contact their support, as they do many, many things in a non-standard, non-traditional way. Perhaps, they have a way for you to either have them turn on the feature or a method as Hostgator has to include your own php.ini file to do it yourself.
I can add my own php.ini file and there presently is one in the root folder. In fact I have two, one for php5 and another for php4.
Here is the one for php5 (I have 5.01 set to use php5)


Code:
[Zend]
zend_extension=/home/content/r/e/d/myaccount/html/ioncube/ioncube_loader_lin_5.2.so
And the php4 version

Code:
register_globals = off
allow_url_fopen = off
expose_php = Off
max_input_time = 60
variables_order = "EGPCS"
extension_dir = ./
upload_tmp_dir = /tmp
precision = 12
SMTP = relay-hosting.secureserver.net
url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset="
[Zend]
zend_extension=/home/content/r/e/d/myaccount/html/ioncube/ioncube_loader_lin_4.4.so zend_extension=/usr/local/zo/ZendExtensionManager.so
zend_extension=/usr/local/zo/4_3/ZendOptimizer.so
__________________
Toyota Motorhome Classifieds 4.1 Designer - Toyota Motorhome Forums Invision Power Board
redmtnex is offline   Reply With Quote
Old 02-05-2011, 02:11 PM   #16
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

Before you even start to mess with the php.ini file, I would like to know if you have actually followed the troubleshooting steps as posted in the 68 Classifieds v5 documentation.

Specifically, did you actually try and test each of the different settings available for the URI Protocol?
PHP Code:
/*
|--------------------------------------------------------------------------
| URI PROTOCOL
|--------------------------------------------------------------------------
|
| This item determines which server global should be used to retrieve the
| URI string.  The default setting of "AUTO" works for most servers.
| If your links do not seem to work, try one of the other delicious flavors:
|
| 'AUTO'            Default - auto detects
| 'PATH_INFO'        Uses the PATH_INFO
| 'QUERY_STRING'    Uses the QUERY_STRING
| 'REQUEST_URI'        Uses the REQUEST_URI
| 'ORIG_PATH_INFO'    Uses the ORIG_PATH_INFO
|
*/
$config['uri_protocol']    = "AUTO"
Did you actually contact the GoDaddy support and ask specifically regarding this issue as it would seem very odd (yes, even for GoDaddy) that they would not support this or upon request make a setting change to support this. This is commonly used in most open source and commercial php scripts.
__________________
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-05-2011, 03:31 PM   #17
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
Before you even start to mess with the php.ini file, I would like to know if you have actually followed the troubleshooting steps as posted in the 68 Classifieds v5 documentation.

Specifically, did you actually try and test each of the different settings available for the URI Protocol?
PHP Code:
/*
|--------------------------------------------------------------------------
| URI PROTOCOL
|--------------------------------------------------------------------------
|
| This item determines which server global should be used to retrieve the
| URI string.  The default setting of "AUTO" works for most servers.
| If your links do not seem to work, try one of the other delicious flavors:
|
| 'AUTO'            Default - auto detects
| 'PATH_INFO'        Uses the PATH_INFO
| 'QUERY_STRING'    Uses the QUERY_STRING
| 'REQUEST_URI'        Uses the REQUEST_URI
| 'ORIG_PATH_INFO'    Uses the ORIG_PATH_INFO
|
*/
$config['uri_protocol']    = "AUTO"
Did you actually contact the GoDaddy support and ask specifically regarding this issue as it would seem very odd (yes, even for GoDaddy) that they would not support this or upon request make a setting change to support this. This is commonly used in most open source and commercial php scripts.
I had tried every protocol when I first had problems but forgot I had, sorry, I am presently experiencing a good sinus infection and the brain is a bit foggy. But I had tried them with out adding the ? to this string
Code:
$config['index_page'] = "index.php";
. I just ran through the entire possibility list again, first with out the ? then with it. The site now works with
Code:
$config['uri_protocol']	= "QUERY_STRING";
and
Code:
$config['index_page'] = "index.php?";
__________________
Toyota Motorhome Classifieds 4.1 Designer - Toyota Motorhome Forums Invision Power Board
redmtnex is offline   Reply With Quote
Old 02-05-2011, 04:30 PM   #18
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

Just goes to show that going through proper troubleshooting steps in order is always best. Glad you got it working!
__________________
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-05-2011, 05:15 PM   #19
Customer
 
redmtnex's Avatar
 
Join Date: Jan 2007
Posts: 68
Rep Power: 18
redmtnex is on a distinguished road
Default

Mike-N-Tosh thank you for pointing my foggy brain in the right direction. Now I am trying to import the 4.2.1 database and it keeps telling me it can't connect to the database. I probably should not be trying to do this today. One thing I have always found useful with instructions is examples of what goes in what box in the correct format. I am obviously entering something incorrectly even though I know the information I am entering is the right info.
__________________
Toyota Motorhome Classifieds 4.1 Designer - Toyota Motorhome Forums Invision Power Board

Last edited by redmtnex; 02-05-2011 at 05:22 PM.
redmtnex is offline   Reply With Quote
Old 02-05-2011, 06:18 PM   #20
Customer
 
redmtnex's Avatar
 
Join Date: Jan 2007
Posts: 68
Rep Power: 18
redmtnex is on a distinguished road
Default

Quote:
Originally Posted by redmtnex
Mike-N-Tosh thank you for pointing my foggy brain in the right direction. Now I am trying to import the 4.2.1 database and it keeps telling me it can't connect to the database. I probably should not be trying to do this today. One thing I have always found useful with instructions is examples of what goes in what box in the correct format. I am obviously entering something incorrectly even though I know the information I am entering is the right info.
Well it seems a workaround to do the import is to import the 4.2.1 database into the 5.0.1 database via phpmyadmin then use the import wizard in 5.0.1. That worked I think. Now to sort out all of the listings images into the correct new directories.
__________________
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 01:42 AM.


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