71
iHackCode
Re: Full Text RSS for Publisher module

this will show the whole body.

'description' => htmlspecialchars(strip_tags($item->plain_maintext(),'<br></ br>'), ENT_QUOTES)));
CBB / LatestNews / Publisher / XM-Spotlight

(ノ◕ヮ◕)ノ*:・゚✧



72
iHackCode
Re: xoops legacy version update

check the /include/version.php file, it should say define("XOOPS_VERSION", and some Xoops version number.

Xoops 1.3.10 was released back in 2003 so unless your project is really old it is probably one of the xoops2 versions. If it is a newer version, it would make upgrading easier because its not the core you may have issues with, but the modules. Xoops 2 introduces the smarty template engine which xoops 1 didn't have. The upgrade of the core files and database structure is easy, but as always Always do a backup of the Files and Database. Some would even suggest to test it out locally with wamp (http://wampserver.com) . There is a version of Xoops before when core devs began started removing the deprecated functions, I don't remember what version that was, but i would suggest to go to that version first. Maybe someone else knows what version that is.

If you decide to go with xoops 2.5.4, the release notes (in the news article and also included in the full package) has instructions on what to do to upgrade your site. the updater has scripts built in that will update your database schema which makes it easy. but problems may occur and if they do or u got any more questions feel free to post them.
CBB / LatestNews / Publisher / XM-Spotlight

(ノ◕ヮ◕)ノ*:・゚✧



73
iHackCode
Re: xoops legacy version update

can you recheck that version number, i believe it only went up to 1.3.10.

a link to a mirror of the old files.
http://ftp.heanet.ie/disk1/sourceforge/x/project/xo/xoops/OldFiles/
and this has a few more. (it has 1.3.10 in there)
http://underpop.free.fr/x/xo/xoops/index.php?sort=name
CBB / LatestNews / Publisher / XM-Spotlight

(ノ◕ヮ◕)ノ*:・゚✧



74
iHackCode
Re: Current and sub-menu

http://xoops.svn.sourceforge.net/viewvc/xoops/XoopsThemes/wox/trunk/

the template is /tpls/content.html using data from /config/theme.php

<div id="wox-submenu-container">
    <
div>
        <{if 
$xoops_dirname=='news'}>
        <{
$woxConfig.newsmenu}>
        <{elseif 
$xoops_dirname=='newbb'}>
        <{
$woxConfig.forummenu}>
        <{elseif 
$xoops_dirname=='smartfaq'}>
        <{
$woxConfig.faqmenu}>
        <{elseif 
$xoops_dirname=='repository'}>
        <{
$woxConfig.repomenu}>
        <{elseif 
$xoops_dirname=='extgallery'}>
        <{
$woxConfig.themesmenu}>
        <{elseif 
$xoops_dirname=='wfchannel'}>
        <{
$woxConfig.xoopsmenu}>
        <{/if}>
    </
div>
</
div>
CBB / LatestNews / Publisher / XM-Spotlight

(ノ◕ヮ◕)ノ*:・゚✧



75
iHackCode
Re: Could not copy the distribution file to mainfile.php while install xoops 2.5.4

run the checksum script to verify the files are correct and that you are not missing any files like mainfile.dist.php

instructions for the checksum script are in the release notes in the xoops package.
CBB / LatestNews / Publisher / XM-Spotlight

(ノ◕ヮ◕)ノ*:・゚✧



76
iHackCode
Re: CBB module - Adsense after first post doesn`t work

I believe the code in the faq is correct. in the cbb 3.08 template for the newbb_thread.html template is retrieved two different ways. by the file itself in the newbb/templates/newbb_thread.html file (some of the template files had it set up that way for some reason i dont really remember). so you will have to modify that file too.

if you already did that then, you will have to modify the template from the template admin in the xoops admin control panel. then clear the smarty cache.

if you need help with more specific instructions you can post your xoops version and someone should be able to guide you in the direction to make these changes.
CBB / LatestNews / Publisher / XM-Spotlight

(ノ◕ヮ◕)ノ*:・゚✧



77
iHackCode
Re: Blank Page Admin/Banners

Seems like a database problem to me. It didn't handle the client deletion properly.

How are you with phpmyadmin?
a possible solution:
Make a list of cid in the _bannerclient table. Then check the _banner table to see if any of them are using a cid that doesnt from that list. and in the _banner table change that cid of that banner to one that exists in the other table.
CBB / LatestNews / Publisher / XM-Spotlight

(ノ◕ヮ◕)ノ*:・゚✧



78
iHackCode
Sourceforge.net Blog (podcast): Michael Beck Talks About Xoops

Quote:
Rich: On today’s Sourceforge podcast, I’m speaking with Michael Beck, from the XOOPS project. XOOPS is a php content management system. You can use it to create and manage your website. It has a sophisticated admin interface, and it is over a decade old. This is a solid and mature project. Michael has been with the project for quite some time, and he’s going to talk with me about the project, the community, and how you can get involved.

Thanks for listening.


Click To Read/Listen More :http://sourceforge.net/blog/podcast-xoops/
CBB / LatestNews / Publisher / XM-Spotlight

(ノ◕ヮ◕)ノ*:・゚✧



79
iHackCode
Re: user insertion

Quote:

xoopdio wrote:
Actually I mix up activation_type and level data, the first one seems to set the admin registration but the second, I don't see how it operates ?


i should have put comments under the different activation_type's and here is a link to the 2.5's file, it looks easier to read.
http://dev.xoofoo.org/xoopsphpxref/251/nav.html?register.php.source.html#l134

and for the level attribute; level 1 is for people who are activated and level 0 is for those who are not. So everyone should be either a 0 or 1. Sometimes there are some greater than one, but the important thing is that they are greater than 0.

Some Extra info:
the 'groups' table controls the permissions. the permissions are set in the 'group_permission' table and the 'groups_users_link' stores who is in what groups.
CBB / LatestNews / Publisher / XM-Spotlight

(ノ◕ヮ◕)ノ*:・゚✧



80
iHackCode
Re: user insertion

Quote:

xoopdio wrote:

I tested the admin autentification code but as you said it seems to need more coding, as XOOPS doesn't seem to see it as it should.


i didn't include it, but its in the register.php file.
CBB / LatestNews / Publisher / XM-Spotlight

(ノ◕ヮ◕)ノ*:・゚✧




TopTop
« 1 ... 5 6 7 (8) 9 10 11 ... 93 »



Login

Who's Online

117 user(s) are online (84 user(s) are browsing Support Forums)


Members: 0


Guests: 117


more...

Donat-O-Meter

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

Latest GitHub Commits