solefald
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Slideshow doesnt work with last uptdatesame problem here… no slideshow after 1.1.0 upgrade.
EDIT: Never mind. I fixed it by going into Gallery settings in WP backend and ran and updrade ??
[download_cat#id#format=Page]
this is incorrect. format id needs to me numeric.
[download_cat#id#format=1]
Forum: Plugins
In reply to: [Plugin: WordPress Download Monitor] downloads hits counting does not workyou need to log out from wordpess admin console.
or just send a link to a friend, and have them click on it
Forum: Plugins
In reply to: [Plugin: WordPress Download Monitor] Size not working?ok, i fixed it, by hardcoding my info into wp-download_monitor.php
line 754 has flawed logic
$path = str_replace(get_bloginfo('wpurl'),"./",$path);
my wpurl is “https://www.domain.com/blog/”, so basically your code completely strips that, and makes $path
.//wp-content/uploads/file.blah
which, obviously, does not work.
my fix was to replace “./” with “blog”$path = str_replace(get_bloginfo('wpurl'),"blog",$path);
but this only works for files located in $wpurl/wp-content/uploads”
got to figure out how to make it work on existing files, located in other dirs….
Forum: Plugins
In reply to: [Plugin: WordPress Download Monitor] Size not working?yes, this is on my own server.
it’s running Debian linux with apache2, mysql5 and php5.most common setup, really.
is it supposed to work for me or not?
Forum: Plugins
In reply to: [Plugin: WordPress Download Monitor] Not working properlyRewriteEngine on RewriteRule ^test/(.*)$ wp-content/plugins/download-monitor/download.php?id=$1 [L]
Forum: Plugins
In reply to: [Plugin: WordPress Download Monitor] Not working properlyyes, the files exist and permalink structure did get updated. I have checked the .htaccess file and i see the Rewerite rule there, however, all i get is 404. Calling file directly works, however.
Forum: Plugins
In reply to: [Plugin: WordPress Download Monitor] Not working properlyyeah… new version did not fix anything…
Forum: Plugins
In reply to: [Plugin: WordPress Download Monitor] Not working properlysame problem here. 404 on all files, if i enable url rewriting….
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Slideshow doesnt work with last uptdate@ryancp, man! thank you so much! my slideshow works like a charm now!
Forum: Plugins
In reply to: Problem with sending mail with WordPress pluginsi am having same exact issue.
wordpress itself sends notifications just fine, but the plugins dont. nothing shows up in mail log or php error log.tested 7 different plugins including 2 mentioned above, but no mail is going out.
help!