21
kaotik
Re: mytube 1.5 final error..
  • 2010/5/6 10:03

  • kaotik

  • Just can't stay away

  • Posts: 861

  • Since: 2004/2/19


From what I see, none of those warnings should stop the module from working. If you turn off xoops debug you won't see them.

Those errors look like coding practices. You would have to go into each of those files and change how the code was done.
They look like variables being used before they are defined.
www.kaotik.biz



22
kaotik
Re: mail not working 2.4.4
  • 2010/5/6 9:51

  • kaotik

  • Just can't stay away

  • Posts: 861

  • Since: 2004/2/19


When does it not send emails? Notifications? New user registrations?
www.kaotik.biz



23
kaotik
Excellent theme repository
  • 2010/5/6 9:48

  • kaotik

  • Just can't stay away

  • Posts: 861

  • Since: 2004/2/19


I would to congratulate Burning (if I'm missing people sorry) on the great job done with the themes repository.

Have a virtual beer on me
www.kaotik.biz



24
kaotik
Re: RMCommon Utilities 2 and MyWords 2 (Alpha)
  • 2010/5/6 9:41

  • kaotik

  • Just can't stay away

  • Posts: 861

  • Since: 2004/2/19


Hi mjoel
I'll try to duplicate your problem and give you a solution.
www.kaotik.biz



25
kaotik
Re: RMCommon Utilities 2 and MyWords 2 (Alpha)
  • 2010/5/6 9:39

  • kaotik

  • Just can't stay away

  • Posts: 861

  • Since: 2004/2/19


Hi sarahmx
Regarding meta description, you are absolutely right, just missing some line of code. Try this that I provided for bjuti:

https://xoops.org/modules/newbb/viewtopic.php?post_id=327417#forumpost327417
www.kaotik.biz



26
kaotik
Re: How to update wfsection from 1.01 to 2.01 ?
  • 2010/5/5 18:10

  • kaotik

  • Just can't stay away

  • Posts: 861

  • Since: 2004/2/19


demo:
http://leetudestino.com/articulos/
The module supports SEO so you won't see '/modules/' in the url.

download of migration script:
http://code.google.com/p/jqueryxoops/downloads/list
www.kaotik.biz



27
kaotik
Re: How to update wfsection from 1.01 to 2.01 ?
  • 2010/5/5 18:07

  • kaotik

  • Just can't stay away

  • Posts: 861

  • Since: 2004/2/19


I've developed a migration script from smartsection to mywords.
However mywords is still in alfa stage. So you will have to wait until BitC3R0 finishes with the bug fix.
There is however a website with it deployed already. Let me search for the link..
www.kaotik.biz



28
kaotik
Re: Why should I use xoops? So convince me.
  • 2010/5/5 18:01

  • kaotik

  • Just can't stay away

  • Posts: 861

  • Since: 2004/2/19


I've been using xoops for a couple of years (my first posts are from 2004). Through this time I've constantly tried other cms's and frameworks. Right now I'm learning ruby on rails. Not because I need too but because web technology evolves quickly and you need to know what's cutting edge to know where the web is heading.
With that said, I still stick with xoops for several reasons:
-Xoops has been a framework before the term was popular.
-Flexibility. It offers all the flexibility I need through themes and modules.
-Die hard users. I've seen Xoops go through some tough ups and downs and it's still here. With new users experimenting and the old ones still coding a better core and modules. This counts for a LOT if your looking for a long term solution.

Are there better solutions? I'd say there's probably a tailored solution for each level of expertise. If you look around you will see other cms's/ frameworks have solved problems such as SEO in a different/better way then xoops.
In the end a cms counts for 50% of your website. A good part relies on your ability to customize your webpage to it's users. This means delving into php,css and javascript (unless you go the way of ruby on rails).
www.kaotik.biz



29
kaotik
Re: Migrate to Mywords - 1 script for multiple modules
  • 2010/5/4 11:22

  • kaotik

  • Just can't stay away

  • Posts: 861

  • Since: 2004/2/19


bjuti:
This will allow you to add custom descriptions and keywords per post. If you don't add them, the site will generate them automaticly.

open mywords/post around line 170 find:
//Trackback
if ($post->getVar('pingstatus')) {
    
$tb = new MWTrackback($xoopsConfig['sitename'], $editor->getVar('name'));
    
RMTemplate::get()->add_head(
            
$tb->rdf_autodiscover(date('r'$post->getVar('pubdate')), $post->getVar('title'), TextCleaner::getInstance()->truncate($post->content(true), 255), $post->permalink(), MWFunctions::get_url(true).$post->id(), $editor->getVar('name'))
    );
}


replace with this:
//Trackback
if ($post->getVar('pingstatus')) {
    
$tb = new MWTrackback($xoopsConfig['sitename'], $editor->getVar('name'));
    
RMTemplate::get()->add_head(
            
$tb->rdf_autodiscover(date('r'$post->getVar('pubdate')), $post->getVar('title'), TextCleaner::getInstance()->truncate($post->content(true), 255), $post->permalink(), MWFunctions::get_url(true).$post->id(), $editor->getVar('name'))
    );
}

$metaDesc=$post->get_meta('mymeta_desc',false);
$Mdesc substr($post_arr['text'], 0150);
$Mdesc=strip_tags($Mdesc);

if (empty(
$metaDesc)) {
    
$xoTheme->addMeta'meta''description'$Mdesc);
} else {
    
$xoTheme->addMeta'meta''description'$metaDesc);
}

$metaKeys=$post->get_meta('mymeta_keys',false);
if (empty(
$metaKeys)) {
    
$Mkeys=preg_replace('/s/',','$Mdesc); //replace all spaces with ,
    
$xoTheme->addMeta'meta''keywords'$Mkeys);
} else {
    
$xoTheme->addMeta'meta''keywords'$metaKeys);
}


Now edit your post and ADD these 2 custom fields:
mymeta_desc
-Used for description
mymeta_keys
-Used for keywords
www.kaotik.biz



30
kaotik
Re: SEO url's with mywords
  • 2010/5/4 10:41

  • kaotik

  • Just can't stay away

  • Posts: 861

  • Since: 2004/2/19


I'm working on a solution for that
www.kaotik.biz




TopTop
« 1 2 (3) 4 5 6 ... 59 »



Login

Who's Online

244 user(s) are online (151 user(s) are browsing Support Forums)


Members: 0


Guests: 244


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Mar 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits