Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#253 2013-08-08 16:02:36
Re: TXP Tweet: arc_twitter and arc_twitter_intents
maniqui wrote:
It fixes
Julián, Andy has made a git repository available for the plugin’s development and contributions. If Andy doesn’t find interest or time to manually patch the code base, the easiest way to merge the changes could be by a pull request.
Offline
#254 2013-08-08 17:53:01
Re: TXP Tweet: arc_twitter and arc_twitter_intents
Oh, thanks Gocom. Totally missed there was a repository. Would have I known about it before, I’d have sent the patches as pull requests. Will look to send these changes as atomic patch when I’ve some time.
Offline
#255 2013-08-09 14:21:56
Offline
#256 2013-08-09 14:34:15
Re: TXP Tweet: arc_twitter and arc_twitter_intents
@NicolasGraph
Sorry, I mean within MAMP, which version of PHP are you running. MAMP lets you choose a specific PHP version.
You can also find out PHP version by placing a info.php file in your site root and running it…
<?php phpinfo(); ?>
Offline
#257 2013-08-09 14:48:12
Offline
#258 2013-08-09 15:20:18
Offline
#259 2013-09-04 16:28:32
Re: TXP Tweet: arc_twitter and arc_twitter_intents
It’s coming online and I still have the same problem when I save articles.
Fatal error: Cannot use object of type stdClass as array in […]/textpattern/lib/txplib_misc.php(812) : eval()'d code on line 1035
Anyone?
Edit: this fix by Juliàn (in this previous post) works great (thanks!) :
- $tweet_id = (is_object($result)) ? $result[0]->id : 0;
+ $tweet_id = (is_object($result)) ? $result->id_str : 0;
Last edited by NicolasGraph (2013-09-04 17:21:40)
Offline
#260 2013-09-04 18:28:31
Re: TXP Tweet: arc_twitter and arc_twitter_intents
I still have a small problem in the date encoding.
In french, “août” becomes “août” I know it’s about UTF-8 but… ???
Last edited by NicolasGraph (2013-09-04 18:28:48)
Offline
#261 2013-11-27 22:51:40
Re: TXP Tweet: arc_twitter and arc_twitter_intents
A new version of arc_twitter is available for download with some bug fixes. Sorry for the long delay in patching up the plugin. I haven’t forgotten it. In fact, I am working on a new feature so stay tuned.
Offline
#262 2013-11-30 09:52:08
- adamr
- Member
- Registered: 2011-08-01
- Posts: 10
Re: TXP Tweet: arc_twitter and arc_twitter_intents
Hi all, apologies if this has already been addressed but I’ve had a scan of the thread and can’t see it.
Tag error: <txp:arc_twitter etc etc /> -> Warning: file_put_contents(): Exclusive locks may only be set for regular files while parsing form None on page default
Anyone seen this before?
Offline
#263 2013-12-05 18:42:26
Re: TXP Tweet: arc_twitter and arc_twitter_intents
adamr wrote:
Hi all, apologies if this has already been addressed but I’ve had a scan of the thread and can’t see it.
Tag error: <txp:arc_twitter etc etc /> -> Warning: file_put_contents(): Exclusive locks may only be set for regular files while parsing form None on page default
Anyone seen this before?
Sorry, not come across this issue before. Is your cache directory writeable?
Offline
#264 2013-12-05 18:44:11
Re: TXP Tweet: arc_twitter and arc_twitter_intents
A new version of arc_twitter is out now. Version 4.2.1 allows you to display full URLs rather than the t.co links in your feed and you no longer need to shorten URLs sent from the article write tab.
Offline