911
alain01
bbcode and url
  • 2021/4/6 14:51

  • alain01

  • Just can't stay away

  • Posts: 530

  • Since: 2003/6/20


Hi,
I noticed a thing on the URL bbcode
Is it only for a standard URL ?

I explain the problem here:
I want to write only the absolute link from the root of the website

Example:
The URL is:
Quote:but I want to write
Quote:
/modules/xmnews/article.php?news_id = 35

BBCode turns this link into
Quote:
modules/xmnews/article.php?news_id=35
(Without "/")
so the link is bad.

A solution ?
- I should use an html link with an href = "" ?
- This BBCode only works for a standard URL ?
- Others?



912
alain01
Re: Error in the themes, xbootstrap and xswatch?
  • 2021/4/4 18:17

  • alain01

  • Just can't stay away

  • Posts: 530

  • Since: 2003/6/20


Hi,
Right,
I didn't notice but yes !!!
Content is on top in these themes but you can modify it.

See theme.tpl (xswatch)
<div class="row">
    <{
includeq file="$theme_name/tpl/leftBlock.tpl"}>
    <{
includeq file="$theme_name/tpl/content-zone.tpl"}>
    <{
includeq file="$theme_name/tpl/rightBlock.tpl"}>
div>

So then see /tpl/content-zone.tp
<{includeq file="$theme_name/tpl/contents.tpl"}>

                <
div class="row">
                    <{
includeq file="$theme_name/tpl/centerBlock.tpl"}>
                    <{
includeq file="$theme_name/tpl/centerLeft.tpl"}>
                    <{
includeq file="$theme_name/tpl/centerRight.tpl"}>
                div>

So, content is located BEFORE center blocs
So you can modify like that :
<div class="row">
                    <{
includeq file="$theme_name/tpl/centerBlock.tpl"}>
                    <{
includeq file="$theme_name/tpl/centerLeft.tpl"}>
                    <{
includeq file="$theme_name/tpl/centerRight.tpl"}>
                div>
                <{
includeq file="$theme_name/tpl/contents.tpl"}>



913
Mamba
Re: index.html vs. index.php
  • 2021/4/3 14:32

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


See: https://github.com/XOOPS/XoopsCore25/pull/889

Quote:
Replace index.html files with javascript with index.php files that will cause a 404 error if accessed.


So all the index.html containing:
<script>history.go(-1);script>


Should be replaced with index.php:
header('HTTP/1.0 404 Not Found');


You can use the "IndexScan" module to find out which folders are missing the index.php file.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs



914
goffy
index.html vs. index.php
  • 2021/4/3 10:47

  • goffy

  • Just can't stay away

  • Posts: 535

  • Since: 2010/12/27


Hi

I see that in some modules the developers use index.php instead of index.html

is there a special reason for this?



915
edipinho
Error in the themes, xbootstrap and xswatch?
  • 2021/4/3 3:27

  • edipinho

  • Not too shy to talk

  • Posts: 107

  • Since: 2003/10/15


In the themes, xbootstrap and xswatch, it is happening that the contents of the modules are appearing on the top wall of the blocks, in the old themes it continues to work perfectly, they appear in the center of the blocks, between the upper blocks and the lower blocks.

I'm having trouble figuring out the fault, please any help is welcome

Resized Image



916
Mage
Xmdoc version 1.2 Final Released
  • 2021/3/30 19:54

  • Mage

  • Core Developer

  • Posts: 206

  • Since: 2009/8/2 1


Hello,

We are happy to announce the release of version 1.2 of the module xmdoc.

This version brings 2 major new features:

- Addition of a system allowing to force the download
- Categories now have a color.

The complete list:

-------------------------------------------------
Version: 1.2 Final
Date: 30.03.2021
-------------------------------------------------
Bug fixes:
- In some cases, documents were not displayed when creating an item.
- The error message when removing the link from a document was not displayed.
- If several categories were selected when editing blocks, they were no longer selected when editing the block again.

Improvements:
- Addition of a system allowing to force the download (only the files on the site will be forced).
- By default the option to rename documents (in categories) is set to false.
- Documents with the "rename documents" category option set to false have a suffix added so as not to overwrite a document with the same name.
- The name of the document is reconstructed when downloading.
- Categories now have a color.
- The names of the categories in the administration (list view) now have a link which allows direct access to the category on the user side.
- The names of the documents in the administration (list view) now have a link which allows direct access to the document on the user side (only if the modal display is not used).
- Compatibility with PHP 8.

Security:
- The message under the about heading regarding file protection is now revised, with the new system that forces a .htaccess download with "Deny From All" to work.
- Change from index.html to index.php

Xmdoc on http://www.monxoops.fr



917
squale
Re: NewBB 5.01 Beta 4 (XOOPS 2.5.11, PHP 7.2 - 8.0)
  • 2021/3/29 14:00

  • squale

  • Just popping in

  • Posts: 3

  • Since: 2003/7/29


PHP 7.3 / Xoops 2.5.10

sorry for the delay . I forgot to tick the response notification.



918
Yurdal
Re: Need Help About Migrating WordPress To XOOPS
  • 2021/3/27 17:02

  • Yurdal

  • Friend of XOOPS

  • Posts: 386

  • Since: 2005/3/27


The reason not opening on win 7 can have different reasons

1. Older SSL protocols are not supported on most of the webservers
2. Your browser dont work god with Win 7

Make a test : https://ssl-tools.net/webservers/silicophilic.com
your server only supports TLS v1.2
Try this:
https://manage.accuwebhosting.com/knowledgebase/3008/How-do-I-enable-TLS-1-2-on-Windows-7.html



919
CaseyBayer
Need Help About Migrating WordPress To XOOPS
  • 2021/3/27 13:55

  • CaseyBayer

  • Just popping in

  • Posts: 1

  • Since: 2019/11/14


Hello everyone. I am managing one small blog site. It's on WordPress. Don't know why but my blogsite is not opening on older Windows 7 PCs. Now it I migrate my website from WordPress to XOOPS, will I face the same issue here too? Any kind of feedback would be greatly appreciated.



920
Mamba
Re: NewBB 5.01 Beta 4 (XOOPS 2.5.11, PHP 7.2 - 8.0)
  • 2021/3/27 13:49

  • Mamba

  • Moderator

  • Posts: 11373

  • Since: 2004/4/23


Thank you very much for the report. I'll look into it and hopefully we can reproduce it and fix it for the next release.

What PHP version are you using?
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs




TopTop
« 1 ... 89 90 91 (92) 93 94 95 ... 29425 »



Login

Who's Online

509 user(s) are online (342 user(s) are browsing Support Forums)


Members: 0


Guests: 509


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