bspr3663
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: IO Upload ERROR and Page Time OutSo I wrote too quickly. I wanted to say the plugins should not be the problem. Also I have reinstalled adobe, and the rest of the fixes offered did not work, example switching browsers, etc…
Forum: Fixing WordPress
In reply to: IO Upload ERROR and Page Time OutHere is the error message I’m getting:
The connection was reset
The connection to the server was reset while the page was loading.
The site could be temporarily unavailable or too busy. Try again in a few moments.
If you are unable to load any pages, check your computer’s network connection.
If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the Web.Forum: Fixing WordPress
In reply to: Error logs saying it can't find ioncube resulting 500 server errorI fixed the problem; I installed ioncube wrong. Downloaded the wrong file to make it work.
Forum: Fixing WordPress
In reply to: Error logs saying it can't find ioncube resulting 500 server errorLet me note godaddy tried out this and it did help:
"FastCGI PHP 5.x" to just "PHP 5.x"
Not sure if this helps, but I set my campaign as draft and it feed in the title “Listeria outbreak: why more of us didn’t get sick” it duplicated 12 times. So I’m guessing it had an issue with the character = :
I tried the code as well and found it to help (so I think), but it is still making duplicates. Judging from the duplicates I can’t pin point it to why, meaning a specific character. Some titles were different, some were the same; I can say all the stories were the same. Any ideas what the next step might be.
Hey guys, any idea how to stop duplication of titles with the character = &
Thanks in advance
Forum: Plugins
In reply to: do not duplicate posts from widgetsSo I was able to figure it out with the help of Elegant Themes, who I need to mention, because I can’t take credit for this work.
I have a featured slider, here is it’s code:
[Code moderated as per the Forum Rules. Please use the pastebin]I have a left sidebar of posts that do not duplicated with the featured slider. Once the posts is done with the slider it will then move down to the left sidebar. Here is the code:
[Code moderated as per the Forum Rules. Please use the pastebin]The finished product is here: https://www.boisestatepublicradio.org
Forum: Plugins
In reply to: do not duplicate posts from widgetsI would like to know how to do this also. Any help would be much appreciated.
Right on, that worked out great. Thanks man and keep up the good work.
Forum: Plugins
In reply to: [WPeMatico RSS Feed Fetcher] Stripping Out Classes From The FeedI found that it doesn’t live five filters feed very much. It strips out a lot of code from the feed and in fact ending divs </div> Any solutions for this, besides don’t use five filters? Because they provide full rss feeds.
After installing different versions, I found out that 4.0 and lower works, but any version higher does not. It’s having issues with the Single event page title format. For the versions 4.0 and higher if you leave it blank then my footer navigation goes blank, but if you put asdf, then every link in the nav will say asdf or if you put #_NAME then every link in every event page will say the title of the event.
I couldn’t get #_EVENTURL to work, so here is another way to do it.
Sign up for addthis.com (it takes 3 minutes). Pick what style you want. Copy and pasting this code will not work, because you need to get your own addthis code.
This is the code to get the url that is displaying. Make sure this is used in a php file (not in the event manager single event box. I put it in my header.php
<?php function curPageURL() { $pageURL = 'http'; if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";} $pageURL .= "://"; if ($_SERVER["SERVER_PORT"] != "80") { $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"]; } else { $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; } return $pageURL; } ?>
Use this code where you need to show the page url
<?php echo curPageURL();?>
In the addthis site it will give extra options where you can add a specific url and will look something like this: (you’ll notice I this <?php echo curPageURL();?> in place of the url)
<div class="addthis_toolbox addthis_default_style " addthis:url="<?php echo curPageURL();?>"> <a class="addthis_button_preferred_1"></a> <a class="addthis_button_preferred_2"></a> <a class="addthis_button_preferred_3"></a> <a class="addthis_button_preferred_4"></a> <a class="addthis_button_compact"></a> <a class="addthis_counter addthis_bubble_style"></a> </div> <script type="text/javascript">var addthis_config = {"data_track_clickback":true};</script> <script type="text/javascript" src="your personalized addthis account will be here"></script>
The finished product will look something like this:
[Code moderated as per the Forum Rules. Please use the pastebin]
Remember to put this code in a php file, it won’t read the php script in the event manager settings. Good luck.
Forum: Fixing WordPress
In reply to: Update Via Email (godaddy email address)Got the information from here: https://codex.www.ads-software.com/Post_to_your_blog_using_email
Forum: Fixing WordPress
In reply to: Update Via Email (godaddy email address)For godaddy emails your server should be pop.secureserver.net and the port 110
Put in your login (email address) and password.
The part that you must put in your site is this code (I put it in the footer):
<iframe src="https://www.your-url/wp-mail.php" name="mailiframe" width="0" height="0" frameborder="0" scrolling="no" title=""></iframe>
Remember to the src to your domain.