Bypass all resource restrictions, passwords, and keys? Read here!
Maybe a typo from the Developer Side..missing file
show in how to updateCode:app/controllers/Project.php
and i check file project/app/controllers/Project.php there is no file
hmmm maybe, thank you for information.Maybe a typo from the Developer Side..
Although this Location has a project.php-> product/app/model
Thank you, we all appreciate you nulling this for us...You can Directly Update to V6.0 from any previous version Following the "How To Update" Guide in the Folder..
for People With Fresh Install and Requiring Extended Version.. FIRST Install the 5.5 from here and Upgrade Using The Current Files...
(I tried Direct Extended Version Nulling but for now it's not possible AS OF NOW as there is some database changes)
Virus Total- https://www.virustotal.com/gui/file...771a720dfdf2c14456bba57b7ceb00fafc3/detection
What is the different between v5.5 extended to 6.0 regular version?Both Of my Sources Are Offline for Quite Some time now...![]()
Me too/dashboard is throwing 500 error after upgrading to 6.0.0 from 5.5
What is the different between v5.5 extended to 6.0 regular version?
I ll approve, my problem was not running the query, after that the problem 500 with the dashboard disappeared and all the functionalities are working fine.I did mine yesterday morning - 5.5 (total setup up for a couple weeks with additional addons) to 6.0, removed the file & folders from the 6.0 zip, then uploaded - unpacked - overwrote files, then ran the db commands - no issue there...
Then logged in, went thru each individual setting in admin, then tested as user creating links no problem, no errors or issues...
in version 6.0, all work. no issue.
thank you for sharing!
upgrade bro
Just follow the Guide That's already provided in the Folder bro...Can you share procedures you followed? On my end I can't access user dashboard![]()
INSTALL 5.5 first....Can you share procedures you followed? On my end I can't access user dashboard![]()
FILE CHANGES
———————————————————
1. THE EASIEST WAY
Replace all the folders / files except the "uploads" folder, "install" folder and the "config.php" file.
2. THE ADVANCED WAY
Copy/Paste the following files, replace if needed.
app/controllers/AccountPayments.php
app/controllers/Dashboard.php
app/controllers/Domains.php
app/controllers/Link.php
app/controllers/LinkAjax.php
app/controllers/Links.php
app/controllers/Login.php
app/controllers/LostPassword.php
app/controllers/Project.php
app/controllers/ProjectAjax.php
app/controllers/Projects.php
app/controllers/Register.php
app/controllers/ResendActivation.php
app/controllers/admin-api/AdminApiUsers.php
app/controllers/admin/AdminApiDocumentation.php
app/controllers/admin/AdminCodeCreate.php
app/controllers/admin/AdminCodeUpdate.php
app/controllers/admin/AdminDomains.php
app/controllers/admin/AdminLinks.php
app/controllers/admin/AdminPayments.php
app/controllers/admin/AdminSettings.php
app/controllers/admin/AdminUserCreate.php
app/controllers/admin/AdminUserView.php
app/controllers/admin/AdminUsers.php
app/controllers/link/Link.php
app/core/App.php
app/core/Router.php
app/helpers/Captcha.php
app/helpers/Filters.php
app/helpers/Response.php
app/includes/biolink_socials.php
app/includes/product.php
app/init.php
app/languages/english.json
app/models/Project.php
app/models/User.php
app/traits/Apiable.php
themes/altum/assets/css/admin-custom.css
themes/altum/assets/css/custom.css
themes/altum/assets/images/no_data.svg
themes/altum/views/account-plan/index.php
themes/altum/views/admin/api-documentation/index.php
themes/altum/views/admin/code-update/index.php
themes/altum/views/admin/codes/index.php
themes/altum/views/admin/domains/index.php
themes/altum/views/admin/index/index.php
themes/altum/views/admin/links/index.php
themes/altum/views/admin/partials/admin_sidebar.php
themes/altum/views/admin/payments/index.php
themes/altum/views/admin/plans/index.php
themes/altum/views/admin/settings/index.php
themes/altum/views/admin/user-view/index.php
themes/altum/views/admin/users/index.php
themes/altum/views/admin/wrapper.php
themes/altum/views/dashboard/index.php
themes/altum/views/domains/index.php
themes/altum/views/link-path/ - WHOLE FOLDER
themes/altum/views/link/ - WHOLE FOLDER
themes/altum/views/links/ - WHOLE FOLDER
themes/altum/views/login/index.php
themes/altum/views/lost-password/index.php
themes/altum/views/partials/account_header.php
themes/altum/views/partials/menu.php
themes/altum/views/pay/index.php
themes/altum/views/project/index.php
themes/altum/views/projects/ - WHOLE FOLDER
themes/altum/views/register/index.php
themes/altum/views/resend-activation/index.php
DATABASE CHANGES
--------------------
IMPORTANT: MAKE SURE YOU BACKUP YOUR DATABASE JUST TO BE SAFE.
You will have to run the following queries into your database.
You can run those with PhpMyAdmin -> selecting the database -> going to the SQL tab and running the following mysql queries:
COPY & RUN THE FOLLOWING QUERIES
--------
alter table users add api_key varchar(32) null after name;
create index users_api_key_index on users (api_key);
UPDATE users SET api_key = concat(
lpad(conv(floor(rand()*pow(36,8)), 10, 36), 8, 0),
lpad(conv(floor(rand()*pow(36,8)), 10, 36), 8, 0),
lpad(conv(floor(rand()*pow(36,8)), 10, 36), 8, 0),
lpad(conv(floor(rand()*pow(36,8)), 10, 36), 8, 0)
);
alter table links modify project_id int null;
alter table links drop foreign key links_ibfk_2;
alter table links add constraint links_ibfk_2 foreign key (project_id) references projects (project_id) on update cascade on delete set null;
alter table track_links add user_id int null after id;
UPDATE track_links LEFT JOIN `projects` ON `track_links`.`project_id` = `projects`.`project_id` SET `track_links`.`user_id` = `projects`.`user_id`;
DELETE FROM track_links WHERE user_id IS NULL OR user_id = '';
alter table track_links add constraint track_links_users_user_id_fk foreign key (user_id) references users (user_id) on update cascade on delete cascade;
alter table track_links add constraint track_links_projects_project_id_fk foreign key (project_id) references projects (project_id) on update cascade on delete set null;
--------
COPY & RUN THE FOLLOWING QUERIES ONLY IF YOU HAVE AN EXTENDED LICENSE
--------
alter table payments modify payment_id varchar(128) null;
--------
sounds like 5.5 better?
When You update from 5.5 Extended to 6.0 using the 6.0 Regular Files It will Evolve to 6.0 Extended Version...What is the different between v5.5 extended to 6.0 regular version?