Recommended Home BusinessWork at Home Business
Work at Home
Home Menu
· Work at Home
· Home Business Sign Up

· Submit Article
· Work from Home Topics
· Downloads
· Home Business Lists
· Links Directory
· Work at Home Forum


Quotes

Login

Username
Password
Remember Me

Join Mailing List
These are the newsletter(s) we have available:
BizWhiz News
Inspiration
Mufads Newsletter
You must login to subscribe to a newsletter.

Alexa Traffic Ranking

Who's Online
We have 27 guests and 0 members online

You are an anonymous user. You can register for free by clicking here


  FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Author Message
jsalatasOffline
Biz-Whizer


Joined: Mar 22, 2005
Posts: 34
Location: Athens, Greece
Status: Offline
Post   Posted: Apr 07, 2005 - 08:08 PM Reply with quote Back to top

Hello,
I just finished the developing of a custom basic CMS application for use by my SFI affiliates who don't have the required knowledge to build a web site from scratch.
You can find a demo site at http://8862746.web-gr.net/
The site's administration panel is located at http://8862746.web-gr.net/admin (you can login by using the password demo) and provides all the required (in my opinion) functionality.

Please feel free to share with me any ideas on how this site could be improved.

Thanks!!!

_________________
Internet Based Business Opportunity

Free Internet Based Business Opportunities Classifieds
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger
badbobrstOffline
Advanced Biz-Whizer


Joined: Jun 08, 2004
Posts: 125
Location: Anchorage Alaska
Status: Offline
Post   Posted: Apr 08, 2005 - 01:06 AM Reply with quote Back to top

Hello John,

I took a quick look at your new CMS, especially at the Visual Editor that the system uses, and I like it better than the Visual Editor used in the Powersite System. In fact, I noticed that it is an Open Source program. Would it be possible to substitute the FCK editor for the Visual Editor that we are using now? (Question for Mufad Smile )

The Site Configuration Panel also looks fairly simple to use.

One thing that I would definately include in the package is a tutorial that is written at a very basic level. If you don't have such a tutorial yet, let me know, and I might be able to help you with it. I wrote the basic tutorials for the Powersite System, and can probably be persuaded to do the same thing for your system.

_________________
Robert Thompson
http://www.stayathomejobs.net

To Learn how to get started in home business, visit http://stay-home-and-earn.com
View user's profile Send private message Visit poster's website AIM Address
jsalatasOffline
Biz-Whizer


Joined: Mar 22, 2005
Posts: 34
Location: Athens, Greece
Status: Offline
Post   Posted: Apr 08, 2005 - 04:45 AM Reply with quote Back to top

Hi Robert,
thanks for your comments

badbobrst wrote:
I took a quick look at your new CMS, especially at the Visual Editor that the system uses, and I like it better than the Visual Editor used in the Powersite System. In fact, I noticed that it is an Open Source program. Would it be possible to substitute the FCK editor for the Visual Editor that we are using now? (Question for Mufad Smile )


The fckeditor is the best (in my opinion) free online html editor you can find. It took me a lot of reasearch and testing to find that.
If I'm correct the powersite system is based on post-nuke CMS (or is it php-nuke?). If you search google for fckeditor and post-nuke you will find many articles on how to use those two. I can probably help you with that!

badbobrst wrote:
The Site Configuration Panel also looks fairly simple to use.

One thing that I would definately include in the package is a tutorial that is written at a very basic level. If you don't have such a tutorial yet, let me know, and I might be able to help you with it. I wrote the basic tutorials for the Powersite System, and can probably be persuaded to do the same thing for your system.

No I don't have a turorial yet. This is basically of my not so good knowledge of the English language. Furthermore I'm really bad at writing anything (I'm a technical guy Very Happy ).
Any help on that task would be great. Drop me an email if you're willing to help, to discuss more details about that.

Thanks again!

_________________
Internet Based Business Opportunity

Free Internet Based Business Opportunities Classifieds
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger
badbobrstOffline
Advanced Biz-Whizer


Joined: Jun 08, 2004
Posts: 125
Location: Anchorage Alaska
Status: Offline
Post   Posted: Apr 08, 2005 - 04:22 PM Reply with quote Back to top

Hello John,

I did a little searching on a couple of forums concerning postnuke and the fckeditor and found the following;

http://cvs.sourceforge.net/viewcvs.py/marksmodules/modules/FCKEditor/

Maybe Mufad can take a look at it for possible inclusion in powersite.

_________________
Robert Thompson
http://www.stayathomejobs.net

To Learn how to get started in home business, visit http://stay-home-and-earn.com
View user's profile Send private message Visit poster's website AIM Address
mufadOffline
Senior Biz-Whizer


Joined: Apr 07, 2004
Posts: 81

Status: Offline
Post   Posted: Apr 15, 2005 - 07:22 PM Reply with quote Back to top

In postnuke, the code in the footer that automatically changes all textareas to use the visual editor is
Code:

<!--Visual Editor Plug-in--><script type="text/javascript">QBPATH='/javascript'; VISUAL=0; SECURE=1;</script><script type="text/javascript" src='/javascript/quickbuild.js'></script><script type="text/javascript" src='/javascript/tabedit.js'></script>


I studied the install of fckeditor, it does not lend itself to this format, it requires that each text area on the page be individually named and marked for fckeditor use.

Anyway, I found http://forums.postnuke.com/index.php?name=PNphpBB2&file=viewtopic&t=18723

I will have a go at replacing the add stories and edit stories to use the fckeditor, it will require change in several places.
If anyone finds a better solution please let me know,
Robert, the link you sent, how did you find it ? I dont see how the editor can be a module in postnuke, there is no documentation on that site, we should find a way to contact the author and ask them if the module is in completion stage and what is its purpose.
Mufad.
View user's profile Send private message Visit poster's website Yahoo Messenger
jsalatasOffline
Biz-Whizer


Joined: Mar 22, 2005
Posts: 34
Location: Athens, Greece
Status: Offline
Post   Posted: Apr 15, 2005 - 07:34 PM Reply with quote Back to top

Hello Mufad,
just some advise:
Do not use fckeditor as a client side object using javascript code:
<script type="text/javascript">
<!--
var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
oFCKeditor.BasePath = '/FCKeditor/' ;
oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;
oFCKeditor.Create() ;
//-->
</script>

Instead use it as an object created at the server side:
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/FCKeditor/';
$oFCKeditor->Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.';
$oFCKeditor->Create() ;
?>




I noticed that sometimes (long contents that are fetched from a database and contain newline characters) "break" in the javascript code.

_________________
Internet Based Business Opportunity

Free Internet Based Business Opportunities Classifieds
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger
badbobrstOffline
Advanced Biz-Whizer


Joined: Jun 08, 2004
Posts: 125
Location: Anchorage Alaska
Status: Offline
Post   Posted: Apr 23, 2005 - 09:07 PM Reply with quote Back to top

Hello Mufad,

Sorry it took so long to respond to this thread. Have you looked at this thread at Marks Modules?

http://cvs.sourceforge.net/viewcvs.py/marksmodules/modules/FCKEditor/pnadmin.php?rev=1.1&view=markup

A lot of this stuff is way above my knowledge level, but it might mean more to you.

_________________
Robert Thompson
http://www.stayathomejobs.net

To Learn how to get started in home business, visit http://stay-home-and-earn.com
View user's profile Send private message Visit poster's website AIM Address
crossfadersOffline
Biz-Whizer


Joined: Jul 20, 2007
Posts: 10

Status: Offline
Post   Posted: Jul 31, 2007 - 06:24 PM Reply with quote Back to top

hmm, i get this error: "Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/webgrn80/public_html/8862746/index.php on line 41"
View user's profile Send private message
Display posts from previous:     
Jump to:  
All times are GMT
Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Powered by PNphpBB2 © 2003-2004 PNphpBB Group

The Biz-Whiz Work from Home Community
Google
Search WWW Search Biz-Whiz.com