EnderWiggin
Forum Replies Created
-
Hello, I just performed a scan using “PHP Compatibility Checker” and got these warnings for PHP 7.1:
FILE: /Wordpress/wp-content/plugins/tablepress/libraries/excel-reader.class.php
————————————————————————————————————————————————————
FOUND 0 ERRORS AND 2 WARNINGS AFFECTING 2 LINES
————————————————————————————————————————————————————
222 | WARNING | Method name “OLERead::__readData” is discouraged; PHP has reserved all method names with a double underscore prefix for future use
240 | WARNING | Method name “OLERead::__readPropertySets” is discouraged; PHP has reserved all method names with a double underscore prefix for future use
————————————————————————————————————————————————————FILE: /Wordpress/wp-content/plugins/tablepress/views/view-about.php
—————————————————————————————————————-
FOUND 2 ERRORS AFFECTING 2 LINES
—————————————————————————————————————-
185 | ERROR | Extension ‘mysql_’ is deprecated since PHP 5.5 and removed since PHP 7.0; Use mysqli instead
186 | ERROR | Extension ‘mysql_’ is deprecated since PHP 5.5 and removed since PHP 7.0; Use mysqli insteadA tip for the future, install and create backups before you do any changes. Duplicator is free and allows you to easily do this.
I tested that free version but it did not work. I checked the FB profile on your demo feed and it works The full story is that I just noticed that the pro (version 3.1) for one client stopped working. The license is expired, however the same version for another client with a valid license is still working. That is why I tested the free version.
Update: I retested the free version and it is now working. No idea why it did not work yesterday.
- This reply was modified 8 years, 7 months ago by EnderWiggin.
But shouldn’t the free version work properly even if “Facebook makes a major change to it’s API” because it is not now.
Forum: Fixing WordPress
In reply to: Site dissapearedYes, make sure you see the basic WordPress structure (folders & files) in the appropriate sub-directory as well as the WordPress database file and theme located in the /wp-content/themes/ folder.
http://www.wpbeginner.com/beginners-guide/beginners-guide-to-wordpress-file-and-directory-structure/
Forum: Fixing WordPress
In reply to: Site dissapearedCan you access the client’s server via FTP?
Forum: Plugins
In reply to: [GF Upload to Email Attachment] Removing link in emailI also would like this feature.
Forum: Fixing WordPress
In reply to: I can’t even access my dashboard…Don’t forget that you can always access your WP install and the plugin folders via FTP. Try accessing the backend of your site and rename the import-xml-feed folder to see if that plugin is preventing you from accessing your WP dashboard.
Forum: Plugins
In reply to: [Fast Secure Contact Form] reCAPTHA + languagesNever mind, I discoverer that the reCAPTCHA language is automatically changed based on the system language.
Forum: Fixing WordPress
In reply to: Problem logging on – theme issueIdeally via FTP. You should have the FTP log-on info in your control panel, or you might need to create an FTP access in the control panel. Once you have the log-in credentials, you can use a tool like FileZilla and access your website to rename the theme folder.
Forum: Fixing WordPress
In reply to: Allow robots.txt in Divi ThemeForum: Fixing WordPress
In reply to: Updated WordPress…Now I cant access wp-admin at all…You need to access your web hosting server using an FTP software, such as FileZilla, and then locate the WordPress installed files, and then replace them by uploading the new WP files. However before you do this, you must download the new Wrdpress install onto your computer and uncompress them.
Read this for more information: http://www.wpbeginner.com/wp-tutorials/how-to-manually-update-wordpress-using-ftp/
Go to /wp-content/plugins/wp-maintenance-mode/assets/css and open the style.css file.
Go to line 375 and edit the color value to 000
.background form.subscribe_form input[type="text"] { background: transparent; color: #000; }If you replace the WordPress logo image (wordpress-logo.svg) in the /wordpress/wp-admin/images folder, you can display any image or logo you want in the Password Protected page. You will need to adjust the background-size setting as well as the margin, height & width settings.
Next open the password-protected-login.php file located in /wordpress/wp-content/plugins/password-protected/theme and add your adjustments to the section
<style type="text/css" media="screen"> #login_error, .login .message, #loginform { margin-bottom: 20px; } .login h1 a { background-size: 700px auto!important; height: 100px!important; width: 700px!important; margin: 0px -200px 25px;!important;} </style>Other adjustments include:
.login h1 a { background-image: none, url("../images/wordpress-logo.svg?ver=20131107"); background-size: 700px auto; background-position: center top; background-repeat: no-repeat; height: 100px; font-size: 20px; line-height: 1.3em; margin: 0px -200px 25px; padding: 0px; width: 700px; text-indent: -9999px; outline: 0px none; display: block; }Forum: Themes and Templates
In reply to: [Minamaze] Featured Area Image SizeI understand, but the solution was actually in these forums, but it took me forever to find since there is no forum search.
Thanks to divinest for the solution:
Open /wp-content/themes/minamaze/admin/main/options/02.homepage.php page and edited this line:
if ( ! empty( $thinkup_homepage_section1_image ) ) $thinkup_homepage_section1_image = wp_get_attachment_image_src($thinkup_homepage_section1_image, 'column3-1/3');Change the ‘column3-1/3’ to ‘full’