441
Mamba
Re: Problems installing wgEvent 1.0.0 Alpha 1
  • 2022/5/31 9:54

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


You can download the latest XOOPS 2.5.11 Beta files from GitHub
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



442
goffy
Re: Problems installing wgEvent 1.0.0 Alpha 1
  • 2022/5/31 5:50

  • goffy

  • Just can't stay away

  • Posts: 535

  • Since: 2010/12/27


Hi

you must use XOOPS 2.5.11 Beta1

this module is not running under XOOPS 2.5.10 as it use the new features of XOOPS 2.5.11



443
nerdypant
ajax load mainfile.php returns 404
  • 2022/5/31 0:24

  • nerdypant

  • Just popping in

  • Posts: 2

  • Since: 2022/5/31


I am trying to call $.ajax from a php page and when I try to run
include_once dirname(dirname(__DIR__)) . '/mainfile.php';
It returns with a 404 not found. I think I have narrowed it down to something in the include/common.php being loaded from mainfile.php but I cannot figure out what is generating the 404.
I have done the same type of call in a different module and it appears to functions properly.

Any ideas on where I can track the issue down? I have debug on but get nothing. The onlt thinf I see in FF console is this
Status
404
Not Found
VersionHTTP/1.0
Transferred4.07 KB (3.55 KB size)
Referrer Policystrict-origin-when-cross-origin



php and xoops information:
PHP 7.4.3 (cli) (built: Mar 2 2022 15:36:52) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
with Zend OPcache v7.4.3, Copyright (c), by Zend Technologies
---------------
XOOPS Version XOOPS 2.5.10
PHP Version 7.4.3
mySQL Version 8.0.29-0ubuntu0.20.04.3
Server API apache2handler
OS Linux
fsockopen On
post_max_size 8M
max_input_time 60
output_buffering 4096
max_execution_time 30
memory_limit 128M
file_uploads On
upload_max_filesize 2M



444
cronywell
Problems installing wgEvent 1.0.0 Alpha 1
  • 2022/5/30 0:06

  • cronywell

  • Just popping in

  • Posts: 5

  • Since: 2022/4/29


Unable to install wgevents. Error(s):

Installing wgEvents

Failed to execute xoops_module_pre_install_wgevents


This module requires XOOPS 2.5.11 Beta1+ (2.5.10 installed)



445
Mamba
Re: Big problem with SQL
  • 2022/4/30 9:27

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


Again, I'm so sorry to hear it.

But I can't believe that they could not provide you with the database backup. If they got you all the other files, then obviously they still have access to the server, right?

I would ask them to explain to you what these files are, and how do you suppose to use them? Maybe they could convert these files to a mysql format?

Another way to get back your content, even if it would be very time consuming, is to use http://www.archive.org and then copy individual pages from Publisher there, e.g. your recipes.

Maybe you could even create a script that would go through all the Publisher posts by "id" number, and extract them from http://www.archive.org? Just thinking here loud...

Check your PM...
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



446
Zap_English
Re: Big problem with SQL

They're not log files

They're called xxx_binary-sql (with not file extension)

On further searching it sems they are only 32 bit check files and don't contain any sql details

So that's 20+ years of work down the toilet



447
Mamba
Re: Big problem with SQL
  • 2022/4/29 20:09

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


Sorry to hear about it!

I never did anything with the binary log files (I assume that we're talking about the binary log files).

Maybe this will help?

https://stackoverflow.com/questions/42374958/recover-lost-mysql-data

or this:

https://stackoverflow.com/questions/48554131/restore-mysql-database-using-binary-log-file-log-bin-on-windows

From this article: https://ottomatik.io/mysql-binary-logs-backup/, it seems like you my need an old mysqldump file as a starting point, and then you could apply the binary logs to restore it to the latest version.

Did you talk to them about getting you the MySQL files? If they still have access to the server, then they should be able to get you that?
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



448
Mamba
Re: newbb 5.0 error
  • 2022/4/29 19:58

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


What version of XOOPS and PHP do you use? This should had nothing to do with NewBB, but more with XOOPS. I would suggest to download the latest XOOPS Code and the NewBB 5.1 Beta 5 and have a fresh installation. I suspect, it has something to do with your local language file. The class XoopsLocalAbstract is located in /class/xoopslocal.php, and is being called in /language/english/locale.php
if (!class_exists('XoopsLocalAbstract')) {
    include_once 
XOOPS_ROOT_PATH '/class/xoopslocal.php';
}

/**
 * A Xoops Local
 *
 * @package             kernel
 * @subpackage          Language
 *
 * @author              Taiwen Jiang 
 * @copyright       (c) 2000-2016 XOOPS Project (http://www.xoops.org)
 */
class XoopsLocal extends XoopsLocalAbstract
{
    
/**
     * Number Formats
     *
     * @param  unknown_type $number
     * @return mixed
     */
    
public function number_format($number)
    {
        return 
number_format($number2'.'',');
    }

    
/**
     * Money Format
     *
     * @param  string $format
     * @param  string $number
     * @return money  format
     */
    
public function money_format($format$number)
    {
        
setlocale(LC_MONETARY'en_US');

        return 
money_format($format$number);
    }
}
Once you download the latest XOOPS code, you might compare your /language/spanish/locale.php to the /language/english/locale.php and see if there is any difference.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



449
cronywell
newbb 5.0 error
  • 2022/4/29 17:48

  • cronywell

  • Just popping in

  • Posts: 5

  • Since: 2022/4/29


Hello I need help, in the forum module newbb 5.0 comes out: Error : Error: Class 'XoopsLocalAbstract' not found How can I solve it?



450
Zap_English
Big problem with SQL

My webhost went out of business because of sanctions. The backup of my 20+ year old site they gave me doesn't have an SQL file. It has a 55 Mb Binary-sql file

Can that be chenged to SQL and used to install the database on the new server or am I F&^%ed ?




TopTop
« 1 ... 42 43 44 (45) 46 47 48 ... 29425 »



Login

Who's Online

354 user(s) are online (101 user(s) are browsing Support Forums)


Members: 0


Guests: 354


more...

Donat-O-Meter

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

Latest GitHub Commits