41
culex
Re: XOOPS 2.6.0 Alpha 1 Testing
  • 2012/9/10 14:52

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Bug trackid 3566324

When deleting imagecategory id:1 action posted is id:0

Solution
in modules\system\admin\images\main.php line 554

replace
$imgcat_id $system->cleanVars($_POST'imgcat_id'0'int');


with
$imgcat_id $system->cleanVars($_GET'imgcat_id'0'int');


Could be more _POSTS needing to be replace.
Programming is like sex:
One mistake and you have to support it for the rest of your life.



42
culex
Re: XOOPS 2.6.0 Alpha 1 Testing
  • 2012/9/10 12:49

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Found another using wamp local server..

I get this error in "modules/system/admin.php?fct=images&op=editcat&imgcat_id=1"

Argument 1 passed to SystemImagecatForm::__construct() must be an instance of XoopsImageinstance of XoopsImagecategory givencalled in /class/xoops.php on line 932 and defined i filen /modules/system/class/form/imagecat.php linje 30


No solution to this one yet, but I'll continue testing

Sourceforge tracker 3566116
Programming is like sex:
One mistake and you have to support it for the rest of your life.



43
culex
Re: XOOPS 2.6.0 Alpha 1 Testing
  • 2012/9/8 15:51

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Quote:


Mamba Quote: I can confirm that blocks are not draggable. Hmm, don't have these problems with PHP 5.3.15 and PHP 5.4.5 Can somebody else confirm the issues, and specify the platform they are using?


It's due to double including jquery.ui.

One inclusion from /media/jquery/plugins/ wich is UI version 1.70 AND another including from /media/plugins/ui/ wich is the new ui version 1.83...

Problem is the old overwrites the new in the header giving dom error "d is undefined" in the browser..

Solution is to locate
addScript($xoops->url('/media/jquery/plugins/jquery.ui.js'));


and replace with
addScript($xoops->url('/media/jquery/ui/jquery.ui.js'));


in all of the following files
Modules/Banners/index.php
Modules/Banners/banners.php
Modules/Banners/clients.php
Modules/protector/Admin/Advisory.php
Modules/System/Admin/blocksadmin/Main.php
Modules/System/Themes/Default/Default.php

I have posted in tracker also
drag n' drop issue
Programming is like sex:
One mistake and you have to support it for the rest of your life.



44
culex
Re: JQuery UI formdatepicker
  • 2012/7/1 12:00

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Quote:

you can see there are some other new functions like HijriDate.
So IMO it is better to move the whole customizations (definitions for Garegorian Calendar and definitions + functions for other calendars) to language folder.


I see I misunderstood the problem a little But I would agree the solution with the language defined javascript dom check is working pretty good.

I use this also in smallworld. Where a seperate language folder contains javascript defines and eventual functions for each language.
Programming is like sex:
One mistake and you have to support it for the rest of your life.



45
culex
Re: JQuery UI formdatepicker
  • 2012/6/30 13:08

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


With php 5.3 using the datetime class would be a solution.

Example

$date "08/04/2011"// Datepicker format

$obj DateTime::createFromFormat('d/m/y'$date);
$timestamp $obj->getTimestamp();
Programming is like sex:
One mistake and you have to support it for the rest of your life.



46
culex
Re: Smallworld and XIM - features not working
  • 2012/6/25 14:36

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Programming is like sex:
One mistake and you have to support it for the rest of your life.



47
culex
Re: Social Network module
  • 2012/6/25 14:34

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Hey guys. After xoops 2.5.5 I had reports of some bugs occuring in Smallworld especially working together with Xim.

The problemes should be fixed in this RC 9 update.

Smallworld extends jquery in a few places but this local version of Jquery is overwritten by Xoops internal Jquery and extensions are lost. I have added a version check to use latest version only thus preventing this. Plus some more bugfixes.

Also a single bugfix for Xim messenger, preventing jSon error.
Xim update

Smallworld have an option to use 2 ways to gather country/city information. Geonames database and Google maps. Switching between the 2 after users sign up is however a no-no because the saved info dont work well together and users will have to edit profile with this change.

I have some plans to drop the geonames plugin, Google maps seem to be doing the best job anyway and this could solve any future problems. Any ideas ?

Changelog for smallworld RC 9
------------------------------
Changelog v.1.15 RC 9
------------------------------
25 June 2012 Revision 9645 9713

ChangeTypos corrected (Defkon1)
ChangeCountry flags is replaced in imagesto be used by geonames.js plugins
BugfixAccidently xoops error logger is trueNow set to false to return valid jSon
BugfixSmallworld jquery.js and jquery.ui.js is extended after load then overwritten by xoops javascriptSpecial check for xoops version is included in core.php
BugfixJson array using illegal whitespace in ajax
BugfixGeonames.js plugin using country maps in dropdown
BugfixReplace country code by image using geonames plugin Vs country text using google maps


Download smallworld 1.15 RC 9 updates here
Programming is like sex:
One mistake and you have to support it for the rest of your life.



48
culex
Re: Smallworld and XIM - features not working
  • 2012/6/17 10:49

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Hey Alanbax and thanks for wanting to use xim and smallworld.

A few months ago I made some changes to Xim since it was a bit unstable with theme jquery or in a single case running along side another module using jquery (dont remember) wich.

I would really like to monitor the modules running in some way. Could you send me a link ?

You can send to my email if you have a link
culex [at] culex.dk
Programming is like sex:
One mistake and you have to support it for the rest of your life.



49
culex
Re: Social Network module
  • 2012/6/14 12:20

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Typos are corrected in trunk, thanks Defkon1.
Programming is like sex:
One mistake and you have to support it for the rest of your life.



50
culex
Re: Social Network module
  • 2012/6/12 15:07

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Hey guys, I have been monster-busy at work so very little time has been put into smallworld these days.. A little did I do though.

Thanks for the input and help.

Some changes from the input in this thread and some of my own

Download from here

------------------------------
Changelog v.1.15 RC 8
------------------------------
12 June 2012 Revision 9540 9642

BugfixUpdates were not embedded when submitting update
BugfixFixed wrong avatar showing in mail when replying comment update
BugfixReplaced icon_start.png to correct version
ChangeA bit of styling to upload screen
ChangeAdded a jquery each using regex to filter all mp3 to be used in oembed -> showing audio player
ChangeAjusted jquery for fileupload maxheight is 40of screen
ChangeWrote to new plugins for oembed so xoops news and mp3 files are automatic embedded in updates
ChangeAdjusted margin in download css/jquery.fileupload-ui.css
ChangeAdjusted height in download window
ChangeAdjusted credits
changeAdded height innerHeight to show gallery
ChangeFrench translations (Cesag)




P.S. Congrats for the award Cesag, very well deserved
Programming is like sex:
One mistake and you have to support it for the rest of your life.




TopTop
« 1 2 3 4 (5) 6 7 8 ... 49 »



Login

Who's Online

219 user(s) are online (149 user(s) are browsing Support Forums)


Members: 0


Guests: 219


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