finferflu
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: trojanI got the same notification, but upon inspection, I can’t seem to find anything wrong with the file in question: false positive?
Forum: Networking WordPress
In reply to: Images upload, but sample pic not visible in media libraryGlad you managed to sort it out ??
Forum: Networking WordPress
In reply to: Images upload, but sample pic not visible in media libraryWould you be able to see what the direct link to those thumbs is? You can do that by looking at the web inspector. Once you know the exact path, you may be able to find more info in the logs.
Forum: Fixing WordPress
In reply to: WP login always shows ''Successfully Logged In''Would you be able to provide your blog URL so that I can also test it?
Forum: Networking WordPress
In reply to: Images upload, but sample pic not visible in media libraryThat looks like the access log. If you’ve been looking for errors in there, you won’t find any. You will need to check the actual error log.
If you error log is empty, then I would suggest to search for “.jpg” or “.png” entries in the access log to see if there are any interesting status codes attached to those broken thumbs.
Forum: Fixing WordPress
In reply to: Fatal error(s) when updatingBefore suggesting anything, I would recommend going through the list of results here.
Forum: Fixing WordPress
In reply to: Transfer a Blog site to WordPressI have never done this, but this guide seems quite comprehensive.
Forum: Fixing WordPress
In reply to: WP login always shows ''Successfully Logged In''Have tried to clear your cookies/cache to see what happens?
Forum: Fixing WordPress
In reply to: Can't access the backend of my siteYou can refer to my reply here.
Forum: Fixing WordPress
In reply to: Adding Custom Information to a wordpress pageJavaScript and PHP operate in two completely different ways. PHP is executed on the server, and by the time you see the webpage, the code has already been executed. JavaScript, instead, is executed by the browser on page load and subsequently.
This means that by the time your browser loads the JavaScript code that you need, the PHP code has already finished being executed.
As far as I can see your calendar is generated by availabilitycalendar.com and I would suggest asking their support team whether their software can provide you with a code that you can use during the PHP execution.
Forum: Hacks
In reply to: Can't get into backend because of new pluginSee my reply here.
Forum: Fixing WordPress
In reply to: Can't access backend of my siteIf you have FTP access to your server you could try to remove or rename the folder /home/content/22/8653322/html/wp-content/plugins/tracking-code, which will disable that plugin.
Forum: Networking WordPress
In reply to: Images upload, but sample pic not visible in media libraryDo you see any errors in the web server error log?
Forum: Fixing WordPress
In reply to: I dont want to see the dateYou can either follow the advice on this post, or you could hide the date via CSS, by adding the following to your stylesheet:
.polaroiddate { display: none; }
Forum: Plugins
In reply to: [Debug This] Fatal error: Cannot use object of type WP_ErrorI just found that if I change the blog URL from
blog.<computer hostname>.local
tolocal.<domain>.tld
, the plugin functions properly. Something must be wrong with the.local
top level domain.