Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
I created a plan old page node and put the following code in it and it won't print the $q->february or the $q->january variables. Why aren't the variables interpolating?
<?php
$results = db_query("SELECT * FROM OMOSLS LIMIT 5");
while ($q = db_fetch_object($results)) {
print "when did alison get so stupid" . $q->february . "$q->january";
}
?>
I am setting up a site in which several people will be posting informational articles. They are letting these articles be read and used for free but would like people to register in order to read them. (I am setting these as "Stories" in Drupal.)
The issue is that there are other pages that should be always available whether registered or not (such as bios, contact us, and the home page and I am setting these as "Pages" in Drupal).
We are getting some problems with pathauto and category module upgrade, I would like to test of it works without pathauto paths... Is it possible to erase only the aliases that were created by pathauto??
If not is the only solution deleting them one by one?? Maybe it would be faster directly in the db??
I've searched the threads and can find no solution. I have a fresh install of 4.7.2. I've uploaded the e-commerce module and see everything in place. On clicking a link from the "create content" page, the site returns a blank page (no source code). Sometimes this even happens on clicking create new page. Although clearing the browser cache seems to fix that for a while.
Does anyone know if there's a way to have two sorts of Audio modules running on one drupal installation? What I mean is i'd like to have one system where I upload audio files as the site owner(with no size limitations), but a seperate system where users get to upload remixes and are capped off at say 10 megs and their uploads go to a certain place on the site?