Radek Matej
Forum Replies Created
-
Forum: Plugins
In reply to: [React Webcam] Multiple camsImplemented.
Just create a subdirectory in the
webcamdirectory and pass the name to shortcode:[reactwebcam dir=seaview].Enjoy.
Forum: Plugins
In reply to: [React Webcam] Multiple camsHi Jens,
Unfortunately it is not as simple as adding a shortcode parameter with folder name. It is complicated by the fact that:
- there an AJAX endpoint that needs to be parametrized
- javascript code is too specific using global scope variable
I will consider implementing it anyway because people are asking for that.
Radek
- This reply was modified 9 years, 4 months ago by Radek Matej.
Forum: Plugins
In reply to: [React Webcam] Overwrite time stamped image?Good tip. Thanks for sharing!
Forum: Reviews
In reply to: [React Webcam] Works Perfect :-)Thanks for the feedback. Made my day. π
Forum: Plugins
In reply to: [React Webcam] Center pictureYes, that should work. The plugin doesn’t provide any styling. You have to do it by your own.
Forum: Plugins
In reply to: [React Webcam] Version 2And did it work? π
Here is how you can get the source code using SVN:
svn co https://plugins.svn.wordpress.org/react-webcamThen you can find v2 in
react-webcam/branches/v2directory.Forum: Plugins
In reply to: [React Webcam] Version 21. Upload v2 source code to /wp-content/plugins/ directory.
2. Activate it on Plugins page.
3. Customize configurable.php file. You want probably localize the format_date function.Otherwise it should just work. I provide no guarantees though, I haven’t touched the code for a while. And as far as I know there are some issues with automatic image deletion.
Forum: Plugins
In reply to: [React Webcam] Version 2Hi,
Version 2 is not official, but you can get it from the SVN repository and customize it as you wish.
Radek
Forum: Plugins
In reply to: [React Webcam] Clickable Larger Size Image?Hi Sasha,
Thank you for the positive feedback.
Plugin doesn’t scale uploaded images, so if you uploaded HD images, HD images are inserted into HTML. You can style the inserted
imgtag as you wish and add any JavaScript functionality to it. Just search fordiv.webcam img.You can use some lightbox plugin to show fullscreen image on click.
Radek
Forum: Plugins
In reply to: [React Webcam] Namespace Reactwebcam error when activatingHi,
You are running very outdated version of PHP that doesn’t support namespaces. Even WordPress itself requires higher version.
Radek
Forum: Plugins
In reply to: [React Webcam] Get images from remote serverHi,
The plugin has no configuration option to do so.
But you can customize the code to read images from different folder. That would be quite easy. I believe reading from FTP is possible but would require a lot of work and you will still need to store files locally before displaying them to user.
Radek
Forum: Plugins
In reply to: [React Webcam] Overwrite time stamped image?Hi,
It’s not possible. The plugin depends on correctly timestamped images and doesn’t have any clean up functionality. It just reads images in a folder.
You have to implement your own script that will us WP cron to periodically delete old files in that folder. Or you can use some plugin that can do that. Quick search led me to this: https://wordpress.org/plugins/bulk-delete/
Radek
Forum: Reviews
In reply to: [React Webcam] Great!It is just simple plugin that does only one small piece of work. I have more capable version in mind, but it’s currently not my priority.
Thank you very much for you positive feedback.
Forum: Plugins
In reply to: [React Webcam] Version 2Not sure, but I guess the reason can be that you have an old PHP version that doesn’t support namespaces because there is a namespace declaration on line 9.
Forum: Plugins
In reply to: [React Webcam] Multiple camsUnfortunately this is not supported right now. Sorry for the bad news.
You can tweak the code to achieve that.
- This reply was modified 9 years, 7 months ago by Radek Matej.