1
Angela78
Re: Yogurt - news from suico
  • 2010/5/23 13:41

  • Angela78

  • Just popping in

  • Posts: 27

  • Since: 2009/5/9 1


I know that is so sad! I recall reading that here on the forums he looked so young!



2
Angela78
MP Manager 2.75 question & XOOPS 2.4.4
  • 2010/2/9 22:04

  • Angela78

  • Just popping in

  • Posts: 27

  • Since: 2009/5/9 1


Hello all I upgraded from 2.3.3 to the latest XOOPS 2.4.4 I also upgraded my MP Manager before the upgrade in the user menu the Inbox would go to the MP Manger page & not the reg. PM page I can not recall how I did that LOL any help would be great I'm pretty sure I had modified the viewpmsg.php in the main index Just can't recall how.

all the pm pop up boxes work great I just need it to also work in the usermenu



3
Angela78
Re: Yogurt.. let's start hacking
  • 2009/6/11 16:28

  • Angela78

  • Just popping in

  • Posts: 27

  • Since: 2009/5/9 1


on some modules I have a few... newwbb a wordpress blog & a few more it may open yogurt with out the uid so it would redirect a members like the members was a guest & go to the admin yogurt profile



4
Angela78
Re: Yogurt Scrapbook Timestamp
  • 2009/6/11 12:36

  • Angela78

  • Just popping in

  • Posts: 27

  • Since: 2009/5/9 1



I'll try to look into that today



5
Angela78
Re: Yogurt website url not posting correct
  • 2009/6/10 14:09

  • Angela78

  • Just popping in

  • Posts: 27

  • Since: 2009/5/9 1


After going to the pages and looking at the html code the userinfo.php from he profile/userinfo.php code for the link looks like this

<tr>                         <td class="head">Website</td>                         <td class="even"><a href="http://www.effigyparanormal.com"   rel="external">www.effigyparanormal.com</a></td>                     </tr>



The code for the yogurt/index.php looks like this

<class="even"> <img src="images/url.gif" /> <span class="yogurt-profileinfo-label">Website:</span><span class="yogurt-profileinfo-value"><a href="www.effigyparanormal.com" target="_blank">www.effigyparanormal.com</a></span></p>


thats when viewing the website online & viewing the source code so the yogurt mod prints them different than the profile mod?



6
Angela78
Yogurt website url not posting correct
  • 2009/6/10 13:49

  • Angela78

  • Just popping in

  • Posts: 27

  • Since: 2009/5/9 1


Hello all I have a small problem in the yogurt profiles like this onehttp://paranormalsos.com/sosportal/modules/yogurt/index.php?uid=80

if a person enters a web-address like this www.effigyparanormal.com when clicked on it goes to here (http://paranormalsos.com/sosportal/modules/yogurt/www.effigyparanormal.com)

Yet in the reg. profiles as seen herehttp://paranormalsos.com/sosportal/modules/profile/userinfo.php?uid=80

it works fine?

Could some one point me to the area in yogurt where this need to be changed?

If you need to log in to see the profile here is a guest account set up

Guest Login: ghostly_guest (Password) 1234567

Thanks,
Angela



7
Angela78
Re: Yogurt.. let's start hacking
  • 2009/6/10 13:05

  • Angela78

  • Just popping in

  • Posts: 27

  • Since: 2009/5/9 1


The code listed below works best like this

header("location: ./modules/yogurt/index.php" . (empty($_SERVER['QUERY_STRING']) ? "" "?" $_SERVER['QUERY_STRING']) );      exit();


Sorry for quoting myself I seen no way to edit my own post lol

Quote:

Angela78 wrote:
Quote:

bprado wrote:
Hi, i have XOOPS 2.3.3 i put this hack, and is not working!!!

Hack to make the yogurt userpage as the main userpage of your site:

Open userinfo.php in the root of your site, search at the very beggining of the file for

$uid = intval($_GET['uid']);
if ($uid <= 0) {
redirect_header('index.php', 3, _US_SELECTNG);
exit();
}

Add after this the following lines:

header("Location:".XOOPS_URL."/modules/yogurt/index.php?uid=".$uid);
exit();

Can someone help me??? I need to put the yogurt instand of the normal profile of Xoops!


Here is what I did not sure if it will work for you?

I have Yogurt 3.3 On XOOPS 2.3.3

I copied the profile/userinfo.php into the root of the yogurt mod.

In the Main XOOPS root you'll find a file call userinfo.php

you'll need to change the header location here This is right at the start of that file

//$xoopsOption['pagetype'] = 'user';  include 'mainfile.php';  $module_handler = xoops_gethandler('module');  $profile_module = $module_handler->getByDirname('profile');  if ($profile_module && $profile_module->getVar('isactive')) {      header("Location:".XOOPS_URL."/modules/yogurt/index.php?uid=".$uid); exit(); }


if you just change the xoops/userinfo.php with out copying the profile/userinfo.php to yogurt root it will give an error like the page doesn't exist



8
Angela78
Re: Yogurt.. let's start hacking
  • 2009/6/7 18:05

  • Angela78

  • Just popping in

  • Posts: 27

  • Since: 2009/5/9 1


Quote:

bprado wrote:
Hi, i have XOOPS 2.3.3 i put this hack, and is not working!!!

Hack to make the yogurt userpage as the main userpage of your site:

Open userinfo.php in the root of your site, search at the very beggining of the file for

$uid = intval($_GET['uid']);
if ($uid <= 0) {
redirect_header('index.php', 3, _US_SELECTNG);
exit();
}

Add after this the following lines:

header("Location:".XOOPS_URL."/modules/yogurt/index.php?uid=".$uid);
exit();

Can someone help me??? I need to put the yogurt instand of the normal profile of Xoops!


Here is what I did not sure if it will work for you?

I have Yogurt 3.3 On XOOPS 2.3.3

I copied the profile/userinfo.php into the root of the yogurt mod.

In the Main XOOPS root you'll find a file call userinfo.php

you'll need to change the header location here This is right at the start of that file

//$xoopsOption['pagetype'] = 'user';  include 'mainfile.php';  $module_handler = xoops_gethandler('module');  $profile_module = $module_handler->getByDirname('profile');  if ($profile_module && $profile_module->getVar('isactive')) {      header("Location:".XOOPS_URL."/modules/yogurt/index.php?uid=".$uid); exit(); }


if you just change the xoops/userinfo.php with out copying the profile/userinfo.php to yogurt root it will give an error like the page doesn't exist



9
Angela78
Re: Yogurt Social Network 2.9 BETA
  • 2009/6/5 17:35

  • Angela78

  • Just popping in

  • Posts: 27

  • Since: 2009/5/9 1


using this

<{ if $isUser==}> 
content for members of your site 
<{else}> 
content for non members <{ /if }>


How would that be coded to show yogurt member search or maybe a list of users? is there an example of what should go here content for non members

Thanks,
Angela



10
Angela78
Re: Yogurt users can't Change Password after profile hack
  • 2009/5/30 15:40

  • Angela78

  • Just popping in

  • Posts: 27

  • Since: 2009/5/9 1


I agree they also lose the option to delete their own account. I would love to see those option added to yogurt as well




TopTop
(1) 2 3 »



Login

Who's Online

174 user(s) are online (118 user(s) are browsing Support Forums)


Members: 0


Guests: 174


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