This topic was marked solved by Nao, on March 27th, 2014, 11:48 AM
« [Aeva] Soundcloud
I can not install

gevv

  • Posts: 91
Re: I can not install
« Reply #15, on March 23rd, 2014, 10:33 AM »
hi,

create subdomain  and Cpanel / PHP Configuration subdomain folder / set php 5.3  (.htaccess file automatic add php 5.3 code)
Quote
# Use PHP53 as default
AddHandler application/x-httpd-php53 .php
<IfModule mod_suphp.c>
    suPHP_ConfigPath /opt/php53/lib
</IfModule>
and   I began my installation . In the upper left corner in the setup screen appeared a little problem (_DIR__/install/install.php line 21

I continued with the installation  no problem  installation is complete

I checked the error log file   14 errors

Code: [Select]
[23-Mar-2014 03:50:31 America/Chicago] PHP Notice:  Constant ROOT_DIR already defined in /home3/xxx/public_html/we/install/install.php on line 21
[23-Mar-2014 03:50:31 America/Chicago] PHP Notice:  Constant APP_DIR already defined in /home3/xxx/public_html/we/install/install.php on line 22
[23-Mar-2014 03:50:47 America/Chicago] PHP Notice:  Constant ROOT_DIR already defined in /home3/xxx/public_html/we/install/install.php on line 21
[23-Mar-2014 03:50:47 America/Chicago] PHP Notice:  Constant APP_DIR already defined in /home3/xxx/public_html/we/install/install.php on line 22
[23-Mar-2014 03:51:12 America/Chicago] PHP Notice:  Constant ROOT_DIR already defined in /home3/xxx/public_html/we/install/install.php on line 21
[23-Mar-2014 03:51:12 America/Chicago] PHP Notice:  Constant APP_DIR already defined in /home3/xxx/public_html/we/install/install.php on line 22
[23-Mar-2014 03:51:32 America/Chicago] PHP Notice:  Constant ROOT_DIR already defined in /home3/xxx/public_html/we/install/install.php on line 21
[23-Mar-2014 03:51:32 America/Chicago] PHP Notice:  Constant APP_DIR already defined in /home3/xxx/public_html/we/install/install.php on line 22
[23-Mar-2014 03:51:39 America/Chicago] PHP Notice:  Constant ROOT_DIR already defined in /home3/xxx/public_html/we/install/install.php on line 21
[23-Mar-2014 03:51:39 America/Chicago] PHP Notice:  Constant APP_DIR already defined in /home3/xxx/public_html/we/install/install.php on line 22
[23-Mar-2014 03:51:45 America/Chicago] PHP Notice:  Constant ROOT_DIR already defined in /home3/xxx/public_html/we/install/install.php on line 21
[23-Mar-2014 03:51:45 America/Chicago] PHP Notice:  Constant APP_DIR already defined in /home3/xxx/public_html/we/install/install.php on line 22
[23-Mar-2014 03:52:05 America/Chicago] PHP Notice:  Constant ROOT_DIR already defined in /home3/xxx/public_html/we/install/install.php on line 21
[23-Mar-2014 03:52:05 America/Chicago] PHP Notice:  Constant APP_DIR already defined in /home3/xxx/public_html/we/install/install.php on line 22


I delete   error log file   and  continue to play  :)   

no created new error log file   no error  :)


thanks
best regards

Re: I can not install
« Reply #16, on March 23rd, 2014, 02:00 PM »
Thanks for posting the update Friend... I think the dev's will need to take it from here, Is all working good as far as you can tell!

Regards,
Maxx

Nao

  • Dadman with a boy
  • Posts: 16,082
Re: I can not install
« Reply #17, on March 23rd, 2014, 08:56 PM »
It was a bit broken yesterday, a lot more broken today.
Hopefully my latest commit will make it work. I haven't tested, though, counting on you guys if you're in a mood to test broken stuff. :P

gevv

  • Posts: 91
Re: I can not install
« Reply #18, on March 26th, 2014, 10:59 AM »
hi,

I wanted to update the major problems occurred...


I wanted to make re-installation

clean old wedge files,  clean  database upload new files 

new error message;

Code: [Select]
Notice: Constant ROOT_DIR already defined in /home3/xxx/public_html/we/install/install.php on line 19

Notice: Constant APP_DIR already defined in /home3/xxx/public_html/we/install/install.php on line 20

Warning: require_once(/home3/xxx/public_html/we/core/QueryString.php) [function.require-once]: failed to open stream: No such file or directory in /home3/xxx/public_html/we/install/install.php on line 28

Fatal error: require_once() [function.require]: Failed opening required '/home3/xxx/public_html/we/core/QueryString.php' (include_path='.:/opt/php53/lib/php') in /home3/xxx/public_html/we/install/install.php on line 28

Code: [Select]
http://we.elektronikprojeler.com/


my .htaccess  file;

Code: [Select]
############### BEGIN WEDGE CODE ###############
# DO NOT EDIT ANYTHING BETWEEN THESE MARKERS!! #

# This is an Apache web server configuration file. It redirects requests to the proper place.
# If you're not using Apache, you'll need to adapt it to your HTTP server.
# Some documentation is available in /core/app/OriginalFiles.php

<FilesMatch "^Settings(_bak)?\.php$">
Order Deny,Allow
Deny from all
Allow from localhost
</FilesMatch>

<IfModule mod_headers.c>
<FilesMatch "avatar_[0-9]_[0-9]+\.(jpg|jpeg|png|gif)$">
Header set Expires "Thu, 21 March 2025 03:42:00 GMT"
</FilesMatch>
</IfModule>

<IfModule mod_php.c>

# PHP has to be running for Wedge to work, of course.
php_flag engine on

# Security
php_flag session.use_cookies on
php_flag session.use_trans_sid off
php_flag register_globals off
php_flag magic_quotes_sybase off

# Functionality
php_value session.gc_maxlifetime 2880
php_value session.save_handler "files"
php_value session.serialize_handler "php"
php_flag session.use_only_cookies off
php_flag session.auto_start off
php_flag allow_url_fopen on
php_value arg_separator.output "&"
php_value upload_max_filesize "4M"

# Optimization
php_value arg_separator.input "&;"
php_flag always_populate_raw_post_data off
php_flag register_argc_argv off
php_flag magic_quotes_gpc off
php_flag implicit_flush off

</IfModule>

<IfModule mod_dir.c>
DirectoryIndex index.php
</IfModule>

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php [L]
</IfModule>

############### END WEDGE CODE ###############

# Use PHP53 as default
AddHandler application/x-httpd-php53 .php
<IfModule mod_suphp.c>
    suPHP_ConfigPath /opt/php53/lib
</IfModule>

Pandos

  • Living on the edge of Wedge
  • Posts: 635
Re: I can not install
« Reply #19, on March 26th, 2014, 11:22 AM »
This error is saying that the file (QueryString.php) referenced in /home3/elektron/public_html/we/install/install.php doesn't exist, or isn't readable. Check and see if this file exists. If it does, check the permissions on this file to make sure they are 755.
Re: I can not install
« Reply #20, on March 26th, 2014, 11:25 AM »
You are using suPHP, right?
Also check the user under which your scripts and webserer are running.
# dpkg-reconfigure brain
error: brain is not installed or configured

gevv

  • Posts: 91
Re: I can not install
« Reply #21, on March 26th, 2014, 04:53 PM »
@Pandos thank you for your interest 

permissions:  all folders  755  php files 644

I deleted new files

old wedge (wedge-master.zip 19-03-2014)  installation is complete no problem

 new files not setup or upgrade with

Nao

  • Dadman with a boy
  • Posts: 16,082
Re: I can not install
« Reply #22, on March 26th, 2014, 07:53 PM »
Can you test with the latest commit..? Thanks.

I've been busy working on multiple features at the same time, and it NEVER ends well... :^^;:

Mostly, I'm very tempted to drop the contact list feature entirely. There's just too much to do, and too little accomplished by now for it to be really worth postponing the Wedge gold.

gevv

  • Posts: 91
Re: I can not install
« Reply #23, on March 26th, 2014, 08:11 PM »Last edited on March 26th, 2014, 08:20 PM
@Nao thank you for your interest 

download  last  files (wedge-master.zip Commit revision e48c3ee  after)   I tried again

white blank page



blank page source  code;

Code: [Select]

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="robots" content="noindex">
<title>Wedge Installer</title>
<link rel="stylesheet" href="<br />
<b>Warning</b>:  array_keys() expects parameter 1 to be array, null given in <b>/home3/elektron/public_html/we/gz/app/Subs-Cache.php</b> on line <b>717</b><br />
<br />
<b>Warning</b>:  array_diff() [<a href='function.array-diff'>function.array-diff</a>]: Argument #2 is not an array in <b>/home3/elektron/public_html/we/gz/app/Subs-Cache.php</b> on line <b>717</b><br />
<br />
<b>Notice</b>:  Use of undefined constant MID - assumed 'MID' in <b>/home3/elektron/public_html/we/gz/app/Subs-Cache.php</b> on line <b>567</b><br />
http://we.elektronikprojeler.com/gz/css/install/860686.css">
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="<br />
<b>Fatal error</b>:  Class 'westr' not found in <b>/home3/elektron/public_html/we/gz/app/Subs-Cache.php</b> on line <b>1072</b><br />



Nao

  • Dadman with a boy
  • Posts: 16,082
Re: I can not install
« Reply #24, on March 26th, 2014, 11:20 PM »
Can you try and replace lines 179-180 of /install/install.php with this..?

Code: [Select]
if (!class_exists('we') || empty(we::$user))
init_variables();

It basically replaced the defined('ROOT') test. This constant used to be defined in init_variables, but is now done through loadConstants, much earlier in the process.

gevv

  • Posts: 91
Re: I can not install
« Reply #25, on March 27th, 2014, 12:07 AM »
@Nao thank you for your interest 

replace lines 179-180 of /install/install.php  add new  code

install step 1 ok
Quote
We've completed some initial tests on your server and everything appears to be in order. Simply click the "Continue" button below to get started.
step 2 error

Code: [Select]
Fatal error: Class 'wesql' not found in /home3/elektron/public_html/we/install/install.php on line 692

Nao

  • Dadman with a boy
  • Posts: 16,082
Re: I can not install
« Reply #26, on March 27th, 2014, 08:17 AM »
Well... At least the first step works. :P

Could you please stop systematically starting your messages with a poke and the same message..? ^^

Bunstonious

  • Espada
  • Posts: 204
Quote from Random Guy
Not putting miles on your Ferrari is like not having sex with your Girlfriend so she'll be more desirable to her next Boyfriend

Nao

  • Dadman with a boy
  • Posts: 16,082
Re: I can not install
« Reply #28, on March 27th, 2014, 11:38 AM »
It should be fixed, now. I managed to install locally, so... :^^;:

gevv

  • Posts: 91
Re: I can not install
« Reply #29, on March 27th, 2014, 12:09 PM »
I tried with new files installation is complete

no errors

thanks