qwynia
Forum Replies Created
-
Forum: Plugins
In reply to: [A-Z Listing] Lowercase Post TitlesYou are awesome!!!
It works perfectly.Many, many Thanks!!!
Forum: Plugins
In reply to: [A-Z Listing] Lowercase Post TitlesHello Daniel,
you understood exactly what is the problem I am encountering!
Did you have any chance to find out why this is happening and maybe found a fix for it?
Cause there are many artists/bands which have lowercase names and are very picky about that lowercase letters should be used to display their name :).Many Thanks again!
Forum: Plugins
In reply to: [QuizMe] [Plugin: QuizMe] Fatal error on activationI am testing this locally on wampserver running on Windows 7 machine.
overlooked this in the FAQ:
function add_my_cool_filter($data) { $data[] = 'upload.php'; // JUST the file name. return $data; } add_filter('no_check_files', 'add_my_cool_filter');
now the Flash Uploader of NextGen works again.
Forum: Plugins
In reply to: [Plugin: WordPress Mobile Pack] Cannot uninstall wp-mobile-packThat worked, had the same problem with these theme files from WordPress Mobile Pack.Neither via ftp nor via Plesk these files could not be deleted.
Great, thanks a lot qdhd99!!!
Follow up:
I now found out that when using
define('WP_CONTENT_URL', 'https://www.mysite.com/'.WP_CONTENT_FOLDERNAME);
(with www.) other things did stop working(which I did not check before sending the previous post).So for now I ended up putting manually a new path in manage-images.php on the editing menu replacing NGGALLERY_URLPATH with $mypath
$mypath="/mycontent/myplugins/nextgen-gallery/"; $actions['meta'] = '<a class="ngg-dialog" href="' . $mypath . 'admin/showmeta.php?id=' . $pid . '" title="' . __('Show Meta data','nggallery') . '">' . __('Meta', 'nggallery') . '</a>';
so although i use
define('WP_CONTENT_URL', 'https://mysite.com/'.WP_CONTENT_FOLDERNAME);
(without www)now the edit menu points to https://www.mysite.com/../../(with www) and works, so I am happy and the only thing is that I am afraid I will need to remember do redo this when I update the ngg plugin.Would be nice if it could work without this manual edit, but maybe it is not a problem within the ngg plugin but it is just an individual issue with my specific setup (server, htaccess,etc etc), I really can’t figure out, but at least it works now :).
Thanks a lot again!!!
Hello Alex,
thank you for your fast reply!This did not change something since I did not change the file structure I only did give other names to the folders.File structure is same as default wp install:
root(with wp-load.php , wp-config.php in)
>wp-content (renamed to mycontent, see first post)
>plugins (renamed to myplugins, see first post)Thanks to your hint though i had a look at manage-images.php and saw the NGGALLERY_URLPATH in the links for the image editing menu. I found out that when I do:
define('WP_CONTENT_URL', 'https://mysite.com/'.WP_CONTENT_FOLDERNAME);
Meta | Edit thumb | Rotate | Publish do not work
NGGALLERY_URLPATH writes
<a title="Show Meta data" href="https://mysite.com/mycontent/myplugins/nextgen-gallery/admin/showmeta.php?id=36" class="ngg-dialog">Meta</a>
but when I do:define('WP_CONTENT_URL', 'https://www.mysite.com/'.WP_CONTENT_FOLDERNAME);
they do work.
NGGALLERY_URLPATH writes
<a title="Show Meta data" href="https://www.mysite.com/mycontent/myplugins/nextgen-gallery/admin/showmeta.php?id=36" class="ngg-dialog">Meta</a>
…which to be honest I don’t really understand because the rest of NGG was working fine with
https://mysite.com
(and I saw that also other php of ngg use NGGALLERY_URLPATH).I am curious why only the image editing menu had the problem…Thanks a lot for the help!!