Giter Club home page Giter Club logo

webyep's People

Contributors

starkjohann avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

webyep's Issues

PHP 8.1

Hi there,
I like WebYep and I'm still using it, though it's not very popular.
But it doesn't run on a Webspace under PHP 8.0 or 8.1.
Is it possible to get an Update für WebYep, thats works with PHP 8.1?
Thanks!
Holger

Shot Edit Buttons WY2

Hello, I am including WebYep2 manually, and I am facing a problem with the Loop or more specifically the Automatic controls option.

I have the Loop working perfectly, but when I want to place the Control Buttons „by hand“ (using the php code snippet in the documentation) the page is not loading from that section of code on.

aLoopIDs("Fieldname") as $webyep_oCurrentLoop->iLoopID) { $loopid=$webyep_oCurrentLoop->iLoopID; $_SESSION["loopid"]=$loopid; $webyep_oCurrentLoop->loopStart(false,$webyep_oCurrentLoop->iLoopID); // WebYepV2 ?>

together with

showEditButtons(); // WebYepV1 ?>

Would be great to hear what you think could help me. Thank you!

Using WebYep with SSL only site - Rich Text editor doesn't show

Hello,

we used WebYep with our old site which was http only. This worked fine.

Now after upgrading our site to just use SSL (https), we found that WebYep continued to work, but when the pop up editor window would show, we would get just a small textbox and all the rich controls weren't shown.
This was due to a security feature in modern browsers. It appeared that the absolute link for the rich text javascript file was using http as a protocol, while the rest of the page was loading via https. The browser found that this was a security threat and only loaded the editor when you manually confirmed that.

Looking through the code we found the file WYURL.php in webyep-system/programm/lib to contain in line 56 the following code:

else $this->sProtocol = "http";

We understood this to be a default fallback to set the protocol to http when the protocol could not be determined.

We change line 56 into:

else $this->sProtocol = "https";

and found now, that the rich text editor was displayed by the browser without any problem, since it was now called in the HTML page with https. So the whole page was loaded with https.

So far we have not encountered any problems with this small "hack".

Hope this helps.
Have a beautiful day

Build fails

Running the build command as specified in the readme results in this error:

Fatal error: Call-time pass-by-reference has been removed in /Users/andrew/Downloads/WebYep-master/release-building/make_release.php on line 150
Home-Mac:WebYep-master andrew$ release-building/make_release.php

can't embed YouTube video

Attempting to embed the iframe code for a YouTube Video using RichText editor in HTML code mode. It appears correctly in the Editor window, but when I Save, I get this error:

Forbidden
You don't have permission to access /webyep-system/program/editors/rich-text.php on this server.

Not sure if this is the right forum for these kinds of issues…

WebYep in PHP 7

Hello together,
is there anybody who can help me WebYep get fixed in PHP7?
I could pay for this.

All the best
Alex

Where is WepYep 3. ?

I was not successful finding wepyep3 anywhre, althoug it is mentioned by max in actionsforge.
Is there any ability to download it?

Overview of Element / Commands

Hello

Is there something like a list of the existing WY commands??

When I was searching how to find out the existence of an attachment I found the "WYAttachmentElement" command, but no documentation about it. Also simple commands like "webyep_sShortTextContent" are not explained in the help files.

Regards,
Dave

Site Broken...

Hi guys,

I am hosting a Webyep site on GoDaddy and I believe they upgraded something. Now I am getting this error in the logs

PHP Warning: include() [function.include]: Failed opening './webyep-system/program/webyep.php' for inclusion (include_path='.:/usr/lib64/php:/usr/lib/php') in /home6/precastd/public_html/index.php on line 23

Any ideas on how I can fix this?

Thanks,
Don

Content-Security-Policy Header

webyep doesn't seem to work when a content-security-poicy header is set to default src 'self'.
Do you have any idea what do do?
Thanks in advance, Silke

SEO-URL

Hello,

is ther an extension for seo-urls? Whitout "IDs", where I can type in an extra field the site-name (alias) for building the url?

Thank you very much

Greetings

WebYep and Filemanger from simogeo

Hello,

ist there someone a complet example from configurated files form WebYep where the Filemanger from simogeo is integrated? Because I dont have an idea how i can bring the url from the selected "image" in the TinyMCE.
Which file and which code must I manipulate?

Thank you very much!

Grettings

Webyep in RapidWeaver 7

I have been using Webyep in RapidWeaver 5 and recently upgraded to RapidWeaver 7. When users on our website log-in now they get the following message:
"The Content Management System has found a severe security problem in this web site! Please contact the person who designed this web site immediately!"
When you proceed past this stage, the Webyep edit buttons are there but not active (nothing happens when you select them). Any suggestions on what needs to happen to transfer the Webyep functionality properly to RW7?
Thanks,
Shayne

Php 7.4 ... so many Notice and some solution

Hello,
I use the 2.1.1 and PHP 7.4 and I test only with the code-snipped from the NEW-code-snippets.php. In the config I have activated the error-reporting.

Here the notice and some solutions (but maybe, there are better solutions).

Notice: Undefined variable: j in /webyep-system/program/elements/WYGalleryElement.php on line 69
Is there an mistake in 69?
$j++; why $J ???

And then there a lot of Notice: Undefined index: loopid (in WYImageElement, WYAttachemant, WYGallery, RichText, Menu, ShortText, ans so on ).

For this Notice i have the following solution.

Change this
$webyep_oCurrentLoop->iLoopID=$_SESSION["loopid"];
in this
$webyep_oCurrentLoop->iLoopID = isset($_SESSION["loopid"]) ? $_SESSION["loopid"] : 0;

and in the WYGalleryElement additional
change this
$sHTML = str_replace("WEBYEP_LOOP_ID=","WEBYEP_LOOP_ID=".$_SESSION["loopid"]."&",$sHTML);
in this
$tempsession = isset($_SESSION["loopid"]) ? $_SESSION["loopid"] : 0;
$sHTML = str_replace("WEBYEP_LOOP_ID=","WEBYEP_LOOP_ID=".$tempsession."&",$sHTML);

And there is a second get_magic_quotes_gpc-error in the /lib/WYApplication.php

I have change this
if ($bStrip && get_magic_quotes_gpc()) $sValue = stripslashes($sValue);
in this
if (version_compare(PHP_VERSION, '5.3.0', '<')) { if ($bStrip && get_magic_quotes_gpc()) $sValue = stripslashes($sValue); }

Notice: Undefined variable: webyep_oCurrentLoop in /webyep-system/program/elements/WYGalleryElement.php on line 124
maybe the soltion is to change this
if($webyep_oCurrentLoop){
in this
if(!empty($webyep_oCurrentLoop)){

If I use the menu and this is empty, the following notice is shown:
Notice: Undefined index: VERSION in /webyep-system/program/lib/WYElement.php on line 112

Notice: Undefined index: VERSION in /webyep-system/program/lib/WYElement.php on line 112

For this error i had change this
return $this->dContent[WY_DK_VERSION];
in this
if(!empty($this->dContent[WY_DK_VERSION])) { return $this->dContent[WY_DK_VERSION]; }

And here the notice, which I can't solve. Is there anybody to can help me?

If i have more than one WYLongTextElement, the following Notice will be shown:
Undefined offset: 1 in /webyep-system/program/elements/WYLongTextElement.php on line 21

Notice: Trying to get property of non-object in /elements/WYLongTextElement.php on line 19

Notice: Trying to get property 'dContent' of non-object in /webyep-system/program/elements/WYLongTextElement.php on line 19

Notice: Trying to access array offset on value of type null in /webyep-system/program/elements/WYLongTextElement.php on line 19

Notice: Trying to access array offset on value of type null in /webyep-system/program/elements/WYLongTextElement.php on line 21

If you are logged in ... and with the time you will be automatic logged out the follwing error will be display:

Warning: include(permissions-error.php): failed to open stream: No such file or directory in /program/lib/WYEditor.php on line 153

Greetings

Redactor Table Problem

I have the paid version of Webyep with the Reactor Editor.
Everything in the editor works fine except the Table. When I add a table, fill in the cells and save, the table does not appear and the text from the cells just runs together.
Has anyone else ever had this problem?

WebYep and Mavericks OS X 10.9

I seem to be having a problem with the webyep plugin and mavericks (os x 10.9 gm).
I get this error message in one project when trying to publish via ftp or local:

Exception while exporting site
-[__NSCFString appendString:]: nil argument

theme is CASphere1, but changing to a different theme does not help.

it happens only on webyep (plug-in) pages :(
any idea what is going wrong?
there is no webyep support anymore from Objective Development :(

the webyep stacks from tsooj in a stacks page work fine!

thanks a lot! kai

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.