Dear All,

I installed CiviCRM with Drupal 7.10. It works fine with other operation but I have a problem:

I created CiviCRM Profile and I try to put the link in path in the back to make the menu for the Profile.

In the backend I put as this URL civicrm/profile/create?reset=1&gid=10 after I save it generate to node/5.
At the frontend it return to civicrm/profile/create%3Freset%3D1%26gid%3D10

Why is the ? and = changes to %3F and %3D respectively.
What is the correct approach to do this.

Thanks in advances!

Comments

nitin_kumar’s picture

Hi, I'm new in drupal and also facing same problem. I want to change my rss feed url like,
http://localhost/drupal/hot_technology/feed?source=rss_hot_technology
but its coming like,
http://localhost/drupal/hot_technology/feed%3Fsource%3Drss_hot_technology.
how to do this? plz help someone.

nitin_kumar’s picture

Hay, I have solved this... just found the place from where feed url assign to my RSS icon in page.tpl.php here blow this I did

$feed_icon= str_replace (array('%3F', '%3D'), array('?', '='), $feed_icon);

now its working very fine.