I have tried deleting the site cache, disabling every extra module and re-indexing the whole site. I just can't get the site wide search to return any results.
I created a website YEARS AGO for a friend. So long ago I can barely remember how I did it. All of a sudden the website is showing these message at the top of the gallery I created for her:
I am trying to import an iFrame to our Drupal server, and would like to be able to create a theme that displays a blank page (no page title, menus, or anything like that). I created a new custom theme, and created the page.tpl.php file such that only the content (none of the custom styles or formatting) is displayed. I then used the themekey module to select which pages I'd like the blank theme to apply to.
Hi, I'm having an interest cookie issue in drupal6.
The logic is kind of simple. I need to use the cookie if user is registered from certain pages. So in module's preprocess_page function, I did this
if ($_GET['q'] == 'facebookref') {
setcookie('fb_reference', '1'); // or setcookie('fb_reference', '1', time() + 3600);
}
If a visitor registers from this page, the cookie will be set. Then, after user registers and complete the profile form, I will redirect user to a different page if that cookie is found.