When I try to upload files this is the error I get:
* warning: copy(C:\Inetpub\wwwroot\files/bluemarine_logo.jpg) [function.copy]: failed to open stream: Permission denied in c:\Inetpub\wwwroot\includes\file.inc on line 362.
* The selected file C:\PHP\uploadtemp\tmp3.tmp could not be copied.
I am on a 2003 server with IIS6. Any suggestions on what permissions I should look at?
i've gone through all the posts i could find on this subject...
and i am GUESSING that i need to patch something to get album artwork to be displayed or to not be stripped from the mp3 file when someone downloads it...
I've found snippets and used them to make "Blog list by title" page (lists the titles in date order, but can't figure out how to get it to list the Username and date with it) and Blog list by user" (just lists names of those who have blogs). What I can't figure out is:
1. How to make the standard blog found under the user's profile list on one or two pages all the blogs they have done in order (instead of only one blog entry navigated by that annoying "next page" thing). eg http://www.cpnhelp.org/?q=blog/jim_k
2. How to make the Blog-by-user page snippet also list the titles and dates for each. eg http://www.cpnhelp.org/?q=blogs_by_user
Snippet used:
$result = db_query("SELECT u.uid, u.name, COUNT(0) AS num FROM {node} n LEFT JOIN {users} u ON u.uid = n.uid WHERE n.type = 'blog' GROUP BY u.uid, u.name ORDER BY u.name ASC");
while ($blog = db_fetch_object($result)) {
$output .= '<li />'.l($blog->name. ' ('.$blog->num.')', 'blog/'.$blog->uid);
}
return '<ul>'.$output.'</ul>';
3. How to make the Blog-by-Title/Date page also state the username and date on the page. eg http://www.cpnhelp.org/?q=blog_list
Snippet used:
<?php
/**
* the following displays a list of the X most recent weblog titles
* and links to the full weblogs. If you want to increase/reduce
* the number of titles displayed..simply change $listlength value
*
* This php snippet works with drupal 4.6.
My issue is that I have recently changed hosting with my Drupal installation - I could initially log in afterwards, but all of a sudden, I cannot login and apparently the mail feature is not setup (I'm 100% positive I set that up).
Is there a way I can reset my password or my account on my installation so that I can login again?
Or even configure the mail (again) so that I can at least reset my user account?