Mel
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Social Login] PHP error for Multisite WordPress 3.8.1that happens when you click dismiss the welcome panel. if you continuing to get the error then in your db change wsl_settings_welcome_panel_enabled in the options table to the current version of wsl that you are using eg 2.1.6 etc. I think i submitted a fix to the issue here
Try this hereForum: Plugins
In reply to: [WordPress Social Login] Login Triggeryou can probably do this without even touching the plugins code using the existing hooks built in like the “wsl_hook_process_login_before_redirect” action
Very true sorry should have named the thread differently
Forum: Plugins
In reply to: [WordPress Social Login] Urgent help.I missed it the other times it looks like your paths are mixed up one references the correct location and the other is refrencing wsl included in the “WordPress-Social-Login-for-BuddyPress-master” location.
Try addressing this by naming your directory “wordpress-social-login”
and repost any changes in the errorsif this doesn’t work, debug the path it is looking for by adding
echo WORDPRESS_SOCIAL_LOGIN_ABS_PATH . "/hybridauth/Hybrid/Auth.php"; die('<----the path');
on line 120 and post back
after doing so remove the code as it will stop the rendering of the page and just debug the first part, if its a live site place it in maintenance mode, so your end users arent effectedForum: Plugins
In reply to: [WordPress Social Login] Urgent help.maybe try including facebook.php in another provider (if you use one) or directly in the base plugin.
OR try
redownloading facebook.php from the github repository and replacing itLine 34 in facebook.php is relating to CURL as well make sure your host didnt make any breaking changes to the way CURL is handled on your server as well
Forum: Plugins
In reply to: [WordPress Social Login] Urgent help.I had an issue with ftp garbling up the files used in wsl, have you opened or mofied faceook.php or /hybridauth/Auth or changed the directory wsl is in, try reverting wsl to the folder wordpresss-ocial-login
Then try to reupload and verify Facebook and Auth have not lost thier formatting in the php files, after that hopefully it will resolve itself. If not also try removing white space at the end of the php files if anyForum: Plugins
In reply to: [WordPress Social Login] Plugin/Description page disappearedReviewing the source looks like nothing much really just a function in diagnostics was modified. I believe Miled updated it so that it shows up in the repository as requested here. Correct me if I am wrong. Also are you looking for anyone to maintain the codebase Miled. Iv’e read elsewhere on the net that Dev has ceased on HA in general is this true?
If it is I would like to collaborate with other Devs and fix some bugs and refractor some the already great codebase you have provided us and would love to have other devs on board. If not I look forward to future releases on an all around Amazing plugin. Thank youo MiledForum: Plugins
In reply to: [WP SVG Icons] Bigfix for iconmoon(1).zip etcHi Evan I’ll have to find it on github and fork it then I’ll submit
Forum: Plugins
In reply to: [WP SVG Icons] Bigfix for iconmoon(1).zip etcI also am running this alongside font awesome by doing a few step manually that might be able to be added to future versions
1. When creating the font on icomoon, I changed the Class Prefix under preferences just before downloading to “icon-cust-” so it doesn’t interfere with FontAwesome.
2 I also changed the Font name to FontAExtended on that page.
3.That almost did the trick I needed to override FontAwesome in styles.css (for the new font) I added a !important to the font family:
[class^="icon-cust-"], [class*=" icon-cust-"] { font-family: 'fontaexttended'!important;
Small changes really
Forum: Plugins
In reply to: [WordPress Social Login] WordPress Social Login not working at alland lastly located in authenticatie.php the following ` $config = array();
$config[“base_url”] = site_url() . ‘/wp-content/plugins/wordpress-social-login/hybridauth/’ . $provider; $config[“providers”] = array(); $config[“providers”][$provider] = array(); $config[“providers”][$provider][“enabled”] = true;
and add to the end
$config[“debug_mode”] = true;
$config[“debug_file”] = WP_CONTENT_DIR . ‘/debug.log’;Then make sure you have a ‘debug.log’ file in the wpcontent directory and that it is writable, you will then see which step wsl is failing at
Forum: Plugins
In reply to: [WordPress Social Login] WordPress Social Login not working at all1. try only running wsl as the only plugin to make sure no other plugins are conflicting.
2. Try backing up your install and installing fresh from the repository in case something go mixed up on the server or there was a hacked file.
3. Check with your host to see if there was a change in the environment that caused it.(globals php version etc)Forum: Plugins
In reply to: [WordPress Social Login] WordPress Social Login not working at allCheck to be sure your folders are chmoded correctly 755 for folders and 644 for files in the hybridauth folder
Forum: Plugins
In reply to: [WordPress Social Login] CSS SpritesThanks for this, I wanted to fix pagespeed for a while too
I also have this as well
Forum: Plugins
In reply to: [WordPress Social Login] already logged in errorThis can be resolved by following these instructions Here