deadempire
Forum Replies Created
-
Hi, thanks for the response.
I don’t have SSH access unfortunately. I can tell you that there are approx 300 directories on the site based on the ‘ignore scanning’ settings page where they are all listed, and the most recent backup of the site was 475mb, if that helps.
Hi, i’m also having similar issues with the plugin.
I can access the settings page fine, however can’t perform a scan.
In fact, I can’t even get access to the malware scan page so that I can click on the button to begin the scan. It attempts to access the page for 2 minutes, during which time the wordpress sidebar and top toolbar load, but the rest of the page remains blank.
BTW, my memory limit is 256M and max_execution_time is 1000 so I doubt these are the issue.
Any insight you could provide would be great.
Forum: Fixing WordPress
In reply to: Featured Image Links BrokenOK, I went into Settings/Media and added wp-content/uploads to the “Store Images in this Folder” setting (it was blank before, so should have been going to this path anyway) and now all of a sudden it’s working again.
I have my doubts as to whether this actually fixed it though, cause if I remove that path now, the links are still working. Damn, that is strange….
Does anyone know any reason as to why the image links would just temporarily change for no reason like that? Hopefully someone can shed some light on this just for my information, otherwise I’ll close this topic as resolved later today.
Forum: Fixing WordPress
In reply to: WordPress 3.4 Bug – Page TemplatesNice work. This fix seems to be working for me also
Alright, I don’t know if the code in the nggfunctions.php was changed, but I changed the following, and this problem has now been solved:
All instances of ‘description in the following lines:
$picturelist[$key]->caption = ( empty($picture->description) ) ? ‘ ‘ : html_entity_decode ( stripslashes(nggGallery::i18n($picture->description, ‘pic_’ . $picture->pid . ‘_description‘)) );
Have been changed to alltext:
$picturelist[$key]->caption = ( empty($picture->alttext) ) ? ‘ ‘ : html_entity_decode ( stripslashes(nggGallery::i18n($picture->alttext, ‘pic_’ . $picture->pid . ‘_alttext‘)) );
From what I can see, this hasn’t affected any other area negatively, but if I find any issues, I will post them here.