Zen Cart Logo
Forums / General Questions / Error unable to determine page link PLEASE HELP!!!!!!!

Error unable to determine page link PLEASE HELP!!!!!!!

Views: 2,544

Results 21 to 29 of 29
5 Apr 2011, 5:54 PM
#21
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Error unable to determine page link PLEASE HELP!!!!!!!

Filezilla has reasonable documentation of how to use program..
i.e.
http://filezilla-project.org/client_screenshots.php

5 Apr 2011, 7:02 PM
#22
ladymis1 avatar

ladymis1

New Zenner

Join Date:
Oct 2010
Posts:
13
Plugin Contributions:
0

Re: Error unable to determine page link PLEASE HELP!!!!!!!

I understand how to transfer files now - am I transferring from my server to my local - if so, I dont understand why I would do this? Would I not still have the same problem?

many thanks

8 Apr 2011, 9:18 PM
#23
ladymis1 avatar

ladymis1

New Zenner

Join Date:
Oct 2010
Posts:
13
Plugin Contributions:
0

Re: Error unable to determine page link PLEASE HELP!!!!!!!

Hi Kobra

Ok, so I have now downloaded filezilla, transferred the ht.access file to my local and deleted it from my server however still getting error message "unable to determine page link". I can however access the htaccess file
The following is a copy of the contents of the htaccess file

#

# @copyright Copyright 2003-2010 Zen Cart Development Team

# @license [url]http://www.zen-cart.com/license/2_0.txt[/url] GNU Public License V2.0

# @version $Id: .htaccess 16111 2010-04-29 22:39:02Z drbyte $

#

# This is used with Apache WebServers

#

# The following blocks direct HTTP requests to all filetypes in this directory recursively, except certain approved exceptions

# It also prevents the ability of any scripts to run. No type of script, be it PHP, PERL or whatever, can normally be executed if ExecCGI is disabled.

# Will also prevent people from seeing what is in the dir. and any sub-directories

#

# For this to work, you must include either 'All' or at least: 'Limit' and 'Indexes' parameters to the AllowOverride configuration in your apache/conf/httpd.conf file.

# Additionally, if you want the added protection offered by the OPTIONS directive below, you'll need to add 'Options' to the AllowOverride list, if 'All' is not specified. 

# Example:

#<Directory "/usr/local/apache/htdocs">

#  AllowOverride Limit Options Indexes

#</Directory>

###############################

DirectoryIndex index.php



# deny *everything*

<FilesMatch ".*\..*">

  Order Allow,Deny

  Deny from all

</FilesMatch>



# but now allow just *certain* necessary files:

<FilesMatch "(^$|^favicon.ico$|.*\.(php|js|css|jpg|gif|png)$)">

  Order Allow,Deny

  Allow from all

</FilesMatch>



IndexIgnore */*





# The following makes adjustments to the SSL protocol for Internet Explorer browsers

<IfModule mod_setenvif.c>

  <IfDefine SSL>

    SetEnvIf User-Agent ".*MSIE.*" \

             nokeepalive ssl-unclean-shutdown \

             downgrade-1.0 force-response-1.0

  </IfDefine>

</IfModule>



# Fix certain PHP values



#<IfModule mod_php4.c>

#  php_value session.use_trans_sid 0

#  php_value register_globals 1

#</IfModule>



# to turn off register_globals

# php_value register_globals 0


#turn off X-PHP-Originating-Script header when sending emails from admin
#uncomment to activate:
# php_flag mail.add_x_header Off


any ideas?? Getting desperate now 

thanks in advance

Also found another htaccess file - contents as follows

# -FrontPage-
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthUserFile /home/ladymis1/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/ladymis1/public_html/_vti_pvt/service.grp
ErrorDocument 404 /404.shtml
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
AuthName ladymischief.co.uk

any ideas?

thanks

9 Apr 2011, 8:14 AM
#24
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Error unable to determine page link PLEASE HELP!!!!!!!

So it is not a htaccess file issue
Transfer your /includes/configure.php file to your pc
open it with a plain text editor note pad or your code editor

Post the contents here BUT XX out the DB user & pass

10 Apr 2011, 10:16 PM
#25
ladymis1 avatar

ladymis1

New Zenner

Join Date:
Oct 2010
Posts:
13
Plugin Contributions:
0

Re: Error unable to determine page link PLEASE HELP!!!!!!!

Hi there

File contents are as follows:

<?php /** * @package Configuration Settings circa 1.3.9 * @copyright Copyright 2003-2010 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license <http://www.zen-cart.com/license/2_0.txt> GNU Public License V2.0 * File Built by zc_install on 2010-12-13 07:48:21 */ /*************** NOTE: This file is similar, but DIFFERENT from the "admin" version of configure.php. ***********/ /*************** The 2 files should be kept separate and not used to overwrite each other. ***********/ // Define the webserver and path parameters // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com define('HTTP_SERVER', 'http://ladymischief.co.uk'); define('HTTPS_SERVER', 'https://ladymischief.co.uk'); // Use secure webserver for checkout procedure? define('ENABLE_SSL', 'false'); // NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes! // * DIR_WS_* = Webserver directories (virtual/URL) // these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder) define('DIR_WS_CATALOG', '/'); define('DIR_WS_HTTPS_CATALOG', '/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/'); define('DIR_WS_TEMPLATES', DIR_WS_INCLUDES . 'templates/'); define('DIR_WS_PHPBB', '/'); // * DIR_FS_* = Filesystem directories (local/physical) //the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/ define('DIR_FS_CATALOG', '/home/ladymis1/public_html/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); define('DIR_WS_UPLOADS', DIR_WS_IMAGES . 'uploads/'); define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_UPLOADS); define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/'); // define our database connection define('DB_TYPE', 'mysql'); define('DB_PREFIX', 'zen_'); define('DB_SERVER', 'localhost'); define('DB_SERVER_USERNAME', 'XXXX); define('DB_SERVER_PASSWORD', 'XXXXX'); define('DB_DATABASE', XXX); define('USE_PCONNECT', 'false'); define('STORE_SESSIONS', 'db'); // for STORE_SESSIONS, use 'db' for best support, or '' for file-based storage // The next 2 "defines" are for SQL cache support. // For SQL_CACHE_METHOD, you can select from: none, database, or file // If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache // or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder // ie: /path/to/your/webspace/public_html/zen/cache -- leave no trailing slash define('SQL_CACHE_METHOD', 'none'); define('DIR_FS_SQL_CACHE', '/home/ladymis1/public_html/cache'); // EOF thanks in advance
11 Apr 2011, 4:42 AM
#26
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Error unable to determine page link PLEASE HELP!!!!!!!

Use your FTP and view the "FILES" you have direcctly under public_html

You should have these
index.php
install.txt
ipn_main_handler.php
license.txt
mcs_learn_more.html
nddbc.html
page_not_found.php
robots_example.txt
vbv_learn_more.html

I suspect that you are missing one or more or that one or more might be corrupt(check for any with "0" byte size)

11 Apr 2011, 8:49 PM
#27
ladymis1 avatar

ladymis1

New Zenner

Join Date:
Oct 2010
Posts:
13
Plugin Contributions:
0

Re: Error unable to determine page link PLEASE HELP!!!!!!!

Hi

Have checked all of these files and file sizes - all are present and none showing 0 bytes

Here is the full list of all files that directly under public_html - not sure if this is useful or not - can you see anything here that may be the cause?

Appreciate your help so far, this is driving me mental!!!

public_html/.rvsPublish.ini.php[/url]
public_html/404.shtml[/url]
public_html/_vti_inf.html[/url]
public_html/About-us.php[/url]
public_html/Adult-Toys.php[/url]
public_html/Catalogue.php[/url]
public_html/Club-Wear.php[/url]
public_html/colorConfig.ini.php[/url]
public_html/Contact-Us.php[/url]
public_html/Corsets--and--Basques.php[/url]
public_html/error_log[/url]
public_html/Fancy-Dress.php[/url]
public_html/Fantasy-Wear.php[/url]
public_html/fantversion.php[/url]
public_html/FAQ.php[/url]
public_html/Footwear.php[/url]
public_html/index.php[/url]
public_html/install.txt[/url]
public_html/ipn_main_handler.php[/url]
public_html/justhost.swf[/url]
public_html/Leg-Avenue-Costumes.php[/url]
public_html/Leg-Avenue-Lingerie.php[/url]
public_html/Leg-Avenue.php[/url]
public_html/license.txt[/url]
public_html/Lingerie.php[/url]
public_html/Links.php[/url]
public_html/mcs_learn_more.html[/url]
public_html/Navigator.css[/url]
public_html/nddbc.html[/url]
public_html/Order.php[/url]
public_html/page_not_found.php[/url]
public_html/pathway.css[/url]
public_html/postinfo.html[/url]
public_html/Products.php[/url]
public_html/robots_example.txt[/url]
public_html/rvsDbBackup.sql[/url]
public_html/rvsformdata_908b418c3ebf1f5a1984165d3a33b55c.txt[/url]
public_html/rvsMasterTemplate.php[/url]
public_html/rvthankform_908b418c3ebf1f5a1984165d3a33b55c.php[/url]
public_html/sifr-addons.js[/url]
public_html/sIFR-print.css[/url]
public_html/sIFR-screen.css[/url]
public_html/sifr.js[/url]
public_html/Stockings.php[/url]
public_html/style.css[/url]
public_html/template_info.php[/url]
public_html/templatespecific.css[/url]
public_html/vbv_learn_more.html[/url]
public_html/Verdana.css[/url]
public_html/version.txt[/url]

11 Apr 2011, 10:14 PM
#28
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
177

Re: Error unable to determine page link PLEASE HELP!!!!!!!

lots of files there that have nothing to do with Zen Cart.

11 Apr 2011, 11:40 PM
#29
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Error unable to determine page link PLEASE HELP!!!!!!!

This and others display properly

I suspect that your index.php is bad or not the correct file or???

http://ladymischief.co.uk/vbv_learn_more.html