Search found 7 matches

by rnd1530
Sun Mar 19, 2017 2:51 pm
Forum: Community chat
Topic: Single DB vs Multiple Files
Replies: 4
Views: 8432

Re: Single DB vs Multiple Files

I see, well, all is about personal preferences, for me makes more sense "one page - one file" so i can edit directly from ftp if i want instead of messing with "one line file/website" but your point of view is valid too of course. Regarding password filenames: i used hashed filename, something like:...
by rnd1530
Sun Mar 19, 2017 10:20 am
Forum: Community chat
Topic: Single DB vs Multiple Files
Replies: 4
Views: 8432

Single DB vs Multiple Files

Hello, just wondering, why moving from "one page - one file" to "all website on single file (database.js) ?
Pros and cons?
by rnd1530
Sat Mar 18, 2017 2:06 pm
Forum: 1.x.x beta support
Topic: [SOLVED] Absolute vs Relative Paths
Replies: 10
Views: 32767

Re: [SOLVED] Absolute vs Relative Paths

My version.
by rnd1530
Sat Mar 18, 2017 8:40 am
Forum: 1.x.x beta support
Topic: [SOLVED] Absolute vs Relative Paths
Replies: 10
Views: 32767

Re: Absolute vs Relative Paths

Solved! with my old .htaccess :-) now works like charm, time to play. #RedirectMatch 403 ^.*/files/ ErrorDocument 403   RewriteEngine on Options -Indexes RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond $1#%{REQUEST_URI} ([^#]*)#(.*)\1$ RewriteRule ^([^\.]+)$ ...
by rnd1530
Fri Mar 17, 2017 11:03 am
Forum: 1.x.x beta support
Topic: [SOLVED] Absolute vs Relative Paths
Replies: 10
Views: 32767

Re: Absolute vs Relative Paths

PHP Version 5.6.30

This happened after i changed my hosting plan, maybe the providers modified something on php.ini.
The unreleased version gives me same error, i will try to fix this :) or try to back 0.x.x and check... next week will have more free time.

Nevermind, i like challenges :)
by rnd1530
Thu Mar 16, 2017 9:44 am
Forum: 1.x.x beta support
Topic: [SOLVED] Absolute vs Relative Paths
Replies: 10
Views: 32767

Re: Absolute vs Relative Paths

Apache This url function needs to remove 2 "greater than" symbols and missing 1 escape '\' public static function url($location = null) { return (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on' ? 'https://' : 'http://').$_SERVER['HTTP_HOST'].str_replace($_SERVER['DOCUMENT_ROOT'], '', str_repla...
by rnd1530
Wed Mar 15, 2017 10:23 am
Forum: 1.x.x beta support
Topic: [SOLVED] Absolute vs Relative Paths
Replies: 10
Views: 32767

[SOLVED] Absolute vs Relative Paths

Hi, i had to change INC_ROOT', dirname(__FILE__)); by define('INC_ROOT', $_SERVER["DOCUMENT_ROOT"] );
Now i got an 500 Internal server error... learning htaccess...