Hello!
I have created some pages but when previewed and clicked on in the nav, I get %3Ca%20href= at the end of the URL and also a blank page with an error notice that says:
MySource Notice
URL "http://hosting.hosting24.com.au/
I have checked everywhere and played with lots of settings but can't seem to fix it. The web paths all say what they should in the back end.
Any help would be grateful!
Can you post your Design parsefile so we can see how the navigation is being built? Also, does your Site asset have the correct URL applied? You may also need to check the URL of the Designs, Media and Users folders to make sure they are correct too.
Thanks Avi, you solved it already. It was the navigation design I had messed up. I was using this:
[codebox] <MYSOURCE_AREA id_name="top_menu" design_area="menu_normal">
<MYSOURCE_SET name="level" value="top"/>
<ul><MySource_ASSET>
<div id="globalLink"> <a class="glink" href="<MySource_PRINT var="asset_name_linked" /></div>
</a></li>
</MySource_ASSET></ul>
</MYSOURCE_AREA>[/codebox]
When I should have had:
[codebox] <MySource_AREA id_name="top_menu" design_area="menu_normal">
<MySource_SET name="level" value="top" />
<MySource_ASSET>
<li>
<div id="globalLink"><a class="glink" href="<MySource_PRINT var='asset_link' />" title="<MySource_PRINT var="asset_short_name" />"><MySource_PRINT var="asset_short_name" /></a></div></li>
</MySource_ASSET>
</MySource_AREA>[/codebox]
I guess it wasn't seeing each menu item or something.
Thanks as always!