nukeSEO.com - PHPNuke SEO Search engine optimization, professional tools including nukeSEO, nukeSPAM, nukeFEED, nukePIE, nukeWYSIWYG and more

 

. Welcome to nukeSEO.com  ! 
.
.
.


.
nukeSEO.com: Forums


 Forum FAQForum FAQ   SearchSearch   UsergroupsUsergroups   ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

nukeWYSIWYG 3.6.3
 Goto page Previous  1, 2, 3  Next
 
Post new topic   Reply to topic    nukeSEO.com Forum Index -> nukeWYSIWYG (tm)
View previous topic :: View next topic  
Author Message
Palbin
webmaster


Joined: Nov 28, 2007
Posts: 38

PostPosted: Mon Jun 11, 2012 3:29 pm    Post subject: Reply with quote

You need to also add your toolbar name too the array in the wysiwyg_textarea() function within mainfile.php.
  
Back to top
View user's profile Send private message
neralex
webmaster


Joined: Feb 22, 2008
Posts: 20

PostPosted: Sat Jun 16, 2012 12:45 pm    Post subject: Reply with quote

Hey Palbin,

i believe in your new mainfile with the changes for the ckeditor is an bug.

I can not store overrided SEO tags in the database. I have tested in last days so many things to fix it but now i have tested the mainfile. I have changed back to to original mainfile.php before we have start the ckeditor implementation and now with the old file i can override it.

Edit: I have found it!

In your new mainfile are some things changed. After a check with winmerge i have located near line 65 the ini_get for the register_globals and i believe here is a problem.

new in your file:
Code:
if (!@ini_get('register_globals')) {

   extract($_GET, EXTR_SKIP);
   extract($_POST, EXTR_SKIP);
   extract($_COOKIE, EXTR_SKIP);
}

old version from the RN25 package:
Code:
if (!@ini_get('register_globals')) {

   @import_request_variables('GPC', '');
}

This old one make it possible to store the overrided SEO tags. Please check it.
  
Back to top
View user's profile Send private message
Palbin






PostPosted: Sun Jun 17, 2012 8:18 pm    Post subject: Reply with quote

http://www.ravenphpscripts.com/postp159059.html#159059
  
Back to top
hicux
webmaster


Joined: Apr 28, 2008
Posts: 13

PostPosted: Tue Jul 03, 2012 6:32 am    Post subject: Reply with quote

I can not edit blocks in administrators.

Actually u can do it but u need to open your ftp on the root.

open admin/modules/blocks.php

Search for

Code:
   echo '</select>&nbsp;&nbsp;<font>'._FILEINCLUDE.'</font></td></tr>'

      .'<tr><td>'._CONTENT.':</td><td>';
   wysiwyg_textarea("content", "", "PHPNukeAdmin", "50", "10");


Replace with or comment out

Code:
/*   echo '</select>&nbsp;&nbsp;<font>'._FILEINCLUDE.'</font></td></tr>'

      .'<tr><td>'._CONTENT.':</td><td>';
   wysiwyg_textarea("content", "", "PHPNukeAdmin", "50", "10");*/



I hope it helps to other people.

Wink
  

Last edited by hicux on Tue Jul 10, 2012 6:29 am; edited 1 time in total
Back to top
View user's profile Send private message Visit poster's website
nuken
webmaster


Joined: Jan 02, 2009
Posts: 26

PostPosted: Thu Jul 05, 2012 2:57 pm    Post subject: Reply with quote

You must have done something wrong on the install or have a theme related issue. Your blocks admin should not be opening up in the editor. I would suspect you have a table element missing or in the wrong place in your theme. Try one of the default themes and see if you get the same results.
  
Back to top
View user's profile Send private message
hicux






PostPosted: Tue Jul 10, 2012 6:32 am    Post subject: Reply with quote

yes you were right. I tested with another theme and everything goes well. This is the theme.php. I can not see anything wrong but maybe u can.. let us know.

Note: The theme is validated, that is why I can understand why the theme has the issue.
  

Last edited by hicux on Sat Jul 28, 2012 8:51 am; edited 1 time in total
Back to top
spasticdonkey
webmaster


Joined: Oct 26, 2007
Posts: 69

PostPosted: Sun Jul 15, 2012 1:27 pm    Post subject: Reply with quote

Is anyone else having issues with browsing files in elFinder? Seems like it worked previously, but I honestly can't remember if it was working on the site in question.. Getting "Unable to connect to backend" message when the elFinder browser launches. I am using the nukeWYSIWYG_3_6_3 Update 1
  
Back to top
View user's profile Send private message Visit poster's website
Palbin






PostPosted: Mon Jul 16, 2012 5:20 pm    Post subject: Reply with quote

spasticdonkey, is this a site I can get access too?
  
Back to top
spasticdonkey






PostPosted: Mon Jul 16, 2012 9:39 pm    Post subject: Reply with quote

Certainly, and thanks! Sent you a PM.
  
Back to top
Palbin






PostPosted: Mon Jul 16, 2012 11:35 pm    Post subject: Reply with quote

You did not have the latest files, but they were only minor problems and not the main problem. Also FYI I have included the following changes. http://www.ravenphpscripts.com/postx20549-0-0.html

While making sure you had the latest file I noticed a php error_log file in the elfinder directory. It was referencing the file inclusion on line 8 of theme.php. I changed line 8 and 10 to use NUKE_THEMES_DIR instead of INCLUDE_FILE . '/themes'.

It is important to note that that anything that is included when including mainfile.php needs to use one of these consents or have and absolute path instead of relative.
Code:


//Absolute Nuke directory
if (!defined('NUKE_BASE_DIR')) define('NUKE_BASE_DIR', dirname(__FILE__) . '/');
//Absolute Nuke directory + includes
if (!defined('NUKE_BLOCKS_DIR')) define('NUKE_BLOCKS_DIR', NUKE_BASE_DIR . 'blocks/');
if (!defined('NUKE_IMAGES_DIR')) define('NUKE_IMAGES_DIR', NUKE_BASE_DIR . 'images/');
if (!defined('NUKE_INCLUDE_DIR')) define('NUKE_INCLUDE_DIR', NUKE_BASE_DIR . 'includes/');
if (!defined('NUKE_LANGUAGE_DIR')) define('NUKE_LANGUAGE_DIR', NUKE_BASE_DIR . 'language/');
if (!defined('NUKE_MODULES_DIR')) define('NUKE_MODULES_DIR', NUKE_BASE_DIR . 'modules/');
if (!defined('NUKE_THEMES_DIR')) define('NUKE_THEMES_DIR', NUKE_BASE_DIR . 'themes/');
if (!defined('NUKE_ADMIN_DIR')) define('NUKE_ADMIN_DIR', NUKE_BASE_DIR . 'admin/');
if (!defined('NUKE_CLASSES_DIR')) define('NUKE_CLASSES_DIR', NUKE_BASE_DIR . 'classes/');
if (!defined('NUKE_ADMIN_MODULE_DIR')) define('NUKE_ADMIN_MODULE_DIR', NUKE_ADMIN_DIR . 'modules/');
if (!defined('NUKE_FORUMS_DIR')) define('NUKE_FORUMS_DIR', (defined('IN_ADMIN') ? './../' : 'modules/Forums/'));
  
Back to top
spasticdonkey






PostPosted: Tue Jul 17, 2012 12:01 am    Post subject: Reply with quote

Thanks for catching that and the theme code in question is old, so I'll look at removing it. Not sure how I ended up with old files as I just uploaded the original files then update files yesterday, but who knows....

Although now I'm getting:

[17-Jul-2012 00:52:10] PHP Fatal error: Access to undeclared static property: wysiwyg::$returnOutput in /xxx/xxx/xxx/xxx/mainfile.php on line 1089

when trying to use the editor
  
Back to top
Palbin






PostPosted: Tue Jul 17, 2012 12:06 am    Post subject: Reply with quote

Sorry did not notice that. Looking at it now.
  
Back to top
Palbin






PostPosted: Tue Jul 17, 2012 12:11 am    Post subject: Reply with quote

I did not upload all the latest files either Embarassed

P.S. I have updated the Update files a few times.
  
Back to top
spasticdonkey






PostPosted: Tue Jul 17, 2012 2:21 am    Post subject: Reply with quote

excellent work and thanks again. sounds like a good time to backup some files now that's it's working right Smile
  
Back to top
hicux






PostPosted: Fri Jul 20, 2012 8:59 pm    Post subject: Reply with quote

Showing the link properly

http://www.phpnuke-guild.org/downloads/nukeWYSIWYG_3_6_3%20Update%201.zip

Palbin

I did updated all the files but I am getting this error as well as spastic had it. Can u please specify what u did.

Quote:
Getting "Unable to connect to backend" message when the elFinder browser launches.
Shocked
  

Last edited by hicux on Thu Jan 17, 2013 9:09 pm; edited 2 times in total
Back to top
Display posts from previous:       
Post new topic   Reply to topic    nukeSEO.com Forum Index -> nukeWYSIWYG (tm) All times are GMT - 5 Hours
 Goto page Previous  1, 2, 3  Next
 Page 2 of 3

 

Jump to:   
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Powered by phpBB © 2001-2008 phpBB Group


Page Generation: 0.06 Seconds