I've got a site that was built some time ago, which
we have suddenly lost admin access to.
It's actually used not as a community site, but as
a commercial brochure, so there are only 3 users.
I've had a look at the database, and I have the
authenticated user role, (and I was the first user),
and the authenticated user role has all the necessary
permissions, but I still can't edit any pages or indeed
do anything an anonymous user can't do.
Based in London UK. Please contact me immediately
with a rough quote for fixing this.
I am looking to build a system that will have problems and then ideas to solve that problem. The design that I see to do this is to have two node types - problem and idea. Then have the problems listed and then somehow create a detail page that lists the problem and then links all of the idea nodes that are related to this problem. My thought today is to do this with the views module to show all of the ideas for a problem and then somehow put this view under the problem detail view.
change the funcion UpdateOriginal and the images have full path ! Is ok for RSS feeds and email
function UpdateOriginal( resetSize )
{
if ( !eImgPreview )
return ;
if ( GetE('txtUrl').value.length == 0 )
{
oImageOriginal = null ;
return ;
}
oImageOriginal = document.createElement( 'IMG' ) ; // new Image() ;
if ( resetSize )
{
oImageOriginal.onload = function()
{
this.onload = null ;
ResetSizes() ;
}
}
oImageOriginal.src = eImgPreview.src ;
//######################################--- ADDED ---###################################################
//to be able to have absolute path all the time for images located in the local server- XELAG - 21.08.07
var mySite = 'http://www.mywebsite.com'; //the adresse to your website ex: 'http://www.mywebsite.com' (no '/' at the end)
if(GetE('txtUrl').value.substr(0,7) != 'http://') //test if the path is not already absolute
{
GetE('txtUrl').value = mySite + GetE('txtUrl').value; //if not the case, add the root path to webste
UpdatePreview();
}
//#######################################################################################################
}
I am working on a Drupal 4.7 based website. Few nodes are not working properly, i.e., I do not get any response from the server/site. It appears to be accessing the node forever. When I checked the database, I could see particular 'nid' and title etc.. present in the database.
Any clue on whats happening???
I don't have much info about what changes were made to this website prior to this problem. Rather thats what I am supposed to figure out now !!
I am trying to figure out how to make my front page visible to non registered users but only the front page and registration and login links, everything else only visible to registered users
My site was build under version 4.7 with customised theme, I have the ftp access can copy any files under the public_html folder,but I don't know anything about programing,and I dont have Cpanel installed on the server(maybe there is,but i dont know,what I got is only the ftp access). in this case,if anyone can advice me whether I can run the upgrade,if so then how? thanks in advance!!!