winterstreet
Forum Replies Created
-
No
The site I’m working on doesn’t have a php.ini file. The automatic way of doing the install doesn’t create a user.ini file. Also the plugin gives you a manual method of setting it up, but at the bottom it says “Additionally, you will need to append the following code to your php.ini” whcih obviously doesn’t work if you don’t have one.
By the way the server configuration preselected for me was Apache + mod_php I created a phpinfo file and I see mod_php5 in the Loaded Modules section, but I also see mod_cgi in there too. But I’m not very educated on servers, but I ‘m guessing the preselection is right.
So do I need to talk to my host about permissions so the user.ini file gets created? or ask if there’s a way to add the php.ini file?
Thanks
I’m also curious of how the setup works if there’s no php.ini file
Great, thanks for all the options.
Forum: Fixing WordPress
In reply to: Switched theme back and forth, missing widgetsI have, haven’t heard back yet. I thought I’d post it here too in case there are people who have had the same problem and it wasn’t particular to the theme. But I can close this if you think it’s out of place.
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] 2 Recurring Intermittent ErrorsWe switched to using a non-Google email address so this is no longer an issue I’m trying to fix. I didn’t mark the topic as resolved since there were others asking about it. Thanks.
Forum: Plugins
In reply to: [FB Photo Sync] Grey ThumbnailsNot being logged in, well actually I was logged in that browser, but I hadn’t hit that button ti give authorization. That did it. Thank you.
Forum: Plugins
In reply to: [FB Photo Sync] Grey ThumbnailsWhen I try syncing, with or without checking the box to import the images, the wheel just keep spinning.
Forum: Plugins
In reply to: [Pricing Table by Supsystic] Hover Zoom Doesn't happen for some usersHello, Thanks for getting back to me. Here’s an example http://careersnacks2go.com/essential_grid/m-find-your-best-match/ but the site is password protected (though it’s going live soon so it doesn’t matter much if someone see this) it’s SNACKS
Seems hard to figure out the problem since it behaves as expected for me.
Forum: Plugins
In reply to: [Event Organiser] shortcode-event-list.php is ignoredgreat thanks
Same for me Woocommerce 2.4.12 would love to use this plugin
Forum: Plugins
In reply to: [TK SmugMug Slideshow Shortcode] It doesn't workI’m sorry I got these plugins mixed up. Sorry to waste your time.
Forum: Plugins
In reply to: [TK SmugMug Slideshow Shortcode] It doesn't workWith TwentyFifteen activated and no other plugins I get the following (local installation):
https://winterstreetdesign.com/wp-content/uploads/2015/11/blip-plugin-error.txt
(Maybe it’s too long, but wordpress won’t let me post it here)
Forum: Plugins
In reply to: [TK SmugMug Slideshow Shortcode] It doesn't workYes, and with errors displayed it generated a lot of errors. But then it didn’t work for me.
Forum: Fixing WordPress
In reply to: Lots of cron events using WP Crontrol on WP EngineThis part was adding it over and over
function schedule_cron_jobs() { //check if a event with 'podcast_scan' action hook registered or not if(!wp_next_scheduled('podcast_scan')) { wp_schedule_event(time(), 'half_hour', 'podcast_scan', null); } } add_action('wp', 'schedule_cron_jobs');But I would’ve thought it only added it if it wasn’t already in there.