Hi,
I've upgraded my drupal from 5 to 6.
All Posts are still there/listed, but some (only the latest ones) show up only in the list (/admin/content/node).
If I click the edit or view link, I am getting a 404.
Why?
...
I've had a drupal 5 site for over 2 years. For some reason my browser dropdown URL retains www.xxx.co.uk/node?destination=node for the site url. This has work until now - when I get
The page isn't redirecting properly
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
...
sys info: drupal 6 installation, with tons of modules... too many to list.
the problem: only a certain content type will not load it's template file correctly. some nodes that would be displayed on these pages through views are making it to the markup. they are the only content that gets loaded. the template file that this content falls...
Hello all,
I am developing a site for an International Conference. I want the registered users to upload their research papers in pdf format using a form. I have no previous experiences working with a CMS.
...
Posted on Ubercart forums. Hoping to get better response here.
Background
I am trying to setup shipping rules to handle domestic (US) and international (not US). I am using the Weight Quote module with WorkFlow-ng.
I have 2 weight quotes set up as follows for testing.
Name, Base Rate, Rate per lb
Domestic Shipping, 3.00, 1.00
...
I'm on Drupal 5.x and I'm trying to add new users to the site using a script that calls drupal_bootstrap(). After generating the username, email, password, and role array, I create the new user like so:
$newuser = array( 'name' => $username, 'mail' => $email, 'status' => 1, 'pass' => $password, 'roles' => $roles);
$user = user_save('', ...