Totally Zenned
- Join Date:
- Jan 2007
- Location:
- Los Angeles, California, United States
- Posts:
- 10,011
- Plugin Contributions:
- 3
Wordpress On ZC [Support Thread]
proteus:
Can anyone give me an idea of what the problem is based on the information i have provided?You have indeed missed it.. Your ABSPATH is wrong because you entered a relative path based on your site's URL. The ABSOLUTE PATH (ABSPATH) that is needed in the wp-config.php file is the actual location on your hosts webserver where your files are located. You can find this by opening your ZenCart configure.php file. Then go back to the posts I suggested or read niccol's post.. It explains what to do next..
Absolute path
Also known as the full path, the absolute path is a path that contains the root directory and all other sub directories required to get into the directory you're currently in or wish to get to. Below is a basic example of a generic path and an absolute path.
Absolute path:
/home/users/c/computerhope/public_html/cgi-binNon absolute path (relative path):
public_html/cgi-bin As can be seen from the above example, the absolute path contains the full path instead of a few directories contained within the absolute path.Read more: http://www.computerhope.com/jargon/a/absopath.htm#ixzz0HVnuFoPv&C
More info..
<?php $path = getcwd(); echo "Your Absoluthe Path is: "; echo $path;?>To find out what your absolute path is[1], copy the following code into a text editor (i.e. Notepad, TextEdit etc), save the file as a .php naming it whatever you want (i.e anyfilename.php.).
Using your FTP software, ftp the file you have just created to your root folder. Open a web browser and type in http://www.yourdomain.com/filename.php.
>
> ***IMPORTANT: For security reasons, delete this file as soon as you have ascertained the information you require.***
Hope this all helps..