71
sudhaker
Re: ready for all criticism ;)
  • 2004/3/22 15:30

  • sudhaker

  • Not too shy to talk

  • Posts: 117

  • Since: 2003/2/6 2



Great work dude.

Herko already said about header.

Whole footer is shifting right in Opera 7.23. Try to fix that if possible.

Giving a little credit to Xoops2 will be highly appreciated by whole community.

Good work - Keep it up.



72
sudhaker
Re: Why my site error????!!! HELP ME
  • 2004/3/13 4:59

  • sudhaker

  • Not too shy to talk

  • Posts: 117

  • Since: 2003/2/6 2



I think you have got access to your database via phpMyAdmin. If yes, follow these steps.

XOOPS_ROOT/themes/default exists and it has all original files what comes with the original distribution.

Then open xoops_config table using phpMyAdmin and look for 'conf_name' is 'theme_set' (most probably 'id' is 7). Set 'conf_value' to 'default' - You are set.

Remove files from cache and template_c directory if required.

Waiting for your feedback YIM me if required...




73
sudhaker
Re: Xoops Dev - Can we get PSD?
  • 2004/3/13 4:46

  • sudhaker

  • Not too shy to talk

  • Posts: 117

  • Since: 2003/2/6 2


Thanks buddy.

I was also looking for the 367 x 53 logo, what appears on mydownload, weblinks - typically located in modules/module_name/image/logo.gif




74
sudhaker
Re: Xoops Dev - Can we get PSD?
  • 2004/3/13 3:07

  • sudhaker

  • Not too shy to talk

  • Posts: 117

  • Since: 2003/2/6 2


And the same for logo that appears on admin panel?

Thanks,




75
sudhaker
Xoops Dev - Can we get PSD?
  • 2004/3/13 3:05

  • sudhaker

  • Not too shy to talk

  • Posts: 117

  • Since: 2003/2/6 2



Can we get PSD used for logo.gif in all XOOPS core module?

Thanks,



76
sudhaker
More attributes required for USER
  • 2004/3/12 22:47

  • sudhaker

  • Not too shy to talk

  • Posts: 117

  • Since: 2003/2/6 2


My site user has more attribute's requirement than currently provided in XOOPS core. As for example address, phone, job, company and many others.

What is the best way to address this requirement?

I was thinking of writing one module, which will have another table to store those extra data. Obviously the same module will have it's management screens too.

Any suggestion will be highly appreciated. Thanks in advance



77
sudhaker
Time Zone Drop Down Is Too Wide To Fit In User Profile
  • 2004/3/10 14:25

  • sudhaker

  • Not too shy to talk

  • Posts: 117

  • Since: 2003/2/6 2



https://xoops.org/edituser.php

I was trying to make a fixed width theme and this page was having problem because of Time Zone drop-down.

Any strategy about how to handle this? CSS width is fixing that but all drop down will get affected



78
sudhaker
user1 and user2
  • 2004/3/10 4:51

  • sudhaker

  • Not too shy to talk

  • Posts: 117

  • Since: 2003/2/6 2


I saw user1 and user2 area in mambo. And that gives header, left, center, right, footer plus 2 more layout area

Having these extra area will enable theme designer to make flexible layouts, hence more suitable for enterprise market. Otherwise all sites are looking pretty much same in layout no matter what they use - nuke, pn or xoops.

I love XOOPS - mainly because it is neat and it talks oops Wish XOOPS can do what mambo does...







79
sudhaker
Re: Raising XoopsSessionHandler issue again
  • 2004/3/9 15:51

  • sudhaker

  • Not too shy to talk

  • Posts: 117

  • Since: 2003/2/6 2


done



80
sudhaker
Raising XoopsSessionHandler issue again
  • 2004/3/9 14:24

  • sudhaker

  • Not too shy to talk

  • Posts: 117

  • Since: 2003/2/6 2



Ref:https://xoops.org/modules/newbb/viewtopic.php?topic_id=13891&forum=8#forumpost55849

Inside the method write() of class XoopsSessionHandler, a QUERY decides what to run next, INSERT or UPDATE. So there is always 2 SQL query per session write.

As INSERT will happen just once per session, so trying to UPDATE first and if it fails then doing INSERT can be more efficient way of handling the same.

This will save 1 SQL query for any further request.

I tried it on SQLite with this code, working fine.

$sql = sprintf("UPDATE %s SET sess_updated = %u, sess_data = '%s' WHERE sess_id = '%s'", 'session', time(), $sess_data, $sess_id);
//echo "Debug: $sql <br>";
sqlite_query($this->db, $sql);
if (sqlite_changes($this->db) != 1)
{
$sql = sprintf("INSERT INTO %s (sess_id, sess_updated, sess_ip, sess_data) VALUES ('%s', %u, '%s', '%s')", 'session', $sess_id, time(), $_SERVER['REMOTE_ADDR'], $sess_data);
//echo "Debug: $sql <br>";
sqlite_query($this->db, $sql);
}
return true;




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



Login

Who's Online

232 user(s) are online (153 user(s) are browsing Support Forums)


Members: 0


Guests: 232


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