Giter Site home page Giter Site logo

Comments (11)

erictwo avatar erictwo commented on August 22, 2024

Having problems also. Nextcloud wants me to update but won't, it fails to update. Menu shows up when right click but does nothing when acted upon. This started about 3 days ago.

Error | PHP | copy(/nextcloud/apps/files_rightclick/files_rightclick/l10n/zh_TW.json): failed to open stream: No such file or directory at /nextcloud/lib/private/legacy/helper.php#149 |  

from files_rightclick.

cx-jv avatar cx-jv commented on August 22, 2024

Same problem with our installation (Right click 0.15.1, NC 15.0.10.0 on Snap, PHP version Version: 7.2.21). The problem occured after updating Right click to 0.15.1.
Opera Momentaufnahme_2019-08-27_204808

from files_rightclick.

snake2903 avatar snake2903 commented on August 22, 2024

NC 15.0.11.1
PHP 7.1.31
MariaDB 5.5.60
Right Click 0.15.1

Same problem here... Updated to new version an after that it wont work.
It's located in apps and Disabled. After Enabling, nothing happens, app stays disabled.
I tried to remove it and reinstall it,but didn't work.

RightClick

EDIT:
I zip version 0.13.0 from my another NextCloud server and extract it to this server and now it works. I wont update until this bug is fixed.
If anyone want that version here is link to download:

https://drive.google.com/drive/folders/1sn8HzHZVzD0nhb79u7se5eo08y5HPLHR?usp=sharing

from files_rightclick.

hermann1514 avatar hermann1514 commented on August 22, 2024

same by me. RightClick is disabled after enable. NC15.11

from files_rightclick.

kurjajuur666 avatar kurjajuur666 commented on August 22, 2024

Same problem here. NC 15.0.7. Older versions have the same issue at least after I updated to the latest version and tried older ones (0.14.1, 0.15.0)
Edit:
0.13 mentioned by @snake2903 works fine.

from files_rightclick.

ossrac avatar ossrac commented on August 22, 2024

Same problem with NC 15.0.11. The issue happened when I updated Right click last time to 0.15.1.
After Enabling, nothing happens, the app stays disabled.
I tried to reinstall it, but it didn't work.

from files_rightclick.

jameslao avatar jameslao commented on August 22, 2024

Same problem with NC 18.0.0 Alpha

from files_rightclick.

PeeBeerBeach avatar PeeBeerBeach commented on August 22, 2024

Exactly the same problem on NC 15.0.12 and Right Click 0.15.1

Í freshly installed the app. After activating it, it deactivates itself instantly.
Error log shows the exact same as first post.
Reinstallation brings no joy.

from files_rightclick.

cdisabatino avatar cdisabatino commented on August 22, 2024

Same problem with NC 15.0.5 and Right click 0.15.1.

Error : EVENT_LOAD_ADDITIONAL_SCRIPTS_LOGGEDIN

from files_rightclick.

3dsman avatar 3dsman commented on August 22, 2024

same here!
Error: Undefined class constant 'EVENT_LOAD_ADDITIONAL_SCRIPTS_LOGGEDIN'
/var/www/nextcloud/lib/private/legacy/app.php - line 261: require_once()
/var/www/nextcloud/lib/private/legacy/app.php - line 154: OC_App::requireAppFile("files_rightclick")
/var/www/nextcloud/lib/private/legacy/app.php - line 127: OC_App::loadApp("files_rightclick")
/var/www/nextcloud/lib/base.php - line 972: OC_App::loadApps()
/var/www/nextcloud/index.php - line 42: OC::handleRequest()

from files_rightclick.

billgertz avatar billgertz commented on August 22, 2024

With NC 17.0.2 right click v0.15.1 does not work with either FireFox or Safari (latest of both). The context menu appears but none of the actions work. Backing down to v0.13.0 does work although it requires a bit of hacking.

  1. Download the v0.13.0 version from repository here.
  2. On the NC server goto /usr/local/lib/owncloud/apps directory and rename the files__rightclick to old.files__rightclick:
    mv files_rightclick old.files_rightclick
  3. Untar and uncompress the the gzipped tar ball in /usr/local/lib/owncloud/apps
    tar zxf files_rightclick.tar.gz
  4. Set the ownership to the correct owner and group, in my case www-data:
    chown -R www-data:www-data files_rightclick
  5. Change to the files_rightclick/appinfo directory:
    cd files_rightclick/appinfo
  6. Make a backup copy of the info.xml file:
    cp info.xml info.xml.orig
  7. Edit the info.xml file to change the xml version tag from 0.13.0 to 0.15.1:

From:

<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
    <id>files_rightclick</id>
    <name>Right click</name>
    <summary>Right click menu for Nextcloud</summary>
    <description><![CDATA[This app allows users and developers to have a right click menu. Simply use the RightClick object to quickly create context menus. The Files app already shows the actions menu when right clicking on files and folders.]]></description>
    <version>0.13.0</version>
    <licence>AGPL</licence>
.
.
.

To:

<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
    <id>files_rightclick</id>
    <name>Right click</name>
    <summary>Right click menu for Nextcloud</summary>
    <description><![CDATA[This app allows users and developers to have a right click menu. Simply use the RightClick object to quickly create context menus. The Files app already shows the actions menu when right clicking on files and folders.]]></description>
    <version>0.15.1</version>
    <licence>AGPL</licence>
.
.
.

This is probably not kosher and an ugly-hack-that-will-break-things (TM Pending). But it will get you around the App Update message that will come up when you try to login. YMMV.

When I made this rollback to v0.13.0 and the hack to files_rightclick/appinfo/info.xml, I verified that right click was again working. It may be that right click v0.15.1 is compatible with only NC 18.0.3 but as I don't run that yet, I cannot confirm.

Anyone? Anyone know the effects?

@snake2903 Thanks for the hint in your post.

from files_rightclick.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.