phpmonkey
|
| Posted: 08/16/2002, 12:13 PM |
|
i am:
on ccs 1.0.6
using php & templates
i have the following structure:
/header
/footer
/index
/caledar/index
when i add a link to the header or the index to
"/calendar/index" it does not link to into the calendar folder. it links to the main index. rather, it simply leaves out '/calendar/' in the link.
here are my link properties (the applicable one's, anyhow):
Name: Calendar
Content: Text
Href Type: Page
Source/Parameters: calendar\index.php
Convert URL To: Aboslute
Preserve Paramaters: None
here is the code it generates:
$this->Calendar = new clsControl(ccsLink, "Calendar", "Calendar", ccsText, "", CCGetRequestParam("Calendar", ccsGet));
$this->Calendar->Page = ServerURL ."index.php";
shouldn't it read:
$this->Calendar = new clsControl(ccsLink, "Calendar", "Calendar", ccsText, "", CCGetRequestParam("Calendar", ccsGet));
$this->Calendar->Page = ServerURL ."/calendar/index.php";
what gives? i have gone as far as to recreate my entire application and the problem still exists.
help?
|
|
|
 |
Alex Alexapolsky
|
| Posted: 08/17/2002, 5:08 AM |
|
First of all please upgrade to the latest CCS (1.0.7) available at this site
and let us know if the problem persists. Available at http://www.codecharge.com/download/files/CCStudio1_0.exe
|
|
|
 |
|