Sid Savara
Forum Replies Created
-
Forum: Plugins
In reply to: Access to ‘/!svn/me’ forbiddenJeroen,
Did you ever solve this issue? I’m having the same problem via command line. I’m a contributor on a plugin though not the owner
What svn version are you on? I am on Mac with svn, version 1.9.4 (r1740329).
Forum: Themes and Templates
In reply to: [Decode] Latest update failed/broke siteMy solution was go in through FTP and rename decode to decode-2 (or just delete the folder).
That reverted back to the default WP theme.
Following that you can reinstall decode. I renamed it in the interim so I could research it but then deleted
Forum: Themes and Templates
In reply to: [Decode] Latest update failed/broke siteI see same issue. I browsed SVN and it looks to me like the inc directory got deleted in the latest point release.
Forum: Plugins
In reply to: [Multipage] Contents top AND bottom please :)Shanj,
I wanted same functionality. Here is how I did it
Go to plugin editor
Editing sgr-nextpage-titles/sgr-nextpage-titles.php (active)
Approximately 80% of the way down you will see this:
if ( $options['toc-position'] === 'top' ) { $enhanced_content = $toc . $enhanced_content; } elseif ( $options['toc-position'] === 'bottom' ) { $enhanced_content .= $toc; }I commented that whole part out and replaced it with logic to just put the TOC above *and* below the content.
Please see what I replaced it with below:
/*if ( $options['toc-position'] === 'top' ) { $enhanced_content = $toc . $enhanced_content; } elseif ( $options['toc-position'] === 'bottom' ) { $enhanced_content .= $toc; }*/ $enhanced_content = $toc . $enhanced_content . $toc ;Hope this helps
Thanks, the solution I went with was to use CSS as you noted.
Maybe you could add some kind of validation error message when there is a “bad” value in a cell? The reason is that page has so many different values to edit and I was changing many of them at once – so it was difficult to identify what had saved and what had not.
It took some trial and error to see which values were being stripped out
I solved this issue on my blog.
These “Permission denied in” errors are typically the same – chmod is not set properly on PHP files
Using an FTP client (I used FileZilla) is the easiest way and works for any host I have. If you are familiar with shells and have access, just go chmod the file to 755. Otherwse, here is how you do it in FileZilla
1) Open Filezilla and connect via ftp
2) Browse to the directory the file is located (/home/markg87n/public_html/wp-includes/)
3) Right click the file an set the following:
Owner permissions: Read, Write, Execute
Group Permissions: Read, Execute (leave Write unchecked)
Public Permissions: Read, Execute (leave Write unchecked)At the bottom, the “numeric value” reads 755. If you prefer you can just directly type 755 in the box instead of ticking checkboxes
try it out, and if that doesn’t fix it – you may have to set permissions on more files. Keep refreshing, see the different error messages and plow through it.
Good luck =)
Forum: Fixing WordPress
In reply to: Rss feed errors after upgrading 2.7Looks like it was the Media RSS plugin. No idea what I installed it for, but since my feed looks good, I am going to err on the side of caution and leave it off. Perhaps wordpress moved the same functionality into core.
Or something is broken, and I don’t know what it is 😉
Forum: Fixing WordPress
In reply to: Rss feed errors after upgrading 2.7Hi,
I have similar errors with my feed. Any ideas? I did remove the spaces at the end of wp-config, it doesn’t appear to have helped
http://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fsidsavara.com%2FfeedI would appreciate any help as it’s been very frustrating for me. Since it doesn’t validate, one of my feedburner feeds is not updating at all =(